diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index b96dee5c47b..6a6d87c2d1e 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -8,17 +8,20 @@ refer to the [Issue Report](#issues) section, as well as the
[Issue Report Template](ISSUE_TEMPLATE.md).
## Commenting
-If you comment on an active pull request, or issue report, make sure your comment is
+If you comment on an active pull request or issue report, make sure your comment is
concise and to the point. Comments on issue reports or pull requests should be relevant
and friendly, not attacks on the author or adages about something minimally relevant.
-If you believe an issue report is not a "bug", please report it to the Maintainers, or
-point out specifically and concisely your reasoning in a comment on the issue report.
+If you believe an issue report is not a "bug", please point out specifically and concisely your reasoning in a comment on the issue itself.
+
+#### Guidelines:
+ * Comments on Pull Requests and Issues should remain relevant to the subject in question and not derail discussions.
+ * Under no circumstances are users to be attacked for their ideas or contributions. All participants on a given PR or issue are expected to be civil. Failure to do so will result in disciplinary action.
+ For more details, see the [Code of Conduct](../CODE_OF_CONDUCT.md).
## Issues
The Issues section is not a place to request features, or ask for things to be changed
because you think they should be that way; The Issues section is specifically for
-reporting bugs in the code. Refer to ISSUE_TEMPLATE for the exact format that your Issue
-should be in.
+reporting bugs in the code.
#### Guidelines:
* Issue reports should be as detailed as possible, and if applicable, should include
@@ -57,21 +60,21 @@ actual development.
* While we have no issue helping contributors (and especially new contributors) bring reasonably sized contributions up to standards via the pull request review process, larger contributions are expected to pass a higher bar of completeness and code quality *before* you open a pull request. Maintainers may close such pull requests that are deemed to be substantially flawed. You should take some time to discuss with maintainers or other contributors on how to improve the changes.
#### Using Changelog
- * Tags used in changelog include add/rscadd, del/rscdel, fix/fixes, typo/spellcheck.
- * Without specifying a name it will default to using your GitHub name.
- Some examples
-```
-:cl:
-add: The ability to change the color of wires
-del: Deleted depreciated wire merging now handled in parent
-fix: Moving wires now follows the user input instead of moving the stack
-/:cl:
-```
-```
-:cl: N3X15
-typo: Fixes some misspelled words under Using Changelog
-/:cl:
-```
+ * The tags able to be used in the changelog are: `add/soundadd/imageadd`, `del/sounddel/imagedel`, `tweak`, `fix`, `wip`, `spellcheck`, and `experiment`.
+ * Without specifying a name it will default to using your GitHub name. Some examples include:
+
+ ```
+ :cl:
+ add: The ability to change the color of wires
+ del: Deleted depreciated wire merging now handled in parent
+ fix: Moving wires now follows the user input instead of moving the stack
+ /:cl:
+ ```
+ ```
+ :cl: UsernameHere
+ spellcheck: Fixes some misspelled words under Using Changelog
+ /:cl:
+ ```
## Specifications
@@ -113,14 +116,13 @@ datum
code
```
-The use of this is not allowed in this project *unless the majority of the file is already relatively pathed* as it makes finding definitions via full text
-searching next to impossible. The only exception is the variables of an object may be nested to the object, but must not nest further.
+The use of this format is **not** allowed in this project, as it makes finding definitions via full text searching next to impossible. The only exception is the variables of an object may be nested to the object, but must not nest further.
The previous code made compliant:
```DM
/datum/datum1
- var/varname1
+ var/varname1 = 1
var/varname2
var/static/varname3
var/static/varname4
@@ -129,6 +131,7 @@ The previous code made compliant:
code
/datum/datum1/proc/proc2()
code
+
/datum/datum1/datum2
varname1 = 0
/datum/datum1/datum2/proc/proc3()
@@ -139,11 +142,11 @@ The previous code made compliant:
```
### User Interfaces
-All new user interfaces in the game must be created using the TGUI framework. Documentation can be found inside the `tgui/docs` folder.
+All new user interfaces in the game must be created using the TGUI framework. Documentation can be found inside the [`tgui/docs`](../tgui/docs) folder, and the [`README.md`](../tgui/README.md) file.
This is to ensure all ingame UIs are snappy and respond well. An exception is made for user interfaces which are purely for OOC actions (Such as character creation, or anything admin related)
### No overriding type safety checks
-The use of the : operator to override type safety checks is not allowed. You must cast the variable to the proper type.
+The use of the `:` operator to override type safety checks is not allowed. You must cast the variable to the proper type.
### Type paths must begin with a /
eg: `/datum/thing`, not `datum/thing`
@@ -156,11 +159,11 @@ will still be, in actuality, `/datum/arbitrary`. Write your code to reflect this
It is rarely allowed to put type paths in a text format, as there are no compile errors if the type path no longer exists. Here is an example:
```DM
-//Good
-var/path_type = /obj/item/baseball_bat
-
//Bad
var/path_type = "/obj/item/baseball_bat"
+
+//Good
+var/path_type = /obj/item/baseball_bat
```
### Do not use `\The`.
@@ -170,17 +173,18 @@ The only exception to this rule is when dealing with items "belonging" to a mob,
ever forming.
```DM
+//Bad
+var/atom/A
+"\The [A]"
+
//Good
var/atom/A
"[A]"
-
-//Bad
-"\The [A]"
```
### Use the pronoun library instead of `\his` macros.
-We have a system in code/\_\_HELPERS/pronouns.dm for addressing all forms of pronouns. This is useful in a number of ways;
- * BYOND's \his macro can be unpredictable on what object it references.
+We have a system in [`code/__HELPERS/pronouns.dm`](../code/__HELPERS/pronouns.dm) for addressing all forms of pronouns. This is useful in a number of ways;
+ * BYOND's `\his` macro can be unpredictable on what object it references.
Take this example: `"[user] waves \his [user.weapon] around, hitting \his opponents!"`.
This will end up referencing the user's gender in the first occurence, but what about the second?
It'll actually print the gender set on the weapon he's carrying, which is unintended - and there's no way around this.
@@ -189,14 +193,14 @@ We have a system in code/\_\_HELPERS/pronouns.dm for addressing all forms of pro
The way to avoid these problems is to use the pronoun system. Instead of `"[user] waves \his arms."`, you can do `"[user] waves [user.p_their()] arms."`
-```
-//Good
-"[H] waves [H.p_their()] hands!"
-"[user] waves [H.p_their()] [user.weapon] around, hitting [H.p_their()] opponents!"`
-
+```DM
//Bad
"[H] waves \his hands!"
"[user] waves \his [user.weapon] around, hitting \his opponents!"
+
+//Good
+"[H] waves [H.p_their()] hands!"
+"[user] waves [H.p_their()] [user.weapon] around, hitting [H.p_their()] opponents!"`
```
### Use `[A.UID()]` over `\ref[A]`
@@ -207,24 +211,30 @@ if the original datum has been deleted - BYOND recycles the references.
UID's are actually unique; they work off of a global counter and are not recycled. Each datum has one assigned to it when it's created, which can be
accessed by `[datum.UID()]`. You can use this as a snap-in replacement for `\ref` by changing any `locate(ref)` calls in your code to `locateUID(ref)`.
-Usage of this system is mandatory for any /Topic( calls, and will produce errors in Dream Daemon if it's not used. ``, not `Link!"
-### Use var/name format when declaring variables
+//Good
+"Link!"
+```
+
+### Use `var/name` format when declaring variables
While DM allows other ways of declaring variables, this one should be used for consistency.
### Tabs, not spaces
You must use tabs to indent your code, NOT SPACES.
-(You may use spaces to align something, but you should tab to the block level first, then add the remaining spaces)
+(You may use spaces to align something, but you should tab to the block level first, then add the remaining spaces.)
### No hacky code
-Hacky code, such as adding specific checks (ex: `istype(src, /obj/whatever)`), is highly discouraged and only allowed when there is ***no*** other option. (
-Protip: 'I couldn't immediately think of a proper way so thus there must be no other option' is not gonna cut it here! If you can't think of anything else, say that outright and admit that you need help with it. Maintainers exist for exactly that reason.)
+Hacky code, such as adding specific checks (ex: `istype(src, /obj/whatever)`), is highly discouraged and only allowed when there is ***no*** other option. (Protip: 'I couldn't immediately think of a proper way so thus there must be no other option' is not gonna cut it here! If you can't think of anything else, say that outright and admit that you need help with it. Maintainers, PR Reviewers, and other contributors who can help you exist for exactly that reason.)
You can avoid hacky code by using object-oriented methodologies, such as overriding a function (called "procs" in DM) or sectioning code into functions and
then overriding them as required.
-The same also applies to bugfix - If an invalid value is being passed into a proc from something that shouldn't have that value, don't fix it on the proc itself, fix it at its origin! (Where feasible)
+The same also applies to bugfixes - If an invalid value is being passed into a proc from something that shouldn't have that value, don't fix it on the proc itself, fix it at its origin! (Where feasible)
### No duplicated code
Copying code from one place to another may be suitable for small, short-time projects, but Paradise is a long-term project and highly discourages this.
@@ -236,220 +246,226 @@ First, read the comments in [this BYOND thread](http://www.byond.com/forum/?post
There are two key points here:
-1) Defining a list in the variable's definition calls a hidden proc - init. If you have to define a list at startup, do so in New() (or preferably Initialize()) and avoid the overhead of a second call (Init() and then New())
+1) Defining a list in the variable's definition calls a hidden proc - init. If you have to define a list at startup, do so in `New()` (or preferably `Initialize()`) and avoid the overhead of a second call (`init()` and then `New()`)
2) It also consumes more memory to the point where the list is actually required, even if the object in question may never use it!
Remember: although this tradeoff makes sense in many cases, it doesn't cover them all. Think carefully about your addition before deciding if you need to use it.
### Prefer `Initialize()` over `New()` for atoms
-Our game controller is pretty good at handling long operations and lag, but it can't control what happens when the map is loaded, which calls `New` for all atoms on the map. If you're creating a new atom, use the `Initialize` proc to do what you would normally do in `New`. This cuts down on the number of proc calls needed when the world is loaded.
+Our game controller is pretty good at handling long operations and lag, but it can't control what happens when the map is loaded, which calls `New()` for all atoms on the map. If you're creating a new atom, use the `Initialize()` proc to do what you would normally do in `New()`. This cuts down on the number of proc calls needed when the world is loaded.
-While we normally encourage (and in some cases, even require) bringing out of date code up to date when you make unrelated changes near the out of date code, that is not the case for `New` -> `Initialize` conversions. These systems are generally more dependant on parent and children procs so unrelated random conversions of existing things can cause bugs that take months to figure out.
+While we normally encourage (and in some cases, even require) bringing out of date code up to date when you make unrelated changes near the out of date code, that is not the case for `New()` -> `Initialize()` conversions. These systems are generally more dependent on parent and children procs, so unrelated random conversions of existing things can cause bugs that take months to figure out.
-### No implicit var/
-When you declare a parameter in a proc, the var/ is implicit. Do not include any implicit var/ when declaring a variable.
+### No implicit `var/`
+When you declare a parameter in a proc, the `var/` is implicit. Do not include any implicit `var/` when declaring a variable.
+```DM
+//Bad
+/obj/item/proc1(var/mob/input1, var/input2)
+ code
-I.e.
-Bad:
-````
-obj/item/proc1(var/input1, var/input2)
-````
-Good:
-
-````
-obj/item/proc1(input1, input2)
-````
+//Good
+/obj/item/proc1(mob/input1, input2)
+ code
+```
### No magic numbers or strings
-This means stuff like having a "mode" variable for an object set to "1" or "2" with no clear indicator of what that means. Make these #defines with a name that
-more clearly states what it's for. For instance:
-````DM
+This means stuff like having a "mode" variable for an object set to "1" or "2" with no clear indicator of what that means. Make these #defines with a name that more clearly states what it's for. For instance:
+```DM
+//Bad
/datum/proc/do_the_thing(thing_to_do)
- switch(thing_to_do)
- if(1)
- (...)
- if(2)
- (...)
-````
+ switch(thing_to_do)
+ if(1)
+ do_stuff()
+ if(2)
+ do_other_stuff()
+```
There's no indication of what "1" and "2" mean! Instead, you should do something like this:
-````DM
+```DM
+//Good
#define DO_THE_THING_REALLY_HARD 1
#define DO_THE_THING_EFFICIENTLY 2
+
/datum/proc/do_the_thing(thing_to_do)
- switch(thing_to_do)
- if(DO_THE_THING_REALLY_HARD)
- (...)
- if(DO_THE_THING_EFFICIENTLY)
- (...)
-````
+ switch(thing_to_do)
+ if(DO_THE_THING_REALLY_HARD)
+ do_stuff()
+ if(DO_THE_THING_EFFICIENTLY)
+ do_other_stuff()
+```
This is clearer and enhances readability of your code! Get used to doing it!
### Control statements
(if, while, for, etc)
-* All control statements must not contain code on the same line as the statement (`if(condition) return`)
* All control statements comparing a variable to a number should use the formula of `thing` `operator` `number`, not the reverse
(eg: `if(count <= 10)` not `if(10 >= count)`)
* All control statements must be spaced as `if()`, with the brackets touching the keyword.
-* Do not use one-line control statements.
- Instead of doing
- ```
+* All control statements must not contain code on the same line as the statement.
+
+ ```DM
+ //Bad
if(x) return
- ```
- You should do
- ```
+
+ //Good
if(x)
- return
+ return
```
### Player Output
-Due to the use of "Goonchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob/client/world << "message"`,
-you must use `to_chat(mob/client/world, "message")`. Failure to do so will lead to your code not working.
+Due to the use of "Goonchat", Paradise requires a special syntax for outputting text messages to players. Instead of `mob << "message"`, you must use `to_chat(mob, "message")`. Failure to do so will lead to your code not working.
-### Use early return
+### Use early returns
Do not enclose a proc in an if-block when returning on a condition is more feasible.
This is bad:
````DM
/datum/datum1/proc/proc1()
- if(thing1)
- if(!thing2)
- if(thing3 == 30)
- do stuff
+ if(thing1)
+ if(!thing2)
+ if(thing3 == 30)
+ do stuff
````
This is good:
````DM
/datum/datum1/proc/proc1()
- if(!thing1)
- return
- if(thing2)
- return
- if(thing3 != 30)
- return
- do stuff
+ if(!thing1)
+ return
+ if(thing2)
+ return
+ if(thing3 != 30)
+ return
+ do stuff
````
This prevents nesting levels from getting deeper then they need to be.
-### Uses addtimer() instead of sleep() or spawn()
-If you need to call a proc after a set amount of time, use addtimer() instead of spawn() / sleep() where feasible.
-Although it is more complex, it is more performant and unlike spawn() or sleep(), it can be cancelled.
+### Use `addtimer()` instead of `sleep()` or `spawn()`
+If you need to call a proc after a set amount of time, use `addtimer()` instead of `spawn()` / `sleep()` where feasible.
+Though more complex, this method has greater performance. Additionally, unlike `spawn()` or `sleep()`, it can be cancelled.
For more details, see https://github.com/tgstation/tgstation/pull/22933.
-Look for code example on how to properly use it.
+Look for code examples on how to properly use it.
+```DM
+//Bad
+/datum/datum1/proc/proc1(target)
+ spawn(5 SECONDS)
+ target.dothing(arg1, arg2, arg3)
-This is bad:
-````DM
-/datum/datum1/proc/proc1()
- spawn(5)
- dothing(arg1, arg2, arg3)
-````
-This is good:
-````DM
- addtimer(CALLBACK(procsource, .proc/dothing, arg1, arg2, arg3), waittime, timertype)
-````
+//Good
+/datum/datum1/proc/proc1(target)
+ addtimer(CALLBACK(target, .proc/dothing, arg1, arg2, arg3), 5 SECONDS)
+```
This prevents nesting levels from getting deeper then they need to be.
### Operators
#### Spacing
-* Operators that should be separated by spaces
- * Boolean and logic operators like &&, || <, >, ==, etc (but not !)
- * Bitwise AND & and OR |
- * Argument separator operators like , (and ; when used in a forloop)
- * Assignment operators like = or += or the like
- * Math operators like +, -, /, or \*
-* Operators that should not be separated by spaces
- * Access operators like . and :
- * Parentheses ()
- * logical not !
+* Operators that should be separated by spaces:
+ * Boolean and logic operators like `&&`, `||` `<`, `>`, `==`, etc. (But not `!`)
+ * Bitwise AND `&` and OR `|`.
+ * Argument separator operators like `,`. (and `;` when used in a forloop)
+ * Assignment operators like `=` or `+=` or the like.
+ * Math operators like `+`, `-`, `/`, or `*`.
+* Operators that should NOT be separated by spaces:
+ * Access operators like `.` and `:`.
+ * Parentheses `()`.
+ * Logical not `!`.
#### Use
-* Bitwise AND - '&'
- * Should be written as ```bitfield & bitflag``` NEVER ```bitflag & bitfield```, both are valid, but the latter is confusing and nonstandard.
+* Bitwise AND `&`
+ * Should be written as `bitfield & bitflag` NEVER `bitflag & bitfield`, both are valid, but the latter is confusing and nonstandard.
* Associated lists declarations must have their key value quoted if it's a string
- * WRONG: list(a = "b")
- * RIGHT: list("a" = "b")
+
+ ```DM
+ //Bad
+ list(a = "b")
+
+ //Good
+ list("a" = "b")
+ ```
#### Bitflags
-* We prefer using bitshift operators instead of directly typing out the value. I.E.
+* We prefer using bitshift operators instead of directly typing out the value. I.E:
+
```
#define MACRO_ONE (1<<0)
#define MACRO_TWO (1<<1)
#define MACRO_THREE (1<<2)
```
- Is preferable to
+ Is preferable to:
```
#define MACRO_ONE 1
#define MACRO_TWO 2
#define MACRO_THREE 4
```
- This make the code more readable and less prone to error
+ While it may initially look intimidating, `(1<
Code used for the test in a readable format:
https://pastebin.com/w50uERkG
#### Istypeless for loops
A name for a differing syntax for writing for-each style loops in DM. It's NOT DM's standard syntax, hence why this is considered a quirk. Take a look at this:
```DM
-var/list/bag_of_items = list(sword, apple, coinpouch, sword, sword)
+var/list/bag_of_items = list(sword1, apple, coinpouch, sword2, sword3)
var/obj/item/sword/best_sword
for(var/obj/item/sword/S in bag_of_items)
if(!best_sword || S.damage > best_sword.damage)
best_sword = S
```
The above is a simple proc for checking all swords in a container and returning the one with the highest damage, and it uses DM's standard syntax for a
-for-loop by specifying a type in the variable of the for's header that DM interprets as a type to filter by. It performs this filter using ```istype()``` (or
-some internal-magic similar to ```istype()``` - this is BYOND, after all). This is fine in its current state for ```bag_of_items```, but if ```bag_of_items```
+for-loop by specifying a type in the variable of the for's header that DM interprets as a type to filter by. It performs this filter using `istype()` (or
+some internal-magic similar to `istype()` - this is BYOND, after all). This is fine in its current state for `bag_of_items`, but if `bag_of_items`
contained ONLY swords, or only SUBTYPES of swords, then the above is inefficient. For example:
```DM
-var/list/bag_of_swords = list(sword, sword, sword, sword)
+var/list/bag_of_swords = list(sword1, sword2, sword3, sword4)
var/obj/item/sword/best_sword
for(var/obj/item/sword/S in bag_of_swords)
if(!best_sword || S.damage > best_sword.damage)
@@ -543,10 +601,10 @@ for(var/obj/item/sword/S in bag_of_swords)
```
specifies a type for DM to filter by.
-With the previous example that's perfectly fine, we only want swords, but here the bag only contains swords? Is DM still going to try to filter because we gave
+With the previous example that's perfectly fine, we only want swords, but if the bag only contains swords? Is DM still going to try to filter because we gave
it a type to filter by? YES, and here comes the inefficiency. Wherever a list (or other container, such as an atom (in which case you're technically accessing
their special contents list, but that's irrelevant)) contains datums of the same datatype or subtypes of the datatype you require for your loop's body,
-you can circumvent DM's filtering and automatic ```istype()``` checks by writing the loop as such:
+you can circumvent DM's filtering and automatic `istype()` checks by writing the loop as such:
```DM
var/list/bag_of_swords = list(sword, sword, sword, sword)
var/obj/item/sword/best_sword
@@ -565,7 +623,7 @@ eg:
var/mob/living/carbon/human/H = YOU_THE_READER
H.gib()
```
-However, DM also has a dot variable, accessed just as `.` on its own, defaulting to a value of null. Now, what's special about the dot operator is that it is automatically returned (as in the `return` statement) at the end of a proc, provided the proc does not already manually return (`return count` for example.) Why is this special?
+However, DM also has a dot *variable*, accessed just as `.` on its own, defaulting to a value of null. Now, what's special about the dot operator is that it is automatically returned (as in the `return` statement) at the end of a proc, provided the proc does not already manually return (`return count` for example.) Why is this special?
With `.` being everpresent in every proc, can we use it as a temporary variable? Of course we can! However, the `.` operator cannot replace a typecasted variable - it can hold data any other var in DM can, it just can't be accessed as one, although the `.` operator is compatible with a few operators that look weird but work perfectly fine, such as: `.++` for incrementing `.'s` value, or `.[1]` for accessing the first element of `.`, provided that it's a list.
@@ -585,7 +643,7 @@ There is also an undocumented keyword called `static` that has the same behaviou
### Global Vars
-All new global vars must use the defines in code/\_\_DEFINES/\_globals.dm. Basic usage is as follows:
+All new global vars must use the defines in [`code/__DEFINES/_globals.dm`](../code/__DEFINES/_globals.dm). Basic usage is as follows:
To declare a global var:
```DM
@@ -606,13 +664,13 @@ responsible for properly tagging new pull requests and issues, moderating commen
pull requests/issues, and merging/closing pull requests.
### Maintainer List
-* [Fox P McCloud](https://github.com/Fox-McCloud)
-* [Crazy Lemon](https://github.com/Crazylemon64)
-* [Ansari](https://github.com/variableundefined)
* [AffectedArc07](https://github.com/AffectedArc07)
+* [Ansari](https://github.com/variableundefined)
+* [Crazy Lemon](https://github.com/Crazylemon64)
+* [Fox P McCloud](https://github.com/Fox-McCloud)
### Maintainer instructions
-* Do not `self-merge`; this refers to the practice of opening a pull request, then
+* Do not "self-merge"; this refers to the practice of opening a pull request, then
merging it yourself. A different maintainer must review and merge your pull request, no
matter how trivial. This is to ensure quality.
* A subset of this instruction: Do not push directly to the repository, always make a
diff --git a/.github/DOWNLOADING.md b/.github/DOWNLOADING.md
index eaad0dee7f9..39e671cff78 100644
--- a/.github/DOWNLOADING.md
+++ b/.github/DOWNLOADING.md
@@ -41,26 +41,29 @@ something has gone wrong - possibly a corrupt download or the files extracted wr
or a code issue on the main repo. Feel free to ask on Discord.
Once that's done, open up the config folder.
-Firstly, you will want to copy everything from the example folder into the regular config folder.
-EG: Move `config/example/config.txt` to `config/config.txt`, and do the same for all the other files.
-You'll want to edit `config.txt` to set your server location,
+Firstly, you will want to copy `config.toml` from the example folder into the regular config folder.
+You'll want to edit the `url_configuration` section of `config.toml` to set `reboot_url` to your server location,
so that all your players don't get disconnected at the end of each round.
It's recommended you don't turn on the gamemodes with probability 0,
as they have various issues and aren't currently being tested,
so they may have unknown and bizarre bugs.
-You'll also want to edit admins.txt to remove the default admins and add your own.
+You'll also want to edit the `admin_configuration` section of `config.toml` to remove the default admins and add your own.
If you are connecting from localhost to your own test server, you should automatically be admin.
-"Host" is the highest level of access, and the other recommended admin levels for now are
-"Game Admin" and "Moderator". The format is:
+"Head of Staff" is the highest level of access, and the other recommended admin levels for now are
+"Game Admin". The format is:
-```cfg
- byondkey - Rank
+```toml
+# Note that your ranks must be cased properly, usernames can be normal keys or ckey
+admin_assignments = [
+ {ckey = "Admin1", rank = "Hosting Provider"},
+ {ckey = "Admin2", rank = "Game Admin"},
+]
```
-where the BYOND key must be in lowercase and the admin rank must be properly capitalised.
-There are a bunch more admin ranks, but these two should be enough for most servers,
-assuming you have trustworthy admins. You can define your own ranks in `admin_ranks.txt`
+You can define your own ranks in the admin section of `config.toml`.
+
+If you want to run a production scale server, we highly recommend using database administrators.
Finally, to start the server,
run Dream Daemon and enter the path to your compiled paradise.dmb file.
@@ -94,7 +97,7 @@ When you have done this, you'll need to recompile the code, but then it should w
The SQL backend is required for storing character saves, preferences, administrative data, and many other things.
We recommend running a database if your server is going to be used as more than just a local test server.
-Your SQL server details go in `config/dbconfig.txt`,
+Your SQL server details go in the `database_configuration` section of `config.toml`,
and the SQL schema is in `SQL/paradise_schema.sql` or `SQL/paradise_schema_prefix.sql`,
depending on if you want table prefixes.
More detailed setup instructions are located on our wiki:
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 71fe793c3cc..7f5a9263de6 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -2,13 +2,13 @@
## What Does This PR Do
-
+
## Why It's Good For The Game
-
+
## Images of changes
-
+
## Changelog
:cl:
@@ -27,3 +27,4 @@ experiment: Added an experimental thingy
+
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 88eec1aece6..4b5975725c0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,7 +50,7 @@ jobs:
tools/ci/install_byond.sh
source $HOME/BYOND/byond/bin/byondsetup
tools/ci/generate_maplist.sh
- tools/ci/dm.sh -Mci_map_testing paradise.dme
+ tools/ci/dm.sh -DCIMAP paradise.dme
unit_tests_and_sql:
name: Unit Tests + SQL Validation
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 5547f1b61f6..a413f2f4dfd 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,8 +1,5 @@
{
- "workbench.editorAssociations": [
- {
- "filenamePattern": "*.dmi",
- "viewType": "imagePreview.previewEditor"
- }
- ]
+ "workbench.editorAssociations": {
+ "*.dmi": "imagePreview.previewEditor"
+ }
}
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 00000000000..1b5b2645fad
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,37 @@
+# Important
+
+The Paradise GitHub is not exempt from Paradise Station community and server rules, especially rules 0, 1, and 4. An inability to abide by the rules on the GitHub will result in disciplinary action up to, or including, a repository ban.
+
+## General Expectations
+
+### PR Discussion
+
+Comments on Pull Requests should remain relevant to the PR in question and not derail discussions.
+
+Under no circumstances are users to be attacked for their ideas or contributions. While constructive criticism is encouraged, toxicity or general mean-spirited behaviour will not be tolerated. All participants on a given PR or issue are expected to be civil. Failure to do so will result in disciplinary action.
+
+"Merge-nagging" or similar behaviour is not acceptable. Comments of this nature will result in warnings or an outright ban from the repository depending on general behaviour.
+
+If you exhibit behaviour that's considered to be a net-negative to the community (offensive commentary, repeat violations, constant nagging, personal attacks, etc.), you may be banned from other Paradise services (Discord, forums, server, wiki, etc.)
+
+Maintainers reserve the right to permanently revoke access from the repository if your behaviour is considered to be a net negative.
+
+### PR Approval/Objection Info
+
+Heads of Staff and Maintainers have the final say on Pull Requests. While thumbsup/thumbsdown reaction ratios are generally taken into account, they do not dictate whether or not a PR will be merged.
+
+After a twenty four hour minimum waiting period, Pull Requests can be merged once they receive approval from both a Head of Staff and a Maintainer. An exception is made for refactors and fixes, which may be merged at a Maintainer's discretion with no waiting period.
+
+While normally provided, Heads of Staff and Maintainers are not obligated to publicly state their objections to a Pull Request. Attacking or berating either of these roles over an objection will not be tolerated. Additionally, whining over the closure of a PR, the existence of an objection, or similar behaviour, will not be tolerated.
+
+### PR Expectations
+
+All Pull Requests are expected to be tested prior to submission. If a submitted Pull Request fails to pass CI checks, the likelihood of it being merged will be significantly lower. If you can't take the time to compile/test your Pull Request, do not expect a warm reception.
+
+It is expected that contributors discuss larger design changes on the forums prior to coding a Pull Request. The amount of time spent on any given Pull Request is not relevant. Maintainers are not responsible for contributors wasting their time creating features nobody asked for.
+
+Barring highly specific circumstances (such as single line changes, submissions from advanced users, or changes to repo documentation), we will not accept Pull Requests utilising the web editor.
+
+Pull Requests regarding heavy-handed nerfs, particularly immediately after said mechanic was used, will be tagged with `I ded pls nerf`. A bad experience with a particular mechanic is not a justification for nerfing it.
+
+Reactionary revert PRs are not tolerated under any circumstances. Posting a revert immediately after a Pull Request is merged will result in a repoban.
diff --git a/README.md b/README.md
index 802b951f5fe..196fb7376a2 100644
--- a/README.md
+++ b/README.md
@@ -10,15 +10,16 @@
# Useful Links
-- [Website](https://www.paradisestation.org/)
- [Discord](https://discordapp.com/invite/YJDsXFE)
- [Documentation](https://codedocs.paradisestation.org)
+- [Website](https://www.paradisestation.org/)
# Useful Documents
-- [Installation Guide](.github/DOWNLOADING.md)
-- [Contribution Guide](.github/CONTRIBUTING.md)
- [Autodocumentation Guide](.github/AUTODOC_GUIDE.md)
+- [Code of Conduct](./CODE_OF_CONDUCT.md)
+- [Contribution Guide](.github/CONTRIBUTING.md)
+- [Installation Guide](.github/DOWNLOADING.md)
---
diff --git a/SQL/paradise_schema.sql b/SQL/paradise_schema.sql
index 8917d28d6bb..3ed1cbca688 100644
--- a/SQL/paradise_schema.sql
+++ b/SQL/paradise_schema.sql
@@ -1,5 +1,5 @@
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `feedback`;
+CREATE DATABASE IF NOT EXISTS `paradise_gamedb` /*!40100 DEFAULT CHARACTER SET utf8 */;
+USE `paradise_gamedb`;
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -24,7 +24,7 @@ CREATE TABLE `characters` (
`ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`slot` int(2) NOT NULL,
`OOC_Notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `real_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `real_name` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_is_always_random` tinyint(1) NOT NULL,
`gender` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
`age` smallint(4) NOT NULL,
@@ -99,7 +99,7 @@ CREATE TABLE `customuseritems` (
`cuiJobMask` text NOT NULL,
PRIMARY KEY (`id`),
KEY `cuiCKey` (`cuiCKey`)
-) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -126,7 +126,7 @@ CREATE TABLE `death` (
`fireloss` int(11) NOT NULL,
`oxyloss` int(11) NOT NULL,
PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -241,7 +241,7 @@ CREATE TABLE `feedback` (
`version` tinyint(3) UNSIGNED NOT NULL,
`json` LONGTEXT NOT NULL COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -277,6 +277,7 @@ CREATE TABLE `player` (
`fupdate` smallint(4) DEFAULT '0',
`parallax` tinyint(1) DEFAULT '8',
`byond_date` DATE DEFAULT NULL,
+ `2fa_status` ENUM('DISABLED','ENABLED_IP','ENABLED_ALWAYS') NOT NULL DEFAULT 'DISABLED' COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`id`),
UNIQUE KEY `ckey` (`ckey`),
KEY `lastseen` (`lastseen`),
@@ -321,7 +322,7 @@ CREATE TABLE `karma` (
`spenderip` text NOT NULL,
`time` datetime NOT NULL,
PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -338,7 +339,7 @@ CREATE TABLE `karmatotals` (
`karmaspent` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `byondkey` (`byondkey`)
-) ENGINE=MyISAM AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -359,7 +360,7 @@ CREATE TABLE `library` (
PRIMARY KEY (`id`),
KEY `ckey` (`ckey`),
KEY `flagged` (`flagged`)
-) ENGINE=MyISAM AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -375,7 +376,7 @@ CREATE TABLE `legacy_population` (
`admincount` int(11) DEFAULT NULL,
`time` datetime NOT NULL,
PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4;
+) ENGINE=InnoDB AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -392,7 +393,7 @@ CREATE TABLE `whitelist` (
`species` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ckey` (`ckey`)
-) ENGINE=MyISAM AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
+) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
@@ -585,3 +586,16 @@ CREATE TABLE `round` (
`station_name` VARCHAR(80) NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
+
+
+--
+-- Table structure for table `2fa_secrets`
+--
+CREATE TABLE `2fa_secrets` (
+ `ckey` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
+ `secret` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_general_ci',
+ `date_setup` DATETIME NOT NULL DEFAULT current_timestamp(),
+ `last_time` DATETIME NULL DEFAULT NULL,
+ PRIMARY KEY (`ckey`) USING BTREE
+)
+COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;
diff --git a/SQL/paradise_schema_prefixed.sql b/SQL/paradise_schema_prefixed.sql
deleted file mode 100644
index b3c8f1f7643..00000000000
--- a/SQL/paradise_schema_prefixed.sql
+++ /dev/null
@@ -1,584 +0,0 @@
-CREATE DATABASE IF NOT EXISTS `feedback` /*!40100 DEFAULT CHARACTER SET utf8 */;
-USE `feedback`;
-
-/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
-/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
-/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
-/*!40101 SET NAMES utf8 */;
-/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
-/*!40103 SET TIME_ZONE='+00:00' */;
-/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
-/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
-/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-
---
--- Table structure for table `SS13_characters`
---
-
-DROP TABLE IF EXISTS `SS13_characters`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_characters` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `slot` int(2) NOT NULL,
- `OOC_Notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `real_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `name_is_always_random` tinyint(1) NOT NULL,
- `gender` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
- `age` smallint(4) NOT NULL,
- `species` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `language` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `secondary_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `facial_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `secondary_facial_hair_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `skin_tone` smallint(4) NOT NULL,
- `skin_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `marking_colours` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'head=%23000000&body=%23000000&tail=%23000000',
- `head_accessory_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `hair_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `facial_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `marking_styles` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'head=None&body=None&tail=None',
- `head_accessory_style_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `alt_head_name` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `eye_colour` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000',
- `underwear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `undershirt` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `backbag` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `b_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `alternate_option` smallint(4) NOT NULL,
- `job_support_high` mediumint(8) NOT NULL,
- `job_support_med` mediumint(8) NOT NULL,
- `job_support_low` mediumint(8) NOT NULL,
- `job_medsci_high` mediumint(8) NOT NULL,
- `job_medsci_med` mediumint(8) NOT NULL,
- `job_medsci_low` mediumint(8) NOT NULL,
- `job_engsec_high` mediumint(8) NOT NULL,
- `job_engsec_med` mediumint(8) NOT NULL,
- `job_engsec_low` mediumint(8) NOT NULL,
- `job_karma_high` mediumint(8) NOT NULL,
- `job_karma_med` mediumint(8) NOT NULL,
- `job_karma_low` mediumint(8) NOT NULL,
- `flavor_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `med_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `sec_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `gen_record` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `disabilities` mediumint(8) NOT NULL,
- `player_alt_titles` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `organ_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `rlimb_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `nanotrasen_relation` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
- `speciesprefs` int(1) NOT NULL,
- `socks` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `body_accessory` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `gear` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `autohiss` tinyint(1) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_customuseritems`
---
-
-DROP TABLE IF EXISTS `SS13_customuseritems`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_customuseritems` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `cuiCKey` varchar(36) NOT NULL,
- `cuiRealName` varchar(60) NOT NULL,
- `cuiPath` varchar(255) NOT NULL,
- `cuiItemName` text,
- `cuiDescription` text,
- `cuiReason` text,
- `cuiPropAdjust` text,
- `cuiJobMask` text NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4;
-ALTER TABLE `SS13_customuseritems` ADD INDEX(`cuiCKey`);
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_death`
---
-
-DROP TABLE IF EXISTS `SS13_death`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_death` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `pod` text NOT NULL COMMENT 'Place of death',
- `coord` text NOT NULL COMMENT 'X, Y, Z POD',
- `tod` datetime NOT NULL COMMENT 'Time of death',
- `job` text NOT NULL,
- `special` text NOT NULL,
- `name` text NOT NULL,
- `byondkey` text NOT NULL,
- `laname` text NOT NULL COMMENT 'Last attacker name',
- `lakey` text NOT NULL COMMENT 'Last attacker key',
- `gender` text NOT NULL,
- `bruteloss` int(11) NOT NULL,
- `brainloss` int(11) NOT NULL,
- `fireloss` int(11) NOT NULL,
- `oxyloss` int(11) NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=166546 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `donators`
---
-
-DROP TABLE IF EXISTS `SS13_donators`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_donators` (
- `patreon_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `tier` int(2),
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Manual Field',
- `start_date` datetime,
- `end_date` datetime,
- `active` boolean,
- PRIMARY KEY (`patreon_name`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_admin`
---
-
-DROP TABLE IF EXISTS `SS13_admin`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_admin` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `admin_rank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Administrator',
- `level` int(2) NOT NULL DEFAULT '0',
- `flags` int(16) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_admin_log`
---
-
-DROP TABLE IF EXISTS `SS13_admin_log`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_admin_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `adminckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `adminip` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `log` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- PRIMARY KEY (`id`),
- KEY `adminckey` (`adminckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_ban`
---
-
-DROP TABLE IF EXISTS `SS13_ban`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_ban` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `bantime` datetime NOT NULL,
- `ban_round_id` INT(11) NULL DEFAULT NULL,
- `serverip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `bantype` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `reason` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `job` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `duration` int(11) NOT NULL,
- `rounds` int(11) DEFAULT NULL,
- `expiration_time` datetime NOT NULL,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `ip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `a_ip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `who` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `adminwho` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `edits` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned` tinyint(1) DEFAULT NULL,
- `unbanned_datetime` datetime DEFAULT NULL,
- `unbanned_round_id` INT(11) NULL DEFAULT NULL,
- `unbanned_ckey` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned_computerid` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `unbanned_ip` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `computerid` (`computerid`),
- KEY `ip` (`ip`)
-) ENGINE=InnoDB AUTO_INCREMENT=58903 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_feedback`
---
-
-DROP TABLE IF EXISTS `SS13_feedback`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_feedback` (
- `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `round_id` int(8) NOT NULL,
- `key_name` varchar(32) NOT NULL,
- `key_type` enum('text', 'amount', 'tally', 'nested tally', 'associative') NOT NULL,
- `version` tinyint(3) UNSIGNED NOT NULL,
- `json` LONGTEXT NOT NULL COLLATE 'utf8mb4_general_ci',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=257638 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_player`
---
-
-DROP TABLE IF EXISTS `SS13_player`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_player` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `firstseen` datetime NOT NULL,
- `lastseen` datetime NOT NULL,
- `ip` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `computerid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `lastadminrank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Player',
- `ooccolor` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT '#b82e00',
- `UI_style` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'Midnight',
- `UI_style_color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT '#ffffff',
- `UI_style_alpha` smallint(4) DEFAULT '255',
- `be_role` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `default_slot` smallint(4) DEFAULT '1',
- `toggles` int(11) DEFAULT NULL,
- `toggles_2` int(11) DEFAULT '0',
- `sound` mediumint(8) DEFAULT '31',
- `volume_mixer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `lastchangelog` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
- `exp` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `clientfps` smallint(4) DEFAULT '0',
- `atklog` smallint(4) DEFAULT '0',
- `fuid` bigint(20) DEFAULT NULL,
- `fupdate` smallint(4) DEFAULT '0',
- `parallax` tinyint(1) DEFAULT '8',
- `byond_date` DATE DEFAULT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `ckey` (`ckey`),
- KEY `lastseen` (`lastseen`),
- KEY `computerid` (`computerid`),
- KEY `ip` (`ip`),
- KEY `fuid` (`fuid`),
- KEY `fupdate` (`fupdate`)
-) ENGINE=InnoDB AUTO_INCREMENT=135298 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_privacy`
---
-
-DROP TABLE IF EXISTS `SS13_privacy`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `ss13_privacy` (
- `ckey` varchar(32) NOT NULL,
- `datetime` datetime NOT NULL,
- `consent` bit(1) NOT NULL,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_karma`
---
-
-DROP TABLE IF EXISTS `SS13_karma`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_karma` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `spendername` text NOT NULL,
- `spenderkey` text NOT NULL,
- `receivername` text NOT NULL,
- `receiverkey` text NOT NULL,
- `receiverrole` text,
- `receiverspecial` text,
- `isnegative` tinyint(1) DEFAULT NULL,
- `spenderip` text NOT NULL,
- `time` datetime NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_karmatotals`
---
-
-DROP TABLE IF EXISTS `SS13_karmatotals`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_karmatotals` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `byondkey` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
- `karma` int(11) NOT NULL,
- `karmaspent` int(11) NOT NULL DEFAULT 0,
- PRIMARY KEY (`id`),
- KEY `byondkey` (`byondkey`)
-) ENGINE=MyISAM AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_library`
---
-
-DROP TABLE IF EXISTS `SS13_library`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_library` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `author` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `category` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `flagged` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `flagged` (`flagged`)
-) ENGINE=MyISAM AUTO_INCREMENT=4537 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_legacy_population`
---
-
-DROP TABLE IF EXISTS `SS13_legacy_population`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_legacy_population` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `playercount` int(11) DEFAULT NULL,
- `admincount` int(11) DEFAULT NULL,
- `time` datetime NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=2550 DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_whitelist`
---
-
-DROP TABLE IF EXISTS `SS13_whitelist`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_whitelist` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `job` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `species` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=MyISAM AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-
-/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
-/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
-/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
-/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
-/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-
---
--- Table structure for table `SS13_watch`
---
-
-DROP TABLE IF EXISTS `SS13_watch`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_watch` (
- `ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `reason` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
- `timestamp` datetime NOT NULL,
- `adminckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `last_editor` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `edits` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
-
---
--- Table structure for table `SS13_notes`
---
-
-DROP TABLE IF EXISTS `SS13_notes`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_notes` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `ckey` varchar(32) NOT NULL,
- `notetext` text NOT NULL,
- `timestamp` datetime NOT NULL,
- `round_id` INT(11) NULL DEFAULT NULL,
- `adminckey` varchar(32) NOT NULL,
- `last_editor` varchar(32),
- `edits` text,
- `server` varchar(50) NOT NULL,
- `crew_playtime` mediumint(8) UNSIGNED DEFAULT '0',
- `automated` TINYINT(3) UNSIGNED NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_memo`
---
-
-DROP TABLE IF EXISTS `SS13_memo`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_memo` (
- `ckey` varchar(32) NOT NULL,
- `memotext` text NOT NULL,
- `timestamp` datetime NOT NULL,
- `last_editor` varchar(32),
- `edits` text,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_ipintel`
---
-DROP TABLE IF EXISTS `SS13_ipintel`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_ipintel` (
- `ip` int UNSIGNED NOT NULL,
- `date` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL,
- `intel` real NOT NULL DEFAULT '0',
- PRIMARY key (`ip`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_vpn_whitelist`
---
-DROP TABLE IF EXISTS `SS13_vpn_whitelist`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_vpn_whitelist` (
- `ckey` varchar(32) NOT NULL,
- `reason` text,
- PRIMARY KEY (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_oauth_tokens`
---
-DROP TABLE IF EXISTS `SS13_oauth_tokens`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_oauth_tokens` (
- `ckey` varchar(32) NOT NULL,
- `token` varchar(32) NOT NULL,
- PRIMARY KEY (`token`),
- KEY `ckey` (`ckey`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_playtime_history`
---
-DROP TABLE IF EXISTS `SS13_playtime_history`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_playtime_history` (
- `ckey` varchar(32) NOT NULL,
- `date` DATE NOT NULL,
- `time_living` SMALLINT NOT NULL,
- `time_ghost` SMALLINT NOT NULL,
- PRIMARY KEY (`ckey`, `date`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `SS13_connection_log`
---
-DROP TABLE IF EXISTS `SS13_connection_log`;
-CREATE TABLE `SS13_connection_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `datetime` datetime NOT NULL,
- `ckey` varchar(32) NOT NULL,
- `ip` varchar(32) NOT NULL,
- `computerid` varchar(32) NOT NULL,
- `result` ENUM('ESTABLISHED','DROPPED - IPINTEL','DROPPED - BANNED','DROPPED - INVALID') NOT NULL DEFAULT 'ESTABLISHED' COLLATE 'utf8mb4_general_ci',
- PRIMARY KEY (`id`),
- KEY `ckey` (`ckey`),
- KEY `ip` (`ip`),
- KEY `computerid` (`computerid`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `SS13_changelog`
---
-DROP TABLE IF EXISTS `SS13_changelog`;
-CREATE TABLE `SS13_changelog` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `pr_number` INT(11) NOT NULL,
- `date_merged` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `author` VARCHAR(32) NOT NULL,
- `cl_type` ENUM('FIX','WIP','TWEAK','SOUNDADD','SOUNDDEL','CODEADD','CODEDEL','IMAGEADD','IMAGEDEL','SPELLCHECK','EXPERIMENT') NOT NULL,
- `cl_entry` TEXT NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `ip2group`
---
-DROP TABLE IF EXISTS `SS13_ip2group`;
-CREATE TABLE `SS13_ip2group` (
- `ip` varchar (18) COLLATE utf8mb4_unicode_ci NOT NULL,
- `date` timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL,
- `groupstr` varchar (32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
- PRIMARY KEY (`ip`),
- KEY `groupstr` (`groupstr`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-
---
--- Table structure for table `round`
---
-DROP TABLE IF EXISTS `SS13_round`;
-CREATE TABLE `SS13_round` (
- `id` INT(11) NOT NULL AUTO_INCREMENT,
- `initialize_datetime` DATETIME NOT NULL,
- `start_datetime` DATETIME NULL,
- `shutdown_datetime` DATETIME NULL,
- `end_datetime` DATETIME NULL,
- `server_ip` INT(10) UNSIGNED NOT NULL,
- `server_port` SMALLINT(5) UNSIGNED NOT NULL,
- `commit_hash` CHAR(40) NULL,
- `game_mode` VARCHAR(32) NULL,
- `game_mode_result` VARCHAR(64) NULL,
- `end_state` VARCHAR(64) NULL,
- `shuttle_name` VARCHAR(64) NULL,
- `map_name` VARCHAR(32) NULL,
- `station_name` VARCHAR(80) NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
diff --git a/SQL/updates/10-11.sql b/SQL/updates/10-11.sql
index 843eb9d9982..7102170a9ff 100644
--- a/SQL/updates/10-11.sql
+++ b/SQL/updates/10-11.sql
@@ -6,35 +6,35 @@
# Generation (not necessary to run unless your DB has extra tables)
SELECT CONCAT("ALTER TABLE ", TABLE_SCHEMA, '.', TABLE_NAME," CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;") AS ExecuteTheString
FROM INFORMATION_SCHEMA.TABLES
-WHERE TABLE_SCHEMA="feedback"
+WHERE TABLE_SCHEMA="paradise_gamedb"
AND TABLE_TYPE="BASE TABLE";
# Actual table conversion stuff
-ALTER TABLE feedback.admin CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.admin_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.ban CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.characters CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.connection_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.customuseritems CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.death CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.donators CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.feedback CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.ipintel CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.karma CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.karmatotals CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.legacy_population CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.library CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.memo CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.notes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.oauth_tokens CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.player CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.playtime_history CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_option CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_question CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_textreply CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.poll_vote CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.vpn_whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.watch CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-ALTER TABLE feedback.whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE admin CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE admin_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE ban CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE characters CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE connection_log CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE customuseritems CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE death CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE donators CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE feedback CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE ipintel CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE karma CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE karmatotals CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE legacy_population CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE library CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE memo CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE notes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE oauth_tokens CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE player CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE playtime_history CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_option CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_question CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_textreply CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE poll_vote CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE privacy CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE vpn_whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE watch CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+ALTER TABLE whitelist CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
diff --git a/SQL/updates/17-18.py b/SQL/updates/17-18.py
index 61d4fe39674..389722fa7d9 100644
--- a/SQL/updates/17-18.py
+++ b/SQL/updates/17-18.py
@@ -8,7 +8,7 @@
#To view the parameters for this script, execute it with the argument --help
#All the positional arguments are required, remember to include prefixes in your table names if you use them
#An example of the command used to execute this script from powershell:
-#python feedback_conversion_2017-11-12.py "localhost" "root" "password" "feedback" "feedback" "feedback_2"
+#python feedback_conversion_2017-11-12.py "localhost" "root" "password" "paradise_gamedb" "feedback" "feedback_2"
#I found that this script would complete conversion of 10000 rows approximately every 2-3 seconds
#Depending on the size of your feedback table and the computer used it may take several minutes for the script to finish
#
diff --git a/SQL/updates/22-23.sql b/SQL/updates/22-23.sql
new file mode 100644
index 00000000000..975e8acd413
--- /dev/null
+++ b/SQL/updates/22-23.sql
@@ -0,0 +1,11 @@
+# Updating SQL from version 22 to 23 -AffectedArc07
+# Converts existing MyISAM tables to InnoDB
+
+ALTER TABLE `customuseritems` ENGINE=InnoDB;
+ALTER TABLE `death` ENGINE=InnoDB;
+ALTER TABLE `feedback` ENGINE=InnoDB;
+ALTER TABLE `karma` ENGINE=InnoDB;
+ALTER TABLE `karmatotals` ENGINE=InnoDB;
+ALTER TABLE `legacy_population` ENGINE=InnoDB;
+ALTER TABLE `library` ENGINE=InnoDB;
+ALTER TABLE `whitelist` ENGINE=InnoDB;
diff --git a/SQL/updates/23-24.sql b/SQL/updates/23-24.sql
new file mode 100644
index 00000000000..9beee82ae82
--- /dev/null
+++ b/SQL/updates/23-24.sql
@@ -0,0 +1,13 @@
+# Updates DB from 23 to 24 -AffectedArc07
+# Add new column to player table for 2FA status
+ALTER TABLE `player` ADD COLUMN `2fa_status` ENUM('DISABLED','ENABLED_IP','ENABLED_ALWAYS') NOT NULL DEFAULT 'DISABLED' AFTER `byond_date`;
+
+# Create new table for 2FA tokens
+CREATE TABLE `2fa_secrets` (
+ `ckey` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
+ `secret` VARCHAR(64) NOT NULL COLLATE 'utf8mb4_general_ci',
+ `date_setup` DATETIME NOT NULL DEFAULT current_timestamp(),
+ `last_time` DATETIME NULL DEFAULT NULL,
+ PRIMARY KEY (`ckey`) USING BTREE
+)
+COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;
diff --git a/SQL/updates/24-25.sql b/SQL/updates/24-25.sql
new file mode 100644
index 00000000000..267dc013087
--- /dev/null
+++ b/SQL/updates/24-25.sql
@@ -0,0 +1,4 @@
+# Updates the DB from 24 to 25 -SabreML
+# Increases the maximum length of `real_name` from 45 to 55 in the `characters` table.
+
+ALTER TABLE `characters` MODIFY COLUMN `real_name` varchar(55) COLLATE utf8mb4_unicode_ci NOT NULL
diff --git a/SpacemanDMM.toml b/SpacemanDMM.toml
index b1c71c30062..fced4d4090e 100644
--- a/SpacemanDMM.toml
+++ b/SpacemanDMM.toml
@@ -1,12 +1,38 @@
-[langserver]
-dreamchecker = true
-
+# Keep the keys in this file alphabetical please
[code_standards]
-disallow_relative_type_definitions = true
disallow_relative_proc_definitions = true
+disallow_relative_type_definitions = true
+
+[debugger]
+engine = "auxtools"
[dmdoc]
use_typepath_names = true
-[debugger]
-engine = "auxtools"
+[langserver]
+dreamchecker = true
+
+[map_renderer]
+hide_invisible = [
+ "/obj/effect/landmark",
+ "/obj/effect/mapping_helpers",
+ "/obj/effect/spawner/random_barrier",
+ "/obj/effect/spawner/random_spawners",
+]
+
+[map_renderer.fancy_layers]
+# -10
+"/turf/simulated/floor/plating" = -10
+"/turf/space" = -10
+# -2
+"/turf/simulated/floor/bluegrid" = -2
+"/turf/simulated/floor/carpet" = -2
+"/turf/simulated/floor/engine" = -2
+"/turf/simulated/floor/plasteel" = -2
+"/turf/simulated/floor/wood" = -2
+"/turf/simulated/wall" = -2
+
+[map_renderer.render_passes]
+icon-smoothing = false
+icon-smoothing-2016 = true
+smart-cables = false
diff --git a/_build_dependencies.sh b/_build_dependencies.sh
index be4b390a6d3..8cef5ce91b9 100644
--- a/_build_dependencies.sh
+++ b/_build_dependencies.sh
@@ -7,5 +7,3 @@ export NODE_VERSION=12
export BYOND_MAJOR=513
# Byond Minor
export BYOND_MINOR=1528
-# For the RUSTG library. Not actually installed by CI but kept as a reference
-export RUSTG_VERSION=2.1-P
diff --git a/_maps/base_map.dm b/_maps/base_map.dm
new file mode 100644
index 00000000000..2c44a73bb67
--- /dev/null
+++ b/_maps/base_map.dm
@@ -0,0 +1,5 @@
+#include "map_files\generic\centcomm.dmm"
+#define CC_TRANSITION_CONFIG DECLARE_LEVEL(CENTCOMM, SELFLOOPING, list(ADMIN_LEVEL, BLOCK_TELEPORT, IMPEDES_MAGIC))
+#ifdef CIMAP
+#include "ci_map_testing.dm"
+#endif
diff --git a/_maps/cyberiad.dm b/_maps/cyberiad.dm
deleted file mode 100644
index ebdcba2a08e..00000000000
--- a/_maps/cyberiad.dm
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-All z-levels should be identical in size. Their numbers should not matter.
-The order of z-levels should not matter as long as their attributes are properly defined at MAP_TRANSITION_CONFIG.
-Old code checked for the number of the z-level (for example whether there are any revheads on Z1),
-currently it should check for the define (for example whether there are any revheads on any z-levels defined as STATION_LEVEL).
-z1 = centcomm
-z2 = station
-z3 = lavaland
-*/
-
-#if !defined(USING_MAP_DATUM)
- #include "map_files\generic\centcomm.dmm"
- #include "map_files\cyberiad\cyberiad.dmm"
- #include "map_files\generic\Lavaland.dmm"
-
- #define MAP_TRANSITION_CONFIG list(\
-DECLARE_LEVEL(CENTCOMM, SELFLOOPING, list(ADMIN_LEVEL, BLOCK_TELEPORT, IMPEDES_MAGIC)),\
-DECLARE_LEVEL(MAIN_STATION, CROSSLINKED, list(STATION_LEVEL, STATION_CONTACT, REACHABLE, AI_OK)),\
-DECLARE_LEVEL(MINING, SELFLOOPING, list(ORE_LEVEL, REACHABLE, STATION_CONTACT, HAS_WEATHER, AI_OK)))
-
- #define USING_MAP_DATUM /datum/map/cyberiad
-
-#elif !defined(MAP_OVERRIDE)
-
- #warn a map has already been included, ignoring Cyberiad.
-
-#endif
diff --git a/_maps/delta.dm b/_maps/delta.dm
deleted file mode 100644
index 89540207d8d..00000000000
--- a/_maps/delta.dm
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
-All z-levels should be identical in size. Their numbers should not matter.
-The order of z-levels should not matter as long as their attributes are properly defined at MAP_TRANSITION_CONFIG.
-Old code checked for the number of the z-level (for example whether there are any revheads on Z1),
-currently it should check for the define (for example whether there are any revheads on any z-levels defined as STATION_LEVEL).
-z1 = centcomm
-z2 = station
-z3 = lavaland
-
-Original design by Okand37 of TG Station
-Lovingly ported by Purpose2 to Paradise
-*/
-
-#if !defined(USING_MAP_DATUM)
- #include "map_files\generic\centcomm.dmm"
- #include "map_files\delta\delta.dmm"
- #include "map_files\generic\Lavaland.dmm"
-
- #define MAP_TRANSITION_CONFIG list(\
-DECLARE_LEVEL(CENTCOMM, SELFLOOPING, list(ADMIN_LEVEL, BLOCK_TELEPORT, IMPEDES_MAGIC)),\
-DECLARE_LEVEL(MAIN_STATION, CROSSLINKED, list(STATION_LEVEL, STATION_CONTACT, REACHABLE, AI_OK)),\
-DECLARE_LEVEL(MINING, SELFLOOPING, list(ORE_LEVEL, REACHABLE, STATION_CONTACT, HAS_WEATHER, AI_OK)))
-
- #define USING_MAP_DATUM /datum/map/delta
-
-#elif !defined(MAP_OVERRIDE)
-
- #warn a map has already been included, ignoring Delta.
-
-#endif
diff --git a/_maps/map_datums.dm b/_maps/map_datums.dm
new file mode 100644
index 00000000000..0e355540dc8
--- /dev/null
+++ b/_maps/map_datums.dm
@@ -0,0 +1 @@
+// See code/modules/mapping for map datums
diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm
index 4be798f308c..7a11fd22216 100644
--- a/_maps/map_files/Delta/delta.dmm
+++ b/_maps/map_files/Delta/delta.dmm
@@ -20,36 +20,15 @@
/obj/machinery/power/tracker,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
- },
-/area/maintenance/auxsolarstarboard)
-"abG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarstarboard)
-"abW" = (
-/obj/machinery/power/solar{
- name = "Aft Starboard Solar Panel"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
},
/area/maintenance/auxsolarstarboard)
+"abQ" = (
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"ace" = (
/obj/structure/cable{
d1 = 1;
@@ -155,8 +134,7 @@
master_tag = "tradedock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 4;
- req_access_txt = "0"
+ pixel_y = 4
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -194,23 +172,18 @@
/area/space)
"acO" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1331;
id_tag = "tradedock_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "tradedock";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
tag_airpump = "tradedock_pump";
tag_chamber_sensor = "tradedock_sensor";
tag_exterior_door = "tradedock_outer";
tag_interior_door = "tradedock_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "tradedock_sensor";
pixel_x = 25;
pixel_y = 5
@@ -246,8 +219,7 @@
/area/shuttle/pod_2)
"adt" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -263,8 +235,7 @@
"adv" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light/small{
dir = 8
@@ -274,14 +245,11 @@
/area/hallway/secondary/entry)
"adx" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -290,14 +258,11 @@
/area/shuttle/pod_1)
"adz" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -321,7 +286,6 @@
"adO" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -332,7 +296,6 @@
"adP" = (
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/comfy/shuttle{
@@ -395,9 +358,7 @@
/area/shuttle/pod_1)
"aee" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 1;
- icon_state = "propulsion";
- tag = "icon-propulsion (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -433,8 +394,7 @@
/area/hallway/secondary/entry)
"aeA" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
@@ -473,9 +433,6 @@
},
/area/hallway/secondary/entry)
"aeM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -520,8 +477,15 @@
name = "Aux Construction Site"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -552,10 +516,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -569,9 +531,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -585,16 +546,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/sign/electricshock{
pixel_y = -32
},
/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- locked = 0;
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -610,8 +565,7 @@
icon_state = "0-4"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -634,8 +588,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -658,11 +611,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "solar_chapel_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -683,9 +634,7 @@
id_tag = "solar_chapel_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_chapel_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "13";
tag_airpump = "solar_chapel_pump";
@@ -694,9 +643,7 @@
tag_interior_door = "solar_chapel_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_chapel_sensor";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -709,11 +656,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "solar_chapel_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/turf/simulated/floor/plasteel,
@@ -733,13 +678,11 @@
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Starboard Arrivals Storage";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -754,7 +697,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -776,7 +719,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -785,8 +728,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
+ name = "Fore Starboard Solar Control"
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
@@ -794,8 +736,7 @@
"afJ" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -803,20 +744,36 @@
"afK" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"afM" = (
-/turf/simulated/wall/mineral/plastitanium,
-/area/shuttle/arrival/station)
-"afN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry)
+"afN" = (
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"afO" = (
@@ -833,8 +790,15 @@
/area/maintenance/disposal)
"afP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -842,16 +806,16 @@
},
/area/hallway/secondary/entry)
"afQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -859,7 +823,7 @@
},
/area/hallway/secondary/entry)
"afR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -869,34 +833,28 @@
/area/hallway/secondary/entry)
"agd" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"age" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/sign/vacuum{
+ pixel_x = -32
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Port Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -904,12 +862,10 @@
"agg" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -917,17 +873,14 @@
"agh" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Center Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -935,44 +888,41 @@
"agk" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- dir = 1;
- icon_state = "heater";
- tag = "icon-heater (NORTH)"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
"agm" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Arrivals Fore Starboard";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agn" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"ago" = (
@@ -985,15 +935,7 @@
},
/area/hallway/secondary/entry)
"agp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/secondary/entry)
@@ -1013,8 +955,10 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agC" = (
@@ -1022,6 +966,9 @@
pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agD" = (
@@ -1035,33 +982,38 @@
/turf/simulated/floor/plating,
/area/shuttle/arrival/station)
"agH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"agI" = (
/turf/simulated/wall/r_wall,
/area/security/podbay)
"agJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/wall/r_wall,
-/area/security/podbay)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry)
"agK" = (
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop/hanger)
"agL" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
- },
-/turf/simulated/wall/r_wall,
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/engine/vacuum,
/area/engine/mechanic_workshop/hanger)
"agT" = (
/obj/item/clothing/suit/storage/hazardvest,
@@ -1105,12 +1057,6 @@
id = 100000
},
/obj/item/gps,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
/obj/machinery/newscaster/security_unit{
pixel_y = 32
},
@@ -1119,31 +1065,15 @@
},
/area/security/podbay)
"agZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/table/reinforced,
/obj/item/flashlight,
/obj/item/radio{
pixel_y = 6
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/camera{
c_tag = "Sec Pod Office";
network = list("Security","SS13")
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1154,12 +1084,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1169,7 +1098,6 @@
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/storage/toolbox/mechanical{
- pixel_x = 0;
pixel_y = 10
},
/obj/item/stock_parts/cell/high{
@@ -1207,16 +1135,22 @@
/area/engine/mechanic_workshop/hanger)
"ahf" = (
/obj/machinery/camera{
- c_tag = "Hanger North";
- network = list("SS13")
+ c_tag = "Hanger North"
},
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"ahg" = (
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry)
"ahh" = (
/obj/item/radio/intercom{
pixel_y = 28
@@ -1224,64 +1158,74 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"ahi" = (
-/obj/machinery/door_control{
- desc = "A remote control-switch for the pod doors.";
- id = "secpodbay";
- name = "Pod Door Control";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "0"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry)
"ahj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"ahk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"ahl" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ pixel_x = 32;
+ pixel_y = null
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
-"ahk" = (
-/obj/structure/spacepoddoor{
- luminosity = 3
- },
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
-"ahl" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/engine/vacuum,
-/area/engine/mechanic_workshop/hanger)
"ahv" = (
/obj/structure/lattice,
/turf/space,
/area/hallway/secondary/entry)
"ahw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Auxiliary Storage";
- req_access_txt = "0";
req_one_access_txt = "65;12"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"ahy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore)
+"ahy" = (
/obj/machinery/door/airlock/glass{
name = "Vacant Office";
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/vacantoffice)
"ahz" = (
-/obj/machinery/door/airlock/external,
+/obj/machinery/door/airlock/external{
+ locked = 1
+ },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
@@ -1303,11 +1247,11 @@
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"ahD" = (
-/obj/effect/landmark{
- name = "HONKsquad"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/mineral/titanium/blue,
-/area/shuttle/arrival/station)
+/turf/simulated/floor/engine,
+/area/engine/mechanic_workshop/hanger)
"ahE" = (
/obj/machinery/door/airlock/titanium{
id_tag = "s_docking_airlock"
@@ -1323,20 +1267,26 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"ahG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
"ahH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -1346,10 +1296,8 @@
},
/area/security/podbay)
"ahI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1360,50 +1308,53 @@
name = "Security Pods";
req_access_txt = "71"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
"ahK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
-"ahL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
+"ahL" = (
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "npodbay";
+ name = "Pod Door Control";
+ pixel_x = 32;
+ pixel_y = null
+ },
+/turf/simulated/floor/engine,
+/area/engine/mechanic_workshop/hanger)
"ahM" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/engine/vacuum,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop/hanger)
"ahT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"ahU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
"ahV" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/mineral/titanium/blue,
@@ -1416,21 +1367,22 @@
"ahX" = (
/obj/structure/closet/secure_closet/security,
/obj/item/spacepod_equipment/weaponry/laser,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
"ahY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "npodbay";
+ name = "Pod Door Control";
+ pixel_y = -24;
+ req_access_txt = "71"
},
+/turf/simulated/floor/engine,
/area/security/podbay)
"ahZ" = (
/turf/simulated/floor/plasteel{
@@ -1444,9 +1396,6 @@
/obj/effect/landmark/start{
name = "Security Pod Pilot"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1459,6 +1408,9 @@
dir = 4;
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1468,19 +1420,30 @@
name = "Security Pods";
req_access_txt = "71"
},
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/podbay)
"aig" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/structure/spacepoddoor{
+ luminosity = 3
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
+/obj/machinery/door/poddoor/multi_tile/three_tile_ver{
+ id_tag = "secpodbay";
+ req_access_txt = "71"
+ },
+/turf/simulated/floor/engine,
+/area/security/podbay)
"aik" = (
/obj/machinery/light{
dir = 1
@@ -1516,30 +1479,14 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aip" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"aiq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/red/partial,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/engine{
- icon_state = "stage_stairs";
- name = "reinforced stairs"
- },
-/area/security/podbay)
"air" = (
/obj/effect/decal/warning_stripes/red/partial,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/engine{
icon_state = "stage_stairs";
name = "reinforced stairs"
@@ -1554,9 +1501,6 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"ait" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -1573,50 +1517,45 @@
/turf/simulated/floor/plasteel,
/area/security/podbay)
"aiu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/spacepoddoor{
+ luminosity = 3
},
-/turf/simulated/wall/r_wall,
-/area/security/podbay)
+/obj/machinery/door/poddoor/multi_tile/four_tile_ver{
+ id_tag = "npodbay"
+ },
+/turf/simulated/floor/engine,
+/area/engine/mechanic_workshop/hanger)
"aiv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/door_control{
+ desc = "A remote control-switch for the pod doors.";
+ id = "npodbay";
+ name = "Pod Door Control";
+ pixel_x = -24;
+ req_access_txt = "71"
+ },
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/engine,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/light/small,
+/turf/simulated/floor/engine/vacuum,
/area/engine/mechanic_workshop/hanger)
"aix" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiy" = (
/obj/structure/spacepoddoor{
luminosity = 3
},
-/obj/machinery/door/poddoor/multi_tile/four_tile_ver{
- id_tag = "secpodbay";
- layer = 3.1;
- req_access_txt = "0"
- },
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiz" = (
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/light/small,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/simulated/floor/engine/vacuum,
/area/engine/mechanic_workshop/hanger)
"aiA" = (
@@ -1628,10 +1567,6 @@
dir = 8
},
/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -1642,10 +1577,6 @@
layer = 2.9
},
/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -1686,39 +1617,43 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"aiJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
"aiK" = (
/obj/machinery/vending/cola,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aiL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aiM" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/floodlight{
+ on = 1
},
/turf/simulated/floor/engine,
-/area/security/podbay)
+/area/engine/mechanic_workshop/hanger)
"aiN" = (
/turf/simulated/floor/engine,
/area/security/podbay)
@@ -1733,12 +1668,12 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aiU" = (
@@ -1760,11 +1695,6 @@
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"aiW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/rack{
dir = 1
},
@@ -1791,20 +1721,14 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aiY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/engine,
-/area/security/podbay)
+/area/engine/mechanic_workshop/hanger)
"ajd" = (
/obj/item/radio/beacon,
/obj/effect/decal/warning_stripes/yellow,
@@ -1817,11 +1741,6 @@
network = list("Security","SS13");
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -1832,52 +1751,31 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"ajg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/engine,
/area/security/podbay)
"ajh" = (
/obj/spacepod/sec{
+ dir = 4;
req_access_txt = "71"
},
/turf/simulated/floor/engine,
/area/security/podbay)
"aji" = (
-/obj/machinery/floodlight{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
-"ajx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
"ajy" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"ajB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
"ajC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -1885,7 +1783,7 @@
"ajD" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/assistant,
+/obj/item/toy/figure/crew/assistant,
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"ajF" = (
@@ -1895,45 +1793,72 @@
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"ajG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
},
+/turf/simulated/floor/engine,
+/area/engine/mechanic_workshop/hanger)
+"ajH" = (
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"ajH" = (
-/turf/simulated/wall,
-/area/security/podbay)
"ajI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/security/podbay)
-"ajJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/wall,
-/area/security/podbay)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/maintenance/fore2)
+"ajJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/maintenance/fore2)
"ajK" = (
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"ajL" = (
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/maintenance/fore2)
"ajM" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/maintenance/fore2)
"ajN" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/maintenance/fore2)
"ajX" = (
/obj/docking_port/stationary{
dir = 8;
@@ -1946,14 +1871,16 @@
/turf/space,
/area/space)
"ajY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
+/area/maintenance/fore2)
"ajZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -1969,39 +1896,35 @@
"akb" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"akc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/mechanic_workshop)
"akd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/camera{
- c_tag = "Mechanic's Office";
- network = list("SS13")
+ c_tag = "Mechanic's Office"
},
/obj/machinery/firealarm{
dir = 8;
@@ -2019,6 +1942,17 @@
name = "Mechanic's Workshop Requests Console";
pixel_y = 30
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -2027,8 +1961,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d2 = 8;
@@ -2037,34 +1970,50 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/random/toolbox,
+/obj/item/wrench,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/mechanic_workshop)
"akf" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
-/turf/simulated/floor/engine,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/engine/mechanic_workshop)
"akg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/mecha_part_fabricator/spacepod,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akh" = (
@@ -2074,18 +2023,32 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aki" = (
-/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akj" = (
-/obj/effect/decal/warning_stripes/west,
/obj/machinery/camera{
c_tag = "Hanger South";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = null
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2117,81 +2080,50 @@
/area/engine/mechanic_workshop)
"akC" = (
/obj/machinery/computer/podtracker,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/mechanic_workshop)
-"akD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/mechanic_workshop)
"akE" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/plasteel,
-/obj/item/stack/rods,
-/obj/item/storage/box/lights/mixed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/mechanic_workshop)
"akF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/engine/mechanic_workshop)
-"akG" = (
-/obj/machinery/mecha_part_fabricator/spacepod,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Mechanic Workshop";
+ req_access_txt = "70"
},
/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
-"akH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/area/engine/mechanic_workshop)
+"akG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "arrival"
},
+/area/hallway/secondary/entry)
+"akH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akI" = (
-/obj/effect/decal/warning_stripes/west,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
@@ -2204,16 +2136,23 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"akV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel,
/area/engine/mechanic_workshop)
"akY" = (
@@ -2236,8 +2175,7 @@
/obj/machinery/door/window/westright{
name = "Mechanic's Desk";
req_access = null;
- req_access_txt = "70";
- req_one_access_txt = "0"
+ req_access_txt = "70"
},
/obj/machinery/cell_charger,
/turf/simulated/floor/plasteel{
@@ -2245,10 +2183,6 @@
},
/area/engine/mechanic_workshop)
"ald" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/structure/chair/office/light{
dir = 8
},
@@ -2266,28 +2200,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/mechanic_workshop)
"alf" = (
-/obj/structure/rack,
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/plasteel,
+/obj/item/stack/rods,
+/obj/item/storage/box/lights/mixed,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
- },
-/obj/random/toolbox,
-/obj/random/toolbox,
-/obj/item/wrench,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2312,7 +2236,6 @@
/obj/machinery/door_control{
id = "mechpod";
name = "Mechanic's Inner Door Control";
- pixel_x = 0;
pixel_y = -24;
req_access_txt = "70"
},
@@ -2335,7 +2258,6 @@
"alj" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -2343,28 +2265,34 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"alk" = (
-/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
+/obj/effect/spawner/random_spawners/wall_rusted_maybe,
+/turf/simulated/wall,
+/area/maintenance/fore2)
"all" = (
-/obj/effect/decal/warning_stripes/north,
/obj/machinery/light/small,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"alm" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop/hanger)
-"als" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/vacuum{
- pixel_x = -32
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"als" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"alt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/vacuum{
pixel_x = 32
},
@@ -2372,20 +2300,16 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"alu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Arrivals Port Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2401,33 +2325,23 @@
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"alx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
},
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aly" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals Center Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2439,19 +2353,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Mechanic Workshop";
req_access_txt = "70"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alA" = (
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop)
"alE" = (
/obj/docking_port/stationary{
- dir = 1;
dwidth = 2;
height = 12;
id = "ferry_home";
@@ -2461,11 +2373,9 @@
/turf/space,
/area/space)
"alG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -2473,7 +2383,6 @@
/obj/machinery/camera{
c_tag = "Arrivals Aft Starboard";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/effect/decal/warning_stripes/west,
@@ -2483,37 +2392,21 @@
/obj/structure/computerframe,
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
-"alI" = (
-/turf/simulated/wall,
-/area/maintenance/fsmaint)
"alJ" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"alL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
"alM" = (
/obj/structure/cable{
d1 = 2;
@@ -2526,12 +2419,12 @@
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/barricade/wooden,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alO" = (
/obj/machinery/vending/snack,
/obj/effect/decal/cleanable/cobweb,
@@ -2539,25 +2432,25 @@
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alP" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alQ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alR" = (
/obj/structure/chair/stool,
/obj/machinery/alarm{
- pixel_y = 22
+ pixel_y = 24
},
/obj/machinery/light/small{
dir = 1
@@ -2566,7 +2459,7 @@
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alS" = (
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/maintenance,
@@ -2577,14 +2470,14 @@
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alT" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alW" = (
/obj/structure/lattice,
/obj/structure/lattice,
@@ -2596,14 +2489,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alY" = (
/obj/machinery/door/airlock/external{
id_tag = "ferry_home";
@@ -2613,18 +2505,35 @@
/area/hallway/secondary/entry)
"alZ" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ama" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amc" = (
/obj/structure/cable{
d1 = 1;
@@ -2633,54 +2542,88 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amd" = (
/obj/structure/door_assembly/door_assembly_mhatch,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ame" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amf" = (
/obj/effect/decal/cleanable/insectguts,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amh" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"amv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
-"amw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
+/area/maintenance/fore2)
+"aml" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"amx" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -2690,40 +2633,32 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
"amz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"amA" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"amB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"amC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/item/trash/candy,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amE" = (
/obj/structure/cable{
d1 = 1;
@@ -2731,10 +2666,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -2742,71 +2673,51 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amL" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"amM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"amN" = (
/obj/structure/sign/pods,
/turf/simulated/wall,
/area/hallway/secondary/entry)
-"amO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
"amP" = (
/obj/structure/cable{
d1 = 1;
@@ -2819,52 +2730,53 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amQ" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amR" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/vomit,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amS" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amT" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amU" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amV" = (
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ang" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/maintenance/fore2)
"ani" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
@@ -2872,39 +2784,13 @@
icon_state = "arrival"
},
/area/hallway/secondary/entry)
-"anj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
"ank" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitecorner"
},
/area/hallway/secondary/entry)
"anl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2912,10 +2798,6 @@
},
/area/hallway/secondary/entry)
"ann" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 1
},
@@ -2924,35 +2806,18 @@
icon_state = "arrival"
},
/area/hallway/secondary/entry)
-"ano" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
"anp" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Arrivals Hall Center";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals Hall Center"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2966,28 +2831,12 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"ans" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 1
},
@@ -3000,16 +2849,14 @@
},
/area/hallway/secondary/entry)
"ant" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "arrival"
@@ -3021,10 +2868,6 @@
icon_state = "arrival"
},
/area/hallway/secondary/entry)
-"anx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
"any" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
@@ -3046,24 +2889,23 @@
/obj/item/reagent_containers/food/snacks/meat/slab,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"anB" = (
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"anC" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"anH" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -3076,67 +2918,48 @@
},
/area/hallway/secondary/entry)
"anI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3147,27 +2970,33 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -3175,23 +3004,19 @@
},
/area/hallway/secondary/entry)
"anR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
-"anS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/entry)
"anT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -3201,22 +3026,26 @@
},
/area/hallway/secondary/entry)
"anU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/entry)
"anV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -3224,46 +3053,40 @@
},
/area/hallway/secondary/entry)
"anW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Arrivals Hall Starboard";
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"anX" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
@@ -3281,8 +3104,10 @@
pixel_y = 2
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aob" = (
/obj/structure/cable{
d1 = 1;
@@ -3291,22 +3116,21 @@
tag = ""
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoc" = (
/obj/item/broken_bottle,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aod" = (
/turf/simulated/floor/plasteel{
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoe" = (
/obj/structure/table,
/obj/random/toolbox,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -3314,15 +3138,13 @@
"aof" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aog" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -3332,20 +3154,16 @@
/turf/simulated/floor/plasteel{
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoi" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -3354,10 +3172,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aon" = (
/obj/structure/cable{
d1 = 1;
@@ -3365,19 +3182,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aoo" = (
/turf/simulated/wall,
/area/security/vacantoffice)
"aop" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
-/area/security/vacantoffice)
+/area/security/customs)
"aoq" = (
/obj/structure/cable{
d1 = 1;
@@ -3385,20 +3200,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aor" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aos" = (
/turf/simulated/wall,
/area/bridge)
@@ -3411,23 +3221,14 @@
/turf/simulated/floor/plating,
/area/bridge)
"aou" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
-"aov" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/entry)
"aow" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -3442,12 +3243,11 @@
/turf/simulated/floor/plasteel{
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoy" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3455,7 +3255,6 @@
/obj/machinery/vending/clothing,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3467,7 +3266,6 @@
},
/area/hallway/secondary/entry)
"aoB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -3485,21 +3283,15 @@
/turf/simulated/floor/plating,
/area/security/checkpoint2)
"aoE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoF" = (
/obj/machinery/vending/coffee,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/hallway/secondary/entry)
@@ -3510,90 +3302,51 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"aoH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/maintenance/fsmaint)
-"aoL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/maintenance/fore2)
+"aoL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
-/area/maintenance/fsmaint)
-"aoN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoP" = (
/obj/docking_port/stationary{
dir = 2;
@@ -3613,13 +3366,13 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aoS" = (
/obj/structure/table,
/obj/random/toolbox,
/obj/item/wrench,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aoT" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -3670,7 +3423,6 @@
},
/area/security/vacantoffice)
"aoY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
pixel_y = 32
@@ -3680,11 +3432,12 @@
},
/area/security/vacantoffice)
"aoZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -3706,7 +3459,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -3715,22 +3467,9 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
-"apd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/simulated/floor/plasteel,
-/area/security/vacantoffice)
"ape" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/ids,
@@ -3738,7 +3477,7 @@
dir = 9;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apf" = (
/obj/structure/cable{
d1 = 1;
@@ -3747,11 +3486,12 @@
tag = ""
},
/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apg" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
@@ -3765,21 +3505,16 @@
dir = 5;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"aph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"api" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -3830,11 +3565,8 @@
},
/area/security/checkpoint2)
"apo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"app" = (
/obj/structure/cable{
d1 = 2;
@@ -3842,16 +3574,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apq" = (
/obj/structure/cable{
d1 = 4;
@@ -3859,10 +3587,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -3871,21 +3595,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"apr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aps" = (
/obj/structure/cable{
d1 = 4;
@@ -3893,13 +3603,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apt" = (
/obj/structure/cable{
d1 = 1;
@@ -3910,18 +3616,18 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/entry)
"apv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -3936,14 +3642,14 @@
dir = 4;
icon_state = "redcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apx" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -3951,7 +3657,7 @@
dir = 1;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -3959,7 +3665,7 @@
dir = 1;
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apA" = (
/obj/structure/table,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -3967,13 +3673,12 @@
dir = 1;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apF" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -3992,22 +3697,18 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"apJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"apK" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"apL" = (
/obj/structure/chair/office/light{
dir = 1
@@ -4022,31 +3723,36 @@
},
/area/security/vacantoffice)
"apN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
+/turf/simulated/floor/plating,
+/area/security/customs)
"apO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/vacantoffice)
-"apP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/security/vacantoffice)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/maintenance/fore2)
+"apP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/maintenance/fore2)
"apQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -4068,18 +3774,15 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
"apT" = (
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4090,34 +3793,28 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"apV" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apW" = (
/obj/structure/table,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/kitchen_machine/microwave,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -4125,24 +3822,27 @@
dir = 1;
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apY" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -4150,12 +3850,13 @@
dir = 1;
icon_state = "red"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4166,9 +3867,10 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/machinery/camera{
- c_tag = "Arrivals Lobby";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals Lobby"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -4176,12 +3878,18 @@
/area/hallway/secondary/entry)
"aqb" = (
/obj/structure/chair/comfy/brown,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/hallway/secondary/entry)
"aqc" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -4191,26 +3899,22 @@
/obj/effect/landmark/start{
name = "Civilian"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/hallway/secondary/entry)
"aqe" = (
/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/hallway/secondary/entry)
-"aqf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
- },
-/area/hallway/secondary/entry)
"aqg" = (
/obj/structure/cable{
d1 = 1;
@@ -4224,20 +3928,20 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge)
+/area/security/customs)
"aqh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light_switch{
pixel_x = -26;
pixel_y = 26
@@ -4248,24 +3952,24 @@
},
/area/security/checkpoint2)
"aqi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Customs Desk";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/bridge)
+/area/security/customs)
"aqj" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -4286,11 +3990,11 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/cigbutt/roach,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aql" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aqm" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -4298,35 +4002,33 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aqn" = (
/obj/structure/rack,
/obj/item/crowbar,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aqo" = (
/obj/structure/closet/crate,
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aqp" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
+"aqq" = (
+/turf/simulated/wall/r_wall/rust,
+/area/security/permabrig)
"aqu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Security Checkpoint";
@@ -4345,16 +4047,14 @@
/obj/item/clothing/accessory/waistcoat,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqw" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqx" = (
@@ -4362,8 +4062,7 @@
/obj/item/storage/box/matches,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aqy" = (
@@ -4439,7 +4138,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aqG" = (
/obj/machinery/conveyor{
dir = 4;
@@ -4458,11 +4157,10 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aqI" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -4505,7 +4203,6 @@
/area/security/vacantoffice)
"aqP" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4515,7 +4212,6 @@
},
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/vacantoffice)
@@ -4528,7 +4224,7 @@
dir = 10;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"aqS" = (
/obj/structure/cable{
d1 = 1;
@@ -4537,11 +4233,12 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge)
+/area/security/customs)
"aqT" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
@@ -4550,9 +4247,8 @@
dir = 4;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"aqU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
@@ -4570,28 +4266,25 @@
/turf/simulated/floor/carpet,
/area/hallway/secondary/entry)
"aqX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/entry)
+"aqY" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/carpet,
-/area/hallway/secondary/entry)
-"aqY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
+/area/security/vacantoffice)
"aqZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
},
@@ -4611,6 +4304,9 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -4619,12 +4315,10 @@
"arc" = (
/obj/machinery/camera{
c_tag = "Arrivals Checkpoint";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
@@ -4633,21 +4327,20 @@
},
/area/security/checkpoint2)
"ard" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"are" = (
/turf/simulated/wall/rust,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arf" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arg" = (
/obj/structure/cable{
d2 = 2;
@@ -4657,20 +4350,18 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arh" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ari" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -4679,7 +4370,7 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arj" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/poster/contraband/random{
@@ -4691,20 +4382,18 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aro" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arp" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arq" = (
@@ -4712,8 +4401,7 @@
/obj/item/clothing/head/that,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"arr" = (
@@ -4750,6 +4438,9 @@
pixel_x = 2;
pixel_y = 2
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -4758,6 +4449,9 @@
/obj/structure/chair/comfy/brown{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
@@ -4770,18 +4464,14 @@
},
/area/maintenance/electrical_shop)
"arx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/area/maintenance/electrical_shop)
+/area/security/vacantoffice)
"ary" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/computerframe,
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
@@ -4797,12 +4487,11 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arA" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -4815,10 +4504,16 @@
"arC" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/security/vacantoffice)
"arD" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -4830,7 +4525,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -4843,6 +4543,9 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -4871,44 +4574,39 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8;
- icon_state = "map"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arJ" = (
/obj/machinery/camera{
c_tag = "Customs Desk";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
icon_state = "bluefull"
},
-/area/bridge)
+/area/security/customs)
"arK" = (
/obj/structure/cable{
d1 = 1;
@@ -4924,11 +4622,12 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge)
+/area/security/customs)
"arL" = (
/obj/structure/cable{
d1 = 4;
@@ -4943,7 +4642,7 @@
dir = 4;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"arM" = (
/obj/structure/cable{
d1 = 1;
@@ -4957,11 +4656,7 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -4970,14 +4665,26 @@
"arN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/hallway/secondary/entry)
"arP" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/hallway/secondary/entry)
"arQ" = (
@@ -4999,7 +4706,7 @@
req_access_txt = "19"
},
/turf/simulated/floor/plasteel,
-/area/bridge)
+/area/security/customs)
"arR" = (
/obj/structure/cable{
d1 = 4;
@@ -5016,6 +4723,12 @@
pixel_x = -8;
req_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -5036,6 +4749,12 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -5043,20 +4762,15 @@
/area/security/checkpoint2)
"arT" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/computer/security,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint2)
"arU" = (
@@ -5070,33 +4784,30 @@
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arV" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arW" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arX" = (
/obj/machinery/computer/arcade,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arY" = (
/obj/structure/table/wood,
/obj/item/toy/minimeteor,
@@ -5108,10 +4819,9 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arZ" = (
/obj/structure/cable{
d1 = 1;
@@ -5122,10 +4832,9 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asa" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -5134,14 +4843,14 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asb" = (
/obj/structure/table/wood,
/obj/item/clipboard,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asc" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -5155,50 +4864,46 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
},
/area/maintenance/auxsolarport)
"asi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/electrical_shop)
+/area/hallway/secondary/entry)
"asj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/maintenance/electrical_shop)
+/turf/simulated/floor/carpet,
+/area/hallway/secondary/entry)
"ask" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/maintenance/electrical_shop)
+/area/hallway/secondary/entry)
"asl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/item/clipboard,
/obj/item/airalarm_electronics,
@@ -5208,27 +4913,17 @@
},
/area/maintenance/electrical_shop)
"asm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/maintenance/electrical_shop)
"asn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/electrical_shop)
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/customs)
"aso" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/computerframe,
/obj/item/circuitboard/secure_data,
/turf/simulated/floor/plasteel{
@@ -5241,11 +4936,11 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"asq" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"asr" = (
/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
@@ -5259,10 +4954,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -5287,24 +4978,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"asw" = (
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"asx" = (
/obj/structure/cable{
d1 = 1;
@@ -5312,14 +5001,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/bridge)
+/area/security/customs)
"asy" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -5328,14 +5015,13 @@
dir = 4;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"asz" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/bridge)
"asA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -5343,36 +5029,35 @@
},
/area/hallway/secondary/entry)
"asB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/entry)
"asC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/comfy/brown{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/hallway/secondary/entry)
-"asD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ icon_state = "neutralfull"
+ },
+/area/security/checkpoint2)
+"asD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/carpet,
/area/hallway/secondary/entry)
"asE" = (
/obj/structure/chair/comfy/brown{
@@ -5409,24 +5094,22 @@
"asI" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asJ" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asK" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asL" = (
/obj/structure/cable{
d1 = 1;
@@ -5436,17 +5119,15 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asM" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asN" = (
/obj/structure/table/wood,
/obj/item/coin/iron{
@@ -5460,14 +5141,14 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asO" = (
/obj/structure/table/wood,
/obj/item/folder/blue,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
@@ -5515,16 +5196,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"asU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarport)
"asV" = (
/obj/structure/cable{
d1 = 2;
@@ -5542,8 +5213,13 @@
/turf/space,
/area/maintenance/auxsolarport)
"asW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
},
@@ -5561,10 +5237,15 @@
icon_state = "1-4"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/checkpoint2)
"asY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -5572,7 +5253,6 @@
},
/area/hallway/secondary/entry)
"asZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
@@ -5620,8 +5300,7 @@
/obj/item/circuitboard/arcade,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"atf" = (
@@ -5630,8 +5309,7 @@
/obj/item/airalarm_electronics,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"atg" = (
@@ -5671,6 +5349,9 @@
/obj/structure/table/wood,
/obj/item/folder/red,
/obj/item/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -5682,10 +5363,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/comfy/brown{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -5714,11 +5398,9 @@
},
/area/maintenance/electrical_shop)
"atn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/computerframe,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -5727,14 +5409,13 @@
"ato" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"atp" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"atq" = (
/obj/structure/table/wood,
/obj/item/phone,
@@ -5786,7 +5467,6 @@
"atv" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -5816,23 +5496,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"atz" = (
/obj/structure/closet/secure_closet,
/obj/item/storage/secure/briefcase,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"atA" = (
/obj/structure/cable{
d1 = 1;
@@ -5840,28 +5518,28 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"atB" = (
/obj/structure/filingcabinet,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"atC" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/structure/chair/comfy/brown{
dir = 1
@@ -5918,6 +5596,9 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "red"
@@ -5926,7 +5607,6 @@
"atI" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/closet/secure_closet/security,
@@ -5935,15 +5615,6 @@
icon_state = "red"
},
/area/security/checkpoint2)
-"atJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
"atK" = (
/obj/structure/cable{
d2 = 4;
@@ -5979,30 +5650,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
-"atN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atO" = (
/obj/structure/cable{
d1 = 4;
@@ -6011,15 +5664,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atP" = (
/obj/structure/cable{
d1 = 4;
@@ -6027,18 +5678,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atQ" = (
/obj/structure/cable{
d1 = 1;
@@ -6046,32 +5696,32 @@
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atR" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -6157,18 +5807,6 @@
icon_state = "dark"
},
/area/engine/controlroom)
-"auc" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/engine/controlroom)
"aud" = (
/obj/machinery/camera{
c_tag = "Supermatter North";
@@ -6183,7 +5821,6 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
@@ -6208,8 +5845,7 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/item/circuitboard/microwave,
/obj/item/stack/sheet/glass{
@@ -6224,8 +5860,7 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"aui" = (
@@ -6236,8 +5871,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"auj" = (
@@ -6256,8 +5890,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/maintenance/electrical_shop)
"auk" = (
@@ -6290,6 +5923,7 @@
/area/maintenance/electrical_shop)
"aun" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -6298,7 +5932,6 @@
/obj/structure/cable,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -6307,11 +5940,9 @@
},
/area/maintenance/electrical_shop)
"aup" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/folder/red,
/obj/item/lighter/zippo,
@@ -6320,10 +5951,10 @@
},
/area/maintenance/electrical_shop)
"auq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aur" = (
/obj/structure/cable{
d1 = 1;
@@ -6331,13 +5962,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aus" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6361,12 +5990,11 @@
req_access_txt = "63"
},
/turf/simulated/floor/plasteel,
-/area/security/checkpoint2)
+/area/maintenance/fore2)
"auu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"auv" = (
/obj/structure/cable{
d1 = 1;
@@ -6378,37 +6006,34 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"auw" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aux" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"auy" = (
/obj/structure/table/wood,
/obj/item/toy/AI,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"auz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
@@ -6420,8 +6045,7 @@
id = "garbage"
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -6472,23 +6096,30 @@
icon_state = "0-2"
},
/obj/machinery/power/emitter,
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/plating,
/area/engine/controlroom)
"auG" = (
/obj/structure/sign/electricshock,
/turf/simulated/wall/r_wall,
/area/engine/controlroom)
"auH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/secondary/entry)
"auI" = (
/turf/simulated/floor/greengrid,
/area/engine/controlroom)
"auJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/greengrid,
-/area/engine/controlroom)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore2)
"auK" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -6509,17 +6140,21 @@
},
/area/maintenance/electrical_shop)
"auN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
-/area/maintenance/electrical_shop)
+/area/maintenance/fore)
"auO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/rust,
-/area/maintenance/electrical_shop)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark"
+ },
+/area/maintenance/fore2)
"auP" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -6530,17 +6165,17 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auR" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auS" = (
/obj/structure/cable{
d1 = 2;
@@ -6550,7 +6185,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auT" = (
/obj/structure/cable{
d1 = 4;
@@ -6563,7 +6198,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auU" = (
/obj/structure/cable{
d1 = 4;
@@ -6575,16 +6210,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"auV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auW" = (
/obj/structure/cable{
d1 = 4;
@@ -6596,7 +6222,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auX" = (
/obj/structure/cable{
d1 = 4;
@@ -6609,13 +6235,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auY" = (
/obj/structure/cable{
d1 = 4;
@@ -6628,12 +6253,11 @@
pixel_y = 32
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auZ" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -6651,12 +6275,10 @@
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -6683,16 +6305,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ave" = (
/obj/structure/cable{
d1 = 4;
@@ -6700,16 +6318,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avf" = (
/obj/structure/cable{
d1 = 1;
@@ -6717,13 +6331,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Checkpoint Maintenance";
req_access_txt = "19"
},
/turf/simulated/floor/plasteel,
-/area/bridge)
+/area/maintenance/fore)
"avg" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -6732,13 +6345,10 @@
},
/area/hallway/secondary/entry)
"avh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -6747,7 +6357,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avj" = (
/obj/structure/cable{
d1 = 1;
@@ -6758,7 +6368,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avk" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -6769,7 +6379,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avl" = (
/obj/structure/cable{
d1 = 1;
@@ -6779,33 +6389,31 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avm" = (
/obj/structure/table/wood,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avn" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avo" = (
/obj/structure/table/wood,
/obj/item/lighter/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avp" = (
/obj/structure/table/wood,
/obj/item/clothing/glasses/regular/hipster,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avq" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
@@ -6814,23 +6422,22 @@
},
/obj/item/toy/flash,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avr" = (
/obj/structure/table/wood,
-/obj/item/toy/figure/wizard,
+/obj/item/toy/figure/crew/wizard,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avs" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/maintenance/disposal)
"avt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"avu" = (
@@ -6865,33 +6472,18 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"avx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/glasses/meson,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"avy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"avz" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -6914,10 +6506,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -6927,34 +6515,17 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"avC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"avD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"avE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
@@ -6965,42 +6536,18 @@
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/plating,
/area/engine/controlroom)
"avG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
},
/area/engine/controlroom)
-"avH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"avI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"avJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"avK" = (
/obj/structure/table/reinforced,
/obj/item/tank/internals/emergency_oxygen/engi,
@@ -7016,7 +6563,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avM" = (
/obj/structure/cable{
d1 = 4;
@@ -7032,7 +6579,7 @@
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avN" = (
/obj/structure/cable{
d1 = 4;
@@ -7046,19 +6593,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"avO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avP" = (
/obj/structure/cable{
d1 = 4;
@@ -7066,12 +6601,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avQ" = (
/obj/structure/cable{
d1 = 4;
@@ -7080,41 +6617,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"avR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
-"avS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avT" = (
/obj/structure/cable{
d1 = 4;
@@ -7122,16 +6631,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avU" = (
/obj/structure/cable{
d1 = 4;
@@ -7139,13 +6650,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avV" = (
/obj/structure/cable{
d1 = 4;
@@ -7153,12 +6666,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avW" = (
/obj/structure/cable{
d1 = 1;
@@ -7172,131 +6687,124 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
name = "2maintenance loot spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"awa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"awa" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awb" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"awc" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
-"awg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
"awh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -7305,36 +6813,38 @@
},
/area/hallway/secondary/entry)
"awi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"awj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -7344,9 +6854,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7354,13 +6866,14 @@
},
/area/hallway/secondary/entry)
"awl" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7371,14 +6884,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall1";
location = "hall15"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -7388,9 +6903,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7401,7 +6915,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -7411,13 +6924,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7425,27 +6932,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awr" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aws" = (
/obj/structure/cable{
d1 = 1;
@@ -7459,16 +6958,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awt" = (
/obj/structure/cable{
d1 = 4;
@@ -7476,16 +6971,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awu" = (
/obj/structure/cable{
d1 = 4;
@@ -7499,16 +6990,11 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awv" = (
/obj/structure/cable{
d1 = 1;
@@ -7516,14 +7002,16 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aww" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awx" = (
/turf/simulated/wall/rust,
/area/security/checkpoint2)
@@ -7532,7 +7020,7 @@
dir = 4
},
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7561,24 +7049,31 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"awD" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/machinery/disposal/deliveryChute{
+/obj/structure/disposaloutlet{
dir = 4
},
/obj/machinery/conveyor{
- dir = 8;
+ dir = 4;
id = "garbage"
},
/obj/effect/decal/warning_stripes/southwest,
/obj/effect/decal/warning_stripes/north,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"awE" = (
@@ -7601,7 +7096,6 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"awG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/meson,
@@ -7617,9 +7111,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7627,9 +7118,8 @@
},
/area/engine/controlroom)
"awI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7642,25 +7132,13 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/controlroom)
-"awK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
"awL" = (
/obj/structure/cable{
d1 = 4;
@@ -7668,27 +7146,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/controlroom)
"awM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"awN" = (
/obj/structure/cable{
d1 = 4;
@@ -7696,19 +7161,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
},
/area/engine/controlroom)
"awO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7723,9 +7181,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
@@ -7738,7 +7193,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7752,9 +7206,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -7767,8 +7218,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -7781,6 +7232,9 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -7796,8 +7250,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
@@ -7805,22 +7258,28 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"awV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awW" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall/rust,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"awY" = (
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awZ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -7835,13 +7294,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"axb" = (
@@ -7852,24 +7310,20 @@
/area/janitor)
"axd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"axe" = (
/turf/simulated/wall,
/area/crew_quarters/toilet)
"axf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "dark"
},
-/area/hallway/secondary/entry)
+/area/maintenance/fore2)
"axg" = (
/obj/structure/cable{
d1 = 1;
@@ -7877,17 +7331,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"axh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7895,11 +7348,9 @@
},
/area/hallway/secondary/entry)
"axi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -7915,345 +7366,312 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"axk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"axl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/secondary/entry)
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
+/area/engine/controlroom)
"axm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axn" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/fore2)
+"axs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"axs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axv" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2";
+ tag = null
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/maintenance/disposal)
"axy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"axz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/maintenance/disposal)
"axA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/maintenance/disposal)
"axB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/maintenance/disposal)
"axC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/alarm{
dir = 1;
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"axD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/maintenance/disposal)
"axE" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -8270,7 +7688,6 @@
},
/area/hallway/secondary/entry)
"axG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
@@ -8281,7 +7698,8 @@
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
dir = 8
},
-/turf/simulated/wall/r_wall,
+/obj/effect/spawner/window/reinforced/plasma,
+/turf/simulated/floor/plating,
/area/engine/controlroom)
"axI" = (
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -8295,6 +7713,7 @@
dir = 4
},
/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"axK" = (
@@ -8327,7 +7746,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/south,
@@ -8378,11 +7796,11 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"axT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"axU" = (
@@ -8411,8 +7829,7 @@
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8428,7 +7845,7 @@
"axY" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"axZ" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -8436,7 +7853,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aya" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
@@ -8444,26 +7861,18 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayb" = (
/obj/structure/table/wood,
/obj/item/clothing/gloves/color/white,
/obj/item/clothing/head/collectable/rabbitears,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"ayc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redblue"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aye" = (
/obj/structure/cable{
d1 = 4;
@@ -8471,9 +7880,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8482,17 +7888,12 @@
},
/turf/simulated/floor/greengrid,
/area/engine/controlroom)
-"ayf" = (
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/fsmaint)
"ayg" = (
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayh" = (
/obj/structure/table/wood,
/obj/item/camera_film,
@@ -8500,7 +7901,7 @@
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayi" = (
/obj/structure/cable{
d1 = 1;
@@ -8508,8 +7909,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -8527,8 +7929,7 @@
/obj/item/storage/box/mousetraps,
/obj/item/storage/box/mousetraps,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8551,7 +7952,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/closet/jcloset,
@@ -8560,9 +7960,7 @@
/area/janitor)
"aym" = (
/obj/machinery/camera{
- c_tag = "Janitor's Closet";
- dir = 2;
- network = list("SS13")
+ c_tag = "Janitor's Closet"
},
/obj/structure/closet/l3closet/janitor,
/obj/machinery/requests_console{
@@ -8577,7 +7975,7 @@
"ayn" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/janitor,
+/obj/item/toy/figure/crew/janitor,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -8598,9 +7996,8 @@
/area/janitor)
"ayp" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayq" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
@@ -8642,11 +8039,9 @@
/area/hallway/secondary/entry)
"ayv" = (
/obj/structure/sign/directions/engineering{
- dir = 2;
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -8655,43 +8050,34 @@
/turf/simulated/wall,
/area/crew_quarters/toilet)
"ayw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
-"ayx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore)
+"ayx" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"ayy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
@@ -8699,11 +8085,8 @@
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
- dir = 2;
pixel_y = 8
},
/turf/simulated/wall,
@@ -8718,31 +8101,30 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
req_access_txt = "31"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/sorting)
+/area/maintenance/fore2)
"ayC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/quartermaster/sorting)
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"ayD" = (
/turf/simulated/wall,
/area/quartermaster/storage)
"ayE" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
req_access_txt = "31"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"ayF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore2)
+"ayF" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8765,8 +8147,8 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"ayI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"ayJ" = (
@@ -8792,17 +8174,7 @@
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
"ayO" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
+/obj/effect/spawner/window/reinforced/plasma,
/turf/simulated/floor/plating,
/area/engine/supermatter)
"ayP" = (
@@ -8817,8 +8189,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -8835,18 +8206,17 @@
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/wall/rust,
-/area/maintenance/fsmaint)
+/turf/simulated/wall,
+/area/maintenance/fore2)
"ayT" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"ayU" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
@@ -8860,19 +8230,20 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"ayW" = (
/obj/effect/spawner/random_spawners/oil_maybe,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayX" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayY" = (
/obj/structure/table/wood,
/obj/structure/mirror{
@@ -8884,61 +8255,36 @@
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redblue"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aza" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"azc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aze" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8960,20 +8306,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/table/reinforced,
/obj/structure/mirror{
pixel_x = -26;
@@ -8988,13 +8328,11 @@
/turf/simulated/floor/plasteel,
/area/janitor)
"azi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start{
name = "Janitor"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/janitor)
"azj" = (
@@ -9004,16 +8342,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/janitor)
"azk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -9021,36 +8353,31 @@
},
/area/janitor)
"azl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start{
name = "Janitor"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"azm" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/janitor)
"azn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azo" = (
/obj/structure/mirror{
pixel_x = -26;
@@ -9058,7 +8385,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -9071,12 +8397,18 @@
/area/crew_quarters/toilet)
"azp" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
"azq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -9084,10 +8416,19 @@
/area/crew_quarters/toilet)
"azr" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/toilet)
"azs" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -9100,39 +8441,29 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
-"azu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
"azv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"azw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Fore Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -9165,12 +8496,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"azB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
@@ -9182,8 +8511,7 @@
/area/quartermaster/sorting)
"azC" = (
/obj/machinery/camera{
- c_tag = "Cargo Backroom";
- network = list("SS13")
+ c_tag = "Cargo Backroom"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -9223,7 +8551,7 @@
"azH" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/machinery/alarm{
- pixel_y = 22
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -9250,9 +8578,14 @@
},
/area/quartermaster/storage)
"azK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Disposals Maint";
+ sortType = 1
+ },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -9335,12 +8668,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id_tag = "engsm"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
@@ -9361,8 +8690,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"azW" = (
@@ -9372,30 +8701,19 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"azX" = (
+"azY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/obj/structure/window/plasmareinforced{
+ dir = 4
+ },
+/obj/machinery/power/rad_collector,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/rad_collector,
-/turf/simulated/floor/greengrid,
-/area/engine/supermatter)
-"azY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 1
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"azZ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -9407,37 +8725,32 @@
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aAb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aAc" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 10
},
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
/obj/structure/window/plasmareinforced{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/engine/supermatter)
-"aAd" = (
+/obj/machinery/power/rad_collector,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/power/rad_collector,
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
+"aAd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"aAe" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -9447,7 +8760,6 @@
/turf/space,
/area/space/nearstation)
"aAf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/unary/thermomachine/heater/on{
dir = 4
},
@@ -9466,27 +8778,6 @@
icon_state = "yellowfull"
},
/area/engine/controlroom)
-"aAh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"aAi" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -9505,39 +8796,49 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAk" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/reagent_containers/food/drinks/bottle/whiskey,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redblue"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/dresser,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAo" = (
/obj/structure/table/wood,
/obj/item/camera,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAp" = (
/obj/structure/chair/comfy/brown{
dir = 8
@@ -9546,40 +8847,37 @@
broken = 1;
icon_state = "wood-broken"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAq" = (
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAr" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/storage/box/lights/mixed,
/obj/item/storage/box/lights/mixed,
/obj/item/lightreplacer,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel,
/area/janitor)
"aAt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aAu" = (
@@ -9591,6 +8889,9 @@
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -9598,12 +8899,18 @@
"aAv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/janitor)
"aAw" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurple"
@@ -9620,30 +8927,33 @@
/area/janitor)
"aAy" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAz" = (
/turf/simulated/wall/rust,
/area/crew_quarters/toilet)
"aAA" = (
/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/toilet)
"aAB" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
"aAC" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
/area/crew_quarters/toilet)
@@ -9653,7 +8963,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -9668,7 +8977,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
@@ -9678,47 +8986,48 @@
},
/area/crew_quarters/toilet)
"aAF" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aAG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aAH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"aAG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11;
- level = 1
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"aAH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -9733,25 +9042,23 @@
tag = ""
},
/obj/machinery/door/airlock{
- name = "Auxillary Restrooms";
- req_access_txt = "0"
+ name = "Auxillary Restrooms"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/toilet)
"aAJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
@@ -9771,10 +9078,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -9782,100 +9087,118 @@
},
/area/quartermaster/sorting)
"aAN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/closet/cardboard,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
req_access_txt = "31"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAX" = (
@@ -9884,9 +9207,6 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -9903,13 +9223,14 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aBb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/area/maintenance/fore)
"aBf" = (
/obj/structure/cable{
d1 = 4;
@@ -9917,26 +9238,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "engsm";
- name = "Supermatter Blast Doors";
- opacity = 0
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id_tag = "engsm"
+ },
/turf/simulated/floor/plating,
/area/engine/supermatter)
"aBg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/unary/thermomachine/freezer{
dir = 4
},
@@ -9944,39 +9256,45 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aBi" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/structure/grille,
/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/power/rad_collector,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"aBj" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"aBk" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 4;
+ initialize_directions = 11
},
/obj/structure/window/plasmareinforced{
dir = 8
},
-/turf/simulated/floor/plating,
+/obj/machinery/power/rad_collector,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"aBl" = (
/obj/structure/cable{
@@ -9994,23 +9312,23 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aBm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/controlroom)
+/area/hallway/secondary/entry)
"aBn" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -10024,20 +9342,18 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBp" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBq" = (
/obj/machinery/vending/autodrobe,
/obj/machinery/light/small,
@@ -10045,19 +9361,17 @@
dir = 8;
icon_state = "redblue"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBr" = (
/obj/structure/table/wood,
/obj/item/clothing/shoes/jackboots,
/obj/effect/landmark/costume/random,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/lipstick/random{
pixel_x = 3;
@@ -10072,14 +9386,12 @@
pixel_y = 1
},
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBt" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/crayons,
@@ -10087,7 +9399,7 @@
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBu" = (
/obj/structure/mirror{
pixel_x = -26;
@@ -10095,7 +9407,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -10110,15 +9421,15 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitepurple"
},
/area/janitor)
"aBw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small,
/obj/item/reagent_containers/glass/bucket,
/obj/item/mop,
@@ -10127,7 +9438,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -10144,18 +9454,14 @@
pixel_y = -26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aBy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/janitor)
"aBz" = (
@@ -10167,41 +9473,38 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/janitor)
"aBA" = (
-/obj/machinery/light/small,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/machinery/disposal,
+/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/janitor)
"aBB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/hallway/primary/fore)
-"aBC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/hallway/primary/fore)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
"aBD" = (
/obj/structure/cable{
d1 = 1;
@@ -10209,43 +9512,34 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aBE" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"aBE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 5;
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
+/area/crew_quarters/bar)
"aBF" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"aBG" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -10258,64 +9552,44 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
-"aBI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/sorting)
"aBJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aBK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aBL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/closet/crate/internals,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"aBM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aBN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
- },
-/area/quartermaster/sorting)
-"aBO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore2)
+"aBO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
@@ -10332,9 +9606,6 @@
},
/area/quartermaster/storage)
"aBQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
@@ -10342,18 +9613,6 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
"aBS" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -10362,14 +9621,12 @@
/area/quartermaster/storage)
"aBT" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aBU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
@@ -10398,9 +9655,7 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aBX" = (
-/obj/machinery/power/supermatter_crystal{
- anchored = 1
- },
+/obj/machinery/power/supermatter_crystal,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aBY" = (
@@ -10413,24 +9668,45 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aBZ" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/area/maintenance/fore2)
"aCd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore2)
"aCe" = (
/obj/structure/cable{
d1 = 1;
@@ -10445,37 +9721,33 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aCf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aCg" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
/obj/structure/window/plasmareinforced{
dir = 4
},
-/obj/structure/window/plasmareinforced{
- dir = 8
+/obj/machinery/power/rad_collector,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"aCh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/supply,
/obj/structure/window/plasmareinforced{
dir = 8
},
-/turf/simulated/floor/plating,
+/obj/machinery/power/rad_collector,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/engine,
/area/engine/supermatter)
"aCi" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
@@ -10498,22 +9770,34 @@
/turf/simulated/wall,
/area/hydroponics/abandoned_garden)
"aCm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/hydroponics/abandoned_garden)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
"aCn" = (
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aCo" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aCp" = (
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/janitor)
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
"aCq" = (
/obj/structure/cable{
d1 = 1;
@@ -10521,11 +9805,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock{
name = "Custodial Closet";
req_access_txt = "26"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/janitor)
"aCr" = (
@@ -10548,7 +9833,6 @@
id = "janitorshutters";
name = "Janitor Shutters Control";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "26"
},
/obj/effect/decal/warning_stripes/south,
@@ -10556,18 +9840,15 @@
/area/janitor)
"aCt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aCu" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -10576,19 +9857,15 @@
/turf/simulated/floor/plating,
/area/crew_quarters/toilet)
"aCv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -10596,8 +9873,7 @@
/area/quartermaster/sorting)
"aCw" = (
/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
+ name = "Private Restroom"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/toilet)
@@ -10606,45 +9882,28 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plating,
/area/crew_quarters/toilet)
-"aCy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aCz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
"aCA" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"aCB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/landmark{
+ name = "blobstart"
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
+/area/maintenance/fore)
"aCC" = (
/obj/structure/cable{
d1 = 1;
@@ -10652,34 +9911,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/sorting)
"aCD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/landmark/start{
name = "Cargo Technician"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/sorting)
"aCE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -10689,18 +9936,12 @@
},
/area/quartermaster/sorting)
"aCF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/sorting)
"aCG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -10735,39 +9976,17 @@
layer = 2.9
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aCL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aCM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/fore)
"aCN" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -10785,54 +10004,26 @@
},
/area/quartermaster/storage)
"aCP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aCQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/area/crew_quarters/toilet)
"aCR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/turf/simulated/floor/plasteel{
+ icon_state = "redbluefull"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/area/maintenance/fore)
"aCS" = (
/obj/structure/cable{
d1 = 2;
@@ -10847,17 +10038,15 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aCT" = (
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -6;
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"aCU" = (
/obj/structure/cable{
d1 = 2;
@@ -10871,8 +10060,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aCV" = (
@@ -10890,12 +10079,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aCX" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
"aCY" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
@@ -10920,8 +10103,8 @@
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
"aDb" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
@@ -10956,7 +10139,7 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aDg" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
@@ -10973,15 +10156,16 @@
dir = 10
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aDi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -11063,15 +10247,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDt" = (
/obj/structure/cable{
d1 = 4;
@@ -11079,61 +10256,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"aDu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"aDv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDw" = (
/obj/structure/cable{
d1 = 4;
@@ -11141,21 +10265,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDx" = (
/obj/structure/cable{
d1 = 4;
@@ -11168,16 +10281,15 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDy" = (
/obj/structure/cable{
d1 = 4;
@@ -11185,18 +10297,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDz" = (
/obj/structure/cable{
d1 = 4;
@@ -11204,21 +10312,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDA" = (
/obj/structure/cable{
d1 = 1;
@@ -11233,18 +10337,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDC" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -11253,6 +10350,10 @@
/turf/space,
/area/space/nearstation)
"aDD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11264,124 +10365,83 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- name = "Bar Junction";
- sortType = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDG" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/crew_quarters/toilet)
-"aDI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/wall/rust,
-/area/crew_quarters/toilet)
-"aDJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/area/maintenance/fore)
+"aDI" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/fore)
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
"aDK" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/sorting)
"aDL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
req_access_txt = "31"
@@ -11389,6 +10449,9 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aDM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11401,13 +10464,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -11421,19 +10477,21 @@
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"aDO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aDP" = (
@@ -11479,31 +10537,13 @@
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"aDU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aDV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
"aDW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -11568,11 +10608,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aEf" = (
@@ -11583,19 +10623,21 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aEg" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+/turf/simulated/floor/plasteel{
+ icon_state = "redbluefull"
},
-/turf/simulated/wall/r_wall,
-/area/engine/supermatter)
+/area/maintenance/fore)
"aEh" = (
/obj/machinery/atmospherics/binary/pump{
name = "Gas to Filter"
},
+/obj/machinery/power/apc{
+ cell_type = 25000;
+ dir = 1;
+ name = "Engineering Engine Super APC";
+ pixel_x = -24;
+ shock_proof = 1
+ },
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aEi" = (
@@ -11603,6 +10645,10 @@
dir = 1;
name = "Gas to Chamber"
},
+/obj/machinery/alarm/engine{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aEj" = (
@@ -11611,14 +10657,16 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
"aEl" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
@@ -11645,6 +10693,7 @@
dir = 4
},
/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aEo" = (
@@ -11673,19 +10722,23 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aEs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 10
+ },
+/turf/simulated/floor/engine,
+/area/engine/supermatter)
"aEt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
+/area/maintenance/fore)
"aEu" = (
/obj/structure/cable{
d1 = 1;
@@ -11693,33 +10746,25 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"aEv" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
+"aEv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"aEw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEx" = (
/obj/structure/cable{
d1 = 4;
@@ -11730,10 +10775,9 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEy" = (
/obj/structure/cable{
d1 = 4;
@@ -11743,10 +10787,9 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEz" = (
/obj/structure/cable{
d1 = 4;
@@ -11754,13 +10797,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEA" = (
/obj/structure/cable{
d1 = 4;
@@ -11768,39 +10807,27 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEB" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/toilet)
"aEC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "Custodial Junction";
- sortType = 11
+ sortType = 22
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aED" = (
/obj/structure/cable{
d1 = 4;
@@ -11808,62 +10835,26 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
-"aEE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
"aEF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
"aEG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -11880,22 +10871,16 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aEI" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ sortType = 2
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11903,6 +10888,7 @@
},
/area/quartermaster/sorting)
"aEJ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11914,12 +10900,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -11931,14 +10918,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -11951,7 +10934,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
@@ -11965,8 +10947,7 @@
},
/obj/structure/disposaloutlet,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -11976,8 +10957,7 @@
/area/quartermaster/office)
"aEN" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -11991,8 +10971,7 @@
"aEO" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -12024,33 +11003,23 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aER" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
"aES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/quartermaster/storage)
+/area/maintenance/fore)
"aET" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -12058,23 +11027,23 @@
},
/area/quartermaster/storage)
"aEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aEV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 5
},
-/area/quartermaster/storage)
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
"aEW" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -12158,9 +11127,7 @@
},
/obj/machinery/atmospherics/trinary/filter{
dir = 8;
- filter_type = "n2";
- name = "gas filter";
- on = 0
+ filter_type = "n2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -12217,6 +11184,7 @@
dir = 9
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aFm" = (
@@ -12227,16 +11195,25 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aFn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aFo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/hydroponics/abandoned_garden)
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/engine/supermatter)
"aFp" = (
/obj/machinery/light{
dir = 8
@@ -12256,17 +11233,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aFr" = (
+/obj/machinery/door/airlock/multi_tile{
+ name = "maintenance access";
+ req_access_txt = "12"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"aFs" = (
/obj/structure/table/wood,
@@ -12277,6 +11260,7 @@
/area/crew_quarters/sleep)
"aFt" = (
/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -12306,10 +11290,19 @@
/turf/simulated/wall,
/area/crew_quarters/sleep)
"aFy" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/sleep)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
"aFz" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 10
@@ -12321,10 +11314,11 @@
/turf/simulated/wall,
/area/crew_quarters/bar)
"aFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12332,10 +11326,11 @@
},
/area/hallway/primary/fore)
"aFC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -12345,7 +11340,6 @@
"aFD" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
@@ -12361,51 +11355,59 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aFG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/sorting)
+/area/quartermaster/storage)
"aFH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/quartermaster/sorting)
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore)
"aFI" = (
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/quartermaster/sorting)
"aFJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aFK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aFL" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "brown"
@@ -12431,25 +11433,16 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aFP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/external{
- id_tag = "supply_home";
- locked = 1;
- name = "Cargo Docking Hatch";
- req_access_txt = "31"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/area/hydroponics/abandoned_garden)
"aFQ" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/toilet{
dir = 8
@@ -12466,9 +11459,7 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aFS" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 0
- },
+/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/storage)
"aFV" = (
@@ -12478,8 +11469,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aFW" = (
@@ -12516,12 +11507,6 @@
c_tag = "Supermatter South";
network = list("SS13","Engineering")
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -12539,9 +11524,6 @@
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 23
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/supermatter)
@@ -12569,15 +11551,14 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aGc" = (
-/obj/structure/cable,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -12588,18 +11569,18 @@
pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aGd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/tank/internals/plasma,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -12608,7 +11589,6 @@
"aGe" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -12651,10 +11631,13 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aGi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -12685,8 +11668,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aGm" = (
@@ -12711,8 +11695,7 @@
/obj/item/folder,
/obj/item/pen,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -12722,73 +11705,46 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/sleep)
"aGq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/sleep)
"aGr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/sleep)
"aGs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/sleep)
-"aGt" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"aGu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"aGv" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
@@ -12802,8 +11758,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGw" = (
@@ -12814,7 +11769,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light/small{
@@ -12823,24 +11777,19 @@
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/sink/kitchen{
pixel_y = 28
},
/obj/machinery/camera{
- c_tag = "Bar Backroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bar Backroom"
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGy" = (
@@ -12853,15 +11802,13 @@
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGz" = (
/obj/structure/table/wood,
/obj/item/ammo_box/shotgun/beanbag,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/light_switch{
@@ -12870,8 +11817,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGA" = (
@@ -12882,8 +11828,7 @@
/obj/machinery/chem_dispenser/soda,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGB" = (
@@ -12891,8 +11836,7 @@
/obj/machinery/chem_dispenser/beer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGC" = (
@@ -12902,8 +11846,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGD" = (
@@ -12915,7 +11858,6 @@
department = "Bar";
departmentType = 2;
name = "Bar Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/book/manual/barman_recipes,
@@ -12923,21 +11865,19 @@
/obj/item/reagent_containers/glass/rag,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGE" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/crew/bartender,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGF" = (
@@ -12953,8 +11893,7 @@
/obj/item/storage/box/matches,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGG" = (
@@ -12965,8 +11904,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aGH" = (
@@ -12974,12 +11912,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -12987,6 +11923,7 @@
},
/area/hallway/primary/fore)
"aGI" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12998,18 +11935,17 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"aGJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13023,27 +11959,21 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/quartermaster/office)
-"aGM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"aGN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
-"aGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/quartermaster/office)
+/area/hydroponics/abandoned_garden)
"aGO" = (
-/turf/simulated/wall,
-/area/security/checkpoint/supply)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/sorting)
"aGP" = (
/obj/structure/plasticflaps/mining,
/obj/machinery/conveyor/west{
@@ -13054,37 +11984,54 @@
"aGQ" = (
/obj/structure/window/reinforced,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aGT" = (
-/turf/simulated/wall/r_wall,
-/area/security/prison)
-"aGU" = (
-/turf/simulated/wall/r_wall/rust,
-/area/security/prison)
-"aGV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aGU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aGV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aGW" = (
/obj/structure/lattice,
/obj/structure/grille{
@@ -13110,9 +12057,7 @@
"aHb" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 9;
- pixel_y = 0
+ pixel_x = 9
},
/obj/structure/sign/botany{
pixel_x = 32
@@ -13128,6 +12073,7 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aHd" = (
@@ -13136,25 +12082,20 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHe" = (
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/controlroom)
-"aHf" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/controlroom)
-"aHg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/controlroom)
"aHh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -13163,16 +12104,6 @@
icon_state = "neutralfull"
},
/area/engine/controlroom)
-"aHi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
"aHj" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light/small,
@@ -13180,17 +12111,9 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
-"aHk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
"aHl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -13206,6 +12129,9 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -13227,9 +12153,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
@@ -13256,7 +12185,6 @@
/obj/structure/cable,
/obj/structure/table,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -13290,9 +12218,10 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHu" = (
@@ -13315,7 +12244,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hydroponics/soil,
/obj/machinery/light/small,
/obj/item/seeds/tower,
@@ -13323,12 +12251,13 @@
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance{
name = "Abandoned Garden"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hydroponics/abandoned_garden)
"aHy" = (
@@ -13377,54 +12306,32 @@
},
/area/crew_quarters/sleep)
"aHD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/sleep)
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
"aHE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/dresser,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/sleep)
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
"aHF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/turf/simulated/wall,
-/area/crew_quarters/sleep)
-"aHG" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
+/turf/simulated/floor/plasteel,
+/area/hydroponics/abandoned_garden)
"aHH" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13432,29 +12339,24 @@
},
/area/crew_quarters/sleep)
"aHI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/plasticflaps,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
dir = 4;
location = "Bar"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/crew_quarters/bar)
"aHJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/crew_quarters/bar)
"aHK" = (
/obj/structure/cable{
@@ -13463,30 +12365,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar)
-"aHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/bar)
"aHM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -13494,79 +12381,74 @@
},
/area/crew_quarters/bar)
"aHN" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Bar Office";
req_access_txt = "25"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/bar)
-"aHP" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
+ },
+/area/crew_quarters/bar)
+"aHP" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "grimy"
},
-/area/crew_quarters/bar)
+/area/crew_quarters/sleep)
"aHR" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aHS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ name = "Bar Junction";
+ sortType = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13578,15 +12460,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13617,13 +12490,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aHX" = (
/obj/structure/cable{
d1 = 4;
@@ -13631,31 +12500,29 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aHY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "Bar Office Maintenance";
req_access_txt = "25"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/crew_quarters/bar)
"aHZ" = (
/obj/structure/disposalpipe/trunk{
@@ -13665,35 +12532,29 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aIa" = (
-/obj/structure/table/reinforced,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
- },
-/obj/item/book/manual/security_space_law,
-/obj/item/radio,
/obj/machinery/status_display{
pixel_y = 32
},
+/obj/structure/chair/sofa/right,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aIb" = (
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/structure/table/reinforced,
/obj/item/radio/intercom{
pixel_y = 26
},
-/obj/machinery/recharger,
+/obj/structure/chair/sofa,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aIc" = (
/obj/machinery/firealarm{
dir = 4;
@@ -13706,11 +12567,13 @@
pixel_x = 25;
pixel_y = 32
},
+/obj/structure/chair/sofa/left,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aId" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -13718,7 +12581,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
+ icon_state = "browncorner"
},
/area/quartermaster/storage)
"aIe" = (
@@ -13737,38 +12600,41 @@
layer = 4;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = 8;
- req_access_txt = "0"
+ pixel_y = 8
},
/obj/machinery/door_control{
id = "QMLoaddoor";
layer = 4;
name = "Loading Doors";
pixel_x = 24;
- pixel_y = -8;
- req_access_txt = "0"
+ pixel_y = -8
},
/obj/machinery/camera{
c_tag = "Medbay Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aIg" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/west{
- id = "QMLoad2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
"aIh" = (
/obj/machinery/conveyor/southeast{
id = "cargodelivery"
@@ -13799,75 +12665,38 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aIl" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/seeds/carrot,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aIm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hydroponics/constructable,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aIn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/sink/kitchen{
- desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
- name = "old sink";
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Perma-Brig Garden";
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aIo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/item/reagent_containers/glass/bucket,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aIp" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
+/area/security/permabrig)
+"aIo" = (
+/obj/item/plant_analyzer,
/obj/machinery/hydroponics/constructable,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/effect/decal/cleanable/cobweb2,
-/obj/item/seeds/tower,
-/obj/item/seeds/amanita,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aIp" = (
+/obj/item/cultivator,
+/obj/item/reagent_containers/spray/pestspray,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aIq" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air{
@@ -13948,7 +12777,7 @@
in_use = 1
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -13973,8 +12802,7 @@
/area/maintenance/incinerator)
"aIy" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -14013,10 +12841,6 @@
},
/area/maintenance/incinerator)
"aIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -14028,10 +12852,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14042,10 +12862,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14056,13 +12872,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/light,
/obj/machinery/status_display{
pixel_y = -32
@@ -14077,10 +12886,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -14095,11 +12900,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14116,10 +12916,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aII" = (
@@ -14129,10 +12927,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14143,7 +12937,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/light,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -14160,9 +12953,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14182,16 +12972,18 @@
/turf/simulated/floor/plating,
/area/hydroponics/abandoned_garden)
"aIN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aIO" = (
/obj/machinery/door/poddoor{
id_tag = "justice_blast";
@@ -14205,11 +12997,13 @@
/turf/simulated/floor/plasteel,
/area/security/execution)
"aIP" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/spawner/window/reinforced,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plating,
-/area/hydroponics/abandoned_garden)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
"aIQ" = (
/obj/structure/cable{
d1 = 1;
@@ -14217,44 +13011,45 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aIR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Service Hall North";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aIS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/crew_quarters/bar)
"aIT" = (
/obj/structure/lattice,
@@ -14264,16 +13059,13 @@
/turf/space,
/area/space/nearstation)
"aIU" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/light/small{
dir = 4
},
@@ -14309,42 +13101,43 @@
/area/crew_quarters/bar)
"aIY" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aIZ" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJa" = (
/obj/effect/landmark/start{
name = "Bartender"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJb" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aJc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -14362,12 +13155,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Delivery Office";
req_access_txt = "50"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aJf" = (
@@ -14377,7 +13171,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -14390,7 +13183,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14404,40 +13196,28 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aJi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
-"aJj" = (
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint/supply)
-"aJk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ icon_state = "brown"
},
+/area/quartermaster/sorting)
+"aJj" = (
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/supply)
-"aJl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "yellow"
},
+/area/quartermaster/storage)
+"aJk" = (
+/obj/machinery/computer/arcade/orion_trail,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aJm" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -14447,23 +13227,15 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "brown"
},
/area/quartermaster/storage)
"aJo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -14473,10 +13245,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -14488,95 +13257,65 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aJs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/plasticflaps/mining,
-/obj/machinery/conveyor/east{
- id = "QMLoad"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aJu" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/door_control{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ pixel_y = 24;
+ req_access_txt = "10"
},
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"aJt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/sleep)
+"aJu" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ name = "EXTERNAL AIRLOCK"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aJv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aJw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
"aJx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/wall,
+/area/security/permabrig)
"aJy" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/obj/structure/lattice/catwalk,
@@ -14588,35 +13327,18 @@
/turf/space,
/area/space/nearstation)
"aJA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aJB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/biogenerator,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aJC" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
+"aJC" = (
+/obj/structure/table,
+/obj/item/clothing/head/chefhat,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aJD" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southeast,
@@ -14629,14 +13351,9 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aJF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/southwest,
@@ -14654,10 +13371,10 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aJH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -14669,8 +13386,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -14678,24 +13394,19 @@
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aJJ" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aJK" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "solar_tool_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "32"
},
/obj/structure/cable{
@@ -14713,9 +13424,7 @@
id_tag = "solar_tool_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "solar_tool_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "32";
tag_airpump = "solar_tool_pump";
@@ -14724,9 +13433,7 @@
tag_interior_door = "solar_tool_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "solar_tool_sensor";
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -14750,21 +13457,17 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aJN" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -14777,9 +13480,7 @@
tag = ""
},
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Gas to Turbine";
- on = 0
+ name = "Gas to Turbine"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -14818,8 +13519,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -14836,7 +13536,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/north,
@@ -14846,9 +13545,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/controlroom)
@@ -14865,7 +13562,6 @@
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
"aJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/engine/controlroom)
@@ -14876,7 +13572,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Access";
@@ -14886,16 +13581,17 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aJX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/engine/controlroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
"aJY" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -14904,7 +13600,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/controlroom)
"aJZ" = (
@@ -14920,6 +13615,8 @@
req_one_access_txt = "24"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aKa" = (
@@ -14928,7 +13625,7 @@
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aKb" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -14945,8 +13642,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aKd" = (
/obj/structure/cable{
d1 = 4;
@@ -14954,11 +13654,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aKe" = (
/obj/structure/cable{
d1 = 4;
@@ -14966,12 +13666,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aKf" = (
/obj/structure/cable{
d1 = 4;
@@ -14979,15 +13681,18 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aKg" = (
/obj/structure/cable{
d1 = 1;
@@ -15001,18 +13706,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aKh" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -15024,6 +13729,7 @@
/obj/structure/table/wood,
/obj/item/folder,
/obj/item/pen,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -15051,16 +13757,12 @@
},
/area/crew_quarters/sleep)
"aKm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -15069,7 +13771,9 @@
"aKn" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/crew_quarters/bar)
"aKo" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -15077,11 +13781,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "solar_tool_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "32"
},
/obj/structure/cable{
@@ -15097,8 +13799,7 @@
/obj/item/gun/projectile/revolver/doublebarrel,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKq" = (
@@ -15110,33 +13811,24 @@
/obj/machinery/camera{
c_tag = "Bar";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKs" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aKt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Fore Hallway North";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -15144,39 +13836,35 @@
},
/area/hallway/primary/fore)
"aKu" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"aKv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 1;
on = 1
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aKw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -15184,7 +13872,6 @@
},
/area/hallway/primary/fore)
"aKx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
@@ -15195,10 +13882,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -15212,100 +13896,60 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aKA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
-"aKB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/computer/security,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/checkpoint/supply)
-"aKC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/supply)
-"aKD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/checkpoint/supply)
-"aKE" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
-"aKF" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/quartermaster/storage)
-"aKG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research)
+"aKB" = (
+/obj/structure/chair,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
/area/quartermaster/storage)
-"aKH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+"aKC" = (
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
+"aKD" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
dir = 4;
- initialize_directions = 11;
- level = 1
+ icon_state = "yellow"
+ },
+/area/quartermaster/storage)
+"aKE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Supply Break Room";
+ req_access_txt = "31"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"aKF" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"aKG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15326,7 +13970,6 @@
/area/quartermaster/storage)
"aKL" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
@@ -15337,16 +13980,18 @@
},
/area/quartermaster/storage)
"aKR" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/glowshroom,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aKS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/reagent_containers/glass/bucket,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/computer/library/public,
+/obj/structure/table,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aKS" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aKT" = (
/obj/structure/cable{
d1 = 1;
@@ -15355,30 +14000,36 @@
tag = ""
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 2;
+ d1 = 1;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aKU" = (
+/obj/machinery/door/airlock/glass{
+ name = "Garden"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
+"aKU" = (
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aKV" = (
-/obj/machinery/hydroponics/constructable,
-/obj/item/seeds/ambrosia,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
"aKW" = (
/turf/simulated/wall,
/area/security/execution)
@@ -15400,8 +14051,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
@@ -15409,15 +14059,24 @@
"aKZ" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"aLa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/maintenance/auxsolarport)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
"aLb" = (
/obj/structure/rack,
/obj/item/storage/toolbox/emergency,
@@ -15431,7 +14090,6 @@
"aLc" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -15478,9 +14136,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Mix to Turbine";
- on = 0
+ name = "Mix to Turbine"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15494,10 +14150,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -15520,23 +14172,19 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/maintenance/incinerator)
"aLk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -15557,8 +14205,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -15579,10 +14226,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Turbine Generator Access";
@@ -15598,10 +14241,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -15611,11 +14250,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -15627,45 +14261,21 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aLr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/sign/electricshock{
pixel_y = -32
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
- locked = 0;
name = "Fore Port Solar Access";
req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/maintenance/auxsolarport)
"aLs" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
-"aLt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"aLu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -15676,10 +14286,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -15705,44 +14311,32 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLy" = (
/obj/structure/closet,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLz" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"aLB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/spawner/random_spawners/grille_maybe,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLD" = (
/obj/structure/cable{
d1 = 1;
@@ -15750,19 +14344,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLE" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -15772,65 +14365,55 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/sleep)
"aLG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/sleep)
"aLH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/sleep)
"aLI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/sleep)
"aLJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"aLK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -15841,26 +14424,22 @@
/obj/machinery/disposal,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLM" = (
/obj/machinery/chem_master/condimaster,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLN" = (
@@ -15876,8 +14455,7 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLO" = (
@@ -15885,8 +14463,7 @@
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLP" = (
@@ -15895,8 +14472,7 @@
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar)
"aLQ" = (
@@ -15916,12 +14492,6 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/maintenance/auxsolarport)
-"aLR" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
"aLS" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
@@ -15930,7 +14500,7 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aLT" = (
/obj/item/wrench,
/obj/structure/lattice/catwalk,
@@ -15965,22 +14535,28 @@
},
/area/quartermaster/office)
"aLX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/office)
+/area/quartermaster/storage)
"aLY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -15993,10 +14569,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -16014,189 +14589,157 @@
},
/area/quartermaster/office)
"aMb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
-"aMc" = (
-/obj/machinery/computer/supplycomp,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
-/area/security/checkpoint/supply)
-"aMd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"aMc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/quartermaster/storage)
+"aMd" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aMe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aMf" = (
/obj/structure/closet/crate/internals,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aMg" = (
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ dir = 5;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
-"aMh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
+/area/crew_quarters/bar)
"aMi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
+/area/crew_quarters/bar)
"aMj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
+/area/crew_quarters/bar)
"aMk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
+/area/crew_quarters/bar)
"aMl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 5;
+ icon_state = "dark"
},
-/area/quartermaster/storage)
+/area/crew_quarters/bar)
+"aMp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
"aMq" = (
-/turf/simulated/wall,
-/area/security/prison)
-"aMr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
-"aMs" = (
+/area/security/permabrig)
+"aMu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/airlock/glass{
- name = "Garden"
- },
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aMt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aMu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aMv" = (
/turf/simulated/wall/r_wall,
/area/security/execution)
"aMw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
dir = 4;
- level = 1
+ icon_state = "whitebluecorner"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = null;
- name = "Security Cargo Post";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/supply)
+/area/medical/medbay)
"aMx" = (
/obj/structure/cable{
d2 = 8;
@@ -16204,16 +14747,18 @@
},
/obj/machinery/power/terminal,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/maintenance/incinerator)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
"aMA" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister,
@@ -16227,8 +14772,7 @@
/area/maintenance/incinerator)
"aMB" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
@@ -16239,12 +14783,12 @@
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
"aMD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
+/obj/structure/dresser,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/incinerator)
+/area/crew_quarters/sleep)
"aME" = (
/obj/structure/cable{
d1 = 1;
@@ -16252,6 +14796,9 @@
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -16265,8 +14812,7 @@
"aMG" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Port to Turbine";
- on = 0
+ name = "Port to Turbine"
},
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
@@ -16284,13 +14830,10 @@
/turf/simulated/floor/plasteel,
/area/maintenance/incinerator)
"aMJ" = (
-/obj/structure/sign/vacuum{
- pixel_y = 0
- },
+/obj/structure/sign/vacuum,
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"aMK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -16303,19 +14846,15 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMN" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMO" = (
@@ -16326,7 +14865,6 @@
},
/area/maintenance/incinerator)
"aMP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -16338,19 +14876,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -16385,9 +14916,7 @@
icon_state = "0-8"
},
/obj/machinery/light/small,
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/turf/simulated/floor/greengrid,
/area/engine/controlroom)
"aMU" = (
@@ -16395,16 +14924,12 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/power/smes{
- charge = 0
- },
+/obj/machinery/power/smes,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/turf/simulated/floor/plasteel{
@@ -16420,9 +14945,14 @@
/turf/simulated/wall,
/area/maintenance/gambling_den)
"aMX" = (
+/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "dark"
+ },
+/area/crew_quarters/bar)
"aMY" = (
/turf/simulated/wall/rust,
/area/maintenance/gambling_den)
@@ -16434,12 +14964,11 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aNa" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -16448,17 +14977,16 @@
},
/area/crew_quarters/sleep)
"aNb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/sleep)
+/area/quartermaster/storage)
"aNc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/structure/closet/wardrobe/mixed,
/turf/simulated/floor/plasteel{
@@ -16466,48 +14994,36 @@
},
/area/crew_quarters/sleep)
"aNd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/sleep)
"aNe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/sleep)
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"aNf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aNg" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -16517,36 +15033,28 @@
/area/crew_quarters/sleep)
"aNh" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
-"aNi" = (
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aNj" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aNk" = (
/obj/machinery/conveyor_switch/oneway{
id = "QMLoad"
@@ -16569,13 +15077,6 @@
icon_state = "neutralfull"
},
/area/quartermaster/office)
-"aNn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
"aNo" = (
/obj/structure/cable{
d1 = 1;
@@ -16583,16 +15084,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
/area/quartermaster/office)
"aNp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow,
/obj/effect/decal/warning_stripes/yellow/partial,
@@ -16609,108 +15106,86 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
-/obj/machinery/door_timer{
- id = "Cargo Cell";
- name = "Cargo Cell Timer";
- pixel_x = -32;
- pixel_y = -32
+/obj/structure/chair{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aNr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aNs" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/camera{
- c_tag = "Medbay Storage";
- dir = 8;
- network = list("SS13")
+ c_tag = "Cargo Break Room";
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aNt" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "redcorner"
+ icon_state = "browncorner"
},
/area/quartermaster/storage)
"aNu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aNv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "Cargo Cell";
- name = "Cargo Cell Door";
- req_access_txt = "63"
+/obj/machinery/door/airlock/mining/glass{
+ name = "Supply Break Room";
+ req_access_txt = "31"
},
/turf/simulated/floor/plasteel,
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aNw" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow,
@@ -16734,47 +15209,45 @@
},
/area/quartermaster/office)
"aNy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/conveyor_switch/oneway{
id = "cargodisposals";
name = "Trash Filter Switch"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
-"aNC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/item/soap/nanotrasen,
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
"aND" = (
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/storage/fancy/crayons,
-/obj/item/storage/fancy/crayons,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aNE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/table,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
+"aNE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aNF" = (
/obj/structure/cable{
d1 = 4;
@@ -16782,18 +15255,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aNG" = (
/obj/structure/cable{
d1 = 4;
@@ -16801,26 +15274,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/status_display{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aNH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aNI" = (
/obj/structure/cable{
d1 = 1;
@@ -16840,8 +15302,10 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNJ" = (
/obj/structure/cable{
d1 = 4;
@@ -16849,39 +15313,45 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aNK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aNK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/prison)
-"aNL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/light/small{
- dir = 1
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"aNL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/structure/table,
-/obj/item/paper_bin,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNM" = (
/obj/structure/cable{
d1 = 4;
@@ -16889,37 +15359,45 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/sign/electricshock{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/toy/figure/syndie,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aNN" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNO" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aNP" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
+/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aNQ" = (
/obj/machinery/light/small{
dir = 8
@@ -16945,8 +15423,7 @@
/area/security/execution)
"aNS" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -16958,9 +15435,8 @@
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"aNU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/engine,
/area/maintenance/incinerator)
@@ -16972,9 +15448,7 @@
/area/maintenance/incinerator)
"aNW" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 4;
- name = "gas pump";
- on = 0
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
@@ -16996,12 +15470,16 @@
/turf/simulated/floor/engine,
/area/maintenance/incinerator)
"aNX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/maintenance/incinerator)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/sleep)
"aNY" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
@@ -17016,10 +15494,10 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/computer/sm_monitor,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aOa" = (
@@ -17034,11 +15512,15 @@
/turf/simulated/floor/plating,
/area/atmos)
"aOc" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/chair/stool/bar,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/atmos)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aOd" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17048,7 +15530,6 @@
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -17061,9 +15542,17 @@
/turf/simulated/floor/plating,
/area/atmos)
"aOf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/obj/machinery/conveyor{
+ id = "cargodisposals"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
"aOg" = (
/turf/simulated/wall/r_wall,
/area/atmos)
@@ -17076,13 +15565,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"aOi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/atmos)
@@ -17096,7 +15582,6 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"aOk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/fire,
/turf/simulated/wall/r_wall,
/area/atmos)
@@ -17117,10 +15602,11 @@
req_one_access_txt = "24"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/atmos)
"aOn" = (
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17162,11 +15648,9 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood{
@@ -17188,44 +15672,28 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aOw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/theatre)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
"aOx" = (
/turf/simulated/wall,
/area/crew_quarters/theatre)
-"aOy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"aOz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"aOA" = (
/obj/structure/table/wood,
/obj/item/camera_film,
/obj/item/camera_film,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aOB" = (
@@ -17243,16 +15711,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Theatre";
- dir = 2;
- network = list("SS13")
+ c_tag = "Theatre"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -17279,28 +15744,22 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aOG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aOH" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aOI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -17326,9 +15785,10 @@
},
/area/quartermaster/office)
"aOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -17346,13 +15806,11 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aOO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aOP" = (
/obj/structure/cable{
d1 = 1;
@@ -17360,49 +15818,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "Cargo Cell";
- name = "Cargo Cell";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/checkpoint/supply)
-"aOQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aOR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/storage)
+"aOQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
+"aOR" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"aOS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -17411,20 +15843,6 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/toilet{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
"aOU" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 5
@@ -17432,13 +15850,6 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"aOV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/prison)
"aOW" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -17448,24 +15859,16 @@
/area/space/nearstation)
"aOX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"aOY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aOZ" = (
/obj/structure/cable{
d1 = 1;
@@ -17473,65 +15876,48 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/paper,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aPc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aPd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aPe" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aPf" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aPg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/sparker{
pixel_x = -18
},
@@ -17541,15 +15927,21 @@
},
/area/security/execution)
"aPh" = (
-/obj/structure/chair,
+/obj/structure/chair/e_chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/security/execution)
"aPi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/flasher{
id = "Execution";
@@ -17624,7 +16016,6 @@
autoclose = 0;
frequency = 1449;
heat_proof = 1;
- icon_state = "door_locked";
id_tag = "gas_turbine_exterior";
locked = 1;
name = "Turbine Exterior Airlock";
@@ -17639,10 +16030,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/engine,
/area/maintenance/incinerator)
"aPq" = (
@@ -17652,12 +16039,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
heat_proof = 1;
- icon_state = "door_locked";
id_tag = "gas_turbine_interior";
locked = 1;
name = "Turbine Interior Airlock";
@@ -17672,10 +16057,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -17688,10 +16069,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -17699,16 +16076,12 @@
},
/area/maintenance/incinerator)
"aPt" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/binary/valve,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
@@ -17717,39 +16090,28 @@
},
/area/maintenance/incinerator)
"aPu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/atmos)
-"aPv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ icon_state = "redyellowfull"
},
-/area/atmos)
+/area/crew_quarters/bar)
+"aPv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"aPw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/effect/landmark/start{
+ name = "Clown"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ icon_state = "redbluefull"
},
-/area/atmos)
+/area/crew_quarters/theatre)
"aPx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -17757,10 +16119,6 @@
},
/area/atmos)
"aPy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -17775,9 +16133,6 @@
},
/area/atmos)
"aPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/item/radio/intercom{
pixel_y = 22
},
@@ -17787,19 +16142,16 @@
},
/area/atmos)
"aPA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
"aPB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
@@ -17808,9 +16160,6 @@
},
/area/maintenance/incinerator)
"aPC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = 32
},
@@ -17823,16 +16172,13 @@
},
/area/atmos)
"aPD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "dark"
+ icon_state = "brown"
},
-/area/atmos)
+/area/quartermaster/storage)
"aPE" = (
/obj/machinery/camera{
c_tag = "Supermatter Entrance";
@@ -17843,11 +16189,12 @@
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aPF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
/area/atmos)
"aPG" = (
/obj/machinery/light{
@@ -17897,8 +16244,8 @@
},
/area/maintenance/gambling_den)
"aPM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/wood{
broken = 1;
@@ -17912,11 +16259,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -17933,15 +16275,13 @@
},
/area/maintenance/gambling_den)
"aPP" = (
-/obj/structure/dresser,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
+/obj/structure/closet/secure_closet/clown,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17954,9 +16294,7 @@
},
/obj/item/storage/fancy/crayons,
/obj/machinery/camera{
- c_tag = "Theatre Backstage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Theatre Backstage"
},
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
@@ -17973,7 +16311,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/vending/autodrobe,
@@ -17984,7 +16321,7 @@
"aPS" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/clown,
+/obj/item/toy/figure/crew/clown,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17992,8 +16329,7 @@
"aPT" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/item/radio/intercom{
pixel_y = 28
@@ -18008,18 +16344,17 @@
/obj/item/instrument/guitar,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aPV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
-/area/crew_quarters/bar/atrium)
+/area/maintenance/gambling_den)
"aPW" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/bar/atrium)
@@ -18030,6 +16365,7 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet,
/area/crew_quarters/bar/atrium)
"aPY" = (
@@ -18045,24 +16381,16 @@
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aQa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQb" = (
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQc" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/condiment/saltshaker{
@@ -18070,17 +16398,19 @@
pixel_y = 7
},
/obj/item/reagent_containers/food/condiment/peppermill,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQd" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/cans/cola,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQe" = (
/obj/structure/cable{
d2 = 4;
@@ -18090,8 +16420,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -18113,6 +16442,9 @@
/obj/effect/landmark/start{
name = "Cargo Technician"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -18132,10 +16464,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -18147,13 +16478,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -18165,34 +16489,27 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aQj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/door/airlock/medical{
+ name = "Psych Office";
+ req_access_txt = "64"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
+/area/medical/psych)
"aQk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/closet/secure_closet/brig{
- id = "Cargo Cell"
- },
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aQl" = (
/obj/structure/cable{
d1 = 1;
@@ -18200,26 +16517,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aQm" = (
-/obj/structure/chair{
- dir = 8
- },
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aQn" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/dirt,
@@ -18230,24 +16539,10 @@
},
/area/quartermaster/storage)
"aQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/brigdoor/southright{
- dir = 8;
- name = "Security Desk";
- req_access_txt = "63"
- },
-/obj/machinery/door/window/northright{
- dir = 4;
- name = "Security Desk"
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/supply)
+/obj/structure/table/wood,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/wood,
+/area/medical/psych)
"aQp" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
@@ -18262,13 +16557,16 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/quartermaster/storage)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/maintenance/gambling_den)
"aQr" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
@@ -18280,8 +16578,7 @@
/area/quartermaster/storage)
"aQs" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/conveyor/northeast/ccw{
id = "QMLoad"
@@ -18290,14 +16587,13 @@
/area/quartermaster/storage)
"aQt" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
@@ -18305,7 +16601,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/southwestcorner,
@@ -18313,64 +16608,43 @@
/area/quartermaster/storage)
"aQv" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aQw" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"aQx" = (
-/obj/structure/table,
-/obj/item/book/manual/chef_recipes,
-/obj/item/storage/box/donkpockets,
-/obj/item/clothing/head/chefhat,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQz" = (
+/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
-"aQA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/area/maintenance/gambling_den)
+"aQx" = (
+/obj/structure/table,
+/obj/item/book/manual/chef_recipes,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/area/security/permabrig)
+"aQy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aQB" = (
/obj/structure/table,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQC" = (
/obj/structure/cable{
d1 = 1;
@@ -18381,45 +16655,34 @@
/obj/structure/table,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aQD" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
-"aQE" = (
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aQF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQG" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQH" = (
-/obj/machinery/vending/coffee,
+/obj/machinery/computer/cryopod{
+ pixel_y = -32
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aQI" = (
-/obj/machinery/vending/sustenance,
+/obj/machinery/cryopod,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aQJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
/area/security/execution)
"aQK" = (
/obj/machinery/atmospherics/unary/outlet_injector/on,
-/turf/simulated/floor/plasteel{
- icon_state = "vault"
- },
-/area/security/execution)
-"aQL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "vault"
@@ -18442,9 +16705,7 @@
/area/maintenance/incinerator)
"aQO" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "gas pump";
- on = 0
+ dir = 8
},
/obj/machinery/light/small,
/turf/simulated/floor/engine,
@@ -18490,17 +16751,16 @@
},
/area/maintenance/incinerator)
"aQQ" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/table/reinforced,
-/obj/structure/disposalpipe/segment,
/obj/item/clipboard,
/obj/item/folder/yellow,
/obj/item/reagent_containers/food/pill/patch/silver_sulf,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/maintenance/incinerator)
@@ -18520,15 +16780,19 @@
},
/area/maintenance/incinerator)
"aQS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
+ icon_state = "grimy"
},
-/area/atmos)
+/area/crew_quarters/bar/atrium)
"aQT" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -18537,9 +16801,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
@@ -18551,9 +16812,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/dispenser,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -18564,9 +16822,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/computer/atmoscontrol,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -18577,9 +16832,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
@@ -18592,9 +16844,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/wrench,
/obj/item/crowbar,
/obj/item/clothing/mask/gas,
@@ -18612,9 +16861,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/obj/item/tank/internals/emergency_oxygen,
/obj/item/tank/internals/emergency_oxygen,
@@ -18634,17 +16881,13 @@
/area/atmos)
"aRa" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/closet/wardrobe/atmospherics_yellow,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aRb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
dir = 8
@@ -18662,9 +16905,6 @@
},
/area/atmos)
"aRc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
dir = 4
@@ -18680,23 +16920,31 @@
},
/area/atmos)
"aRd" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 5;
+ icon_state = "dark"
},
-/area/atmos)
+/area/crew_quarters/bar)
"aRe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aRf" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
@@ -18759,6 +17007,7 @@
"aRk" = (
/obj/structure/table/wood,
/obj/item/storage/briefcase,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -18782,8 +17031,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -18808,6 +17057,7 @@
/obj/effect/landmark/start{
name = "Clown"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -18819,22 +17069,28 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
/area/crew_quarters/theatre)
"aRs" = (
-/obj/structure/plasticflaps,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/theatre)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aRt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"aRu" = (
/obj/structure/cable{
@@ -18849,28 +17105,19 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- name = "Theatre Junction";
- sortType = 14
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aRv" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 4
},
@@ -18884,16 +17131,21 @@
/obj/item/camera,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aRx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/bar/atrium)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aRy" = (
/obj/structure/chair/wood,
/turf/simulated/floor/carpet,
@@ -18912,73 +17164,32 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aRC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/cheesiehonkers,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aRD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aRE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
-"aRF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
-"aRG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aRH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/arrow,
/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel{
@@ -18986,43 +17197,9 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aRJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
"aRK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -19046,8 +17223,7 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -19059,7 +17235,6 @@
/obj/item/folder/yellow,
/obj/item/destTagger,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
@@ -19071,18 +17246,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"aRO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -19097,11 +17270,13 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aRQ" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aRR" = (
/obj/structure/cable{
d1 = 1;
@@ -19109,45 +17284,36 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
+ dir = 7;
+ icon_state = "yellow"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aRS" = (
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/quartermaster/storage)
+"aRT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/chair{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 1;
+ icon_state = "white"
},
-/area/security/checkpoint/supply)
-"aRT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
+/area/medical/medbay)
"aRU" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -19163,26 +17329,25 @@
},
/area/quartermaster/storage)
"aRW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/quartermaster/storage)
-"aRX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "brown"
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"aRX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/quartermaster/storage)
"aRY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
@@ -19190,9 +17355,7 @@
},
/area/quartermaster/storage)
"aRZ" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 0
- },
+/obj/machinery/status_display/supply_display,
/turf/simulated/wall,
/area/quartermaster/qm)
"aSa" = (
@@ -19203,48 +17366,33 @@
/turf/simulated/wall,
/area/quartermaster/qm)
"aSc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
"aSd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
"aSe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aSf" = (
-/obj/structure/lattice,
-/turf/space,
-/area/quartermaster/qm)
-"aSg" = (
-/turf/space,
-/area/quartermaster/qm)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
"aSh" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -19253,7 +17401,7 @@
dir = 9;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aSi" = (
/obj/structure/table/glass,
/obj/item/folder/blue,
@@ -19262,11 +17410,14 @@
dir = 1;
on = 1
},
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aSj" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -19275,39 +17426,26 @@
dir = 5;
icon_state = "whitered"
},
-/area/security/prison)
-"aSk" = (
-/obj/structure/table,
-/obj/machinery/kitchen_machine/microwave,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSm" = (
/obj/machinery/light/small,
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aSn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/ai_status_display{
+ pixel_y = -32
},
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"aSn" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"aSo" = (
-/obj/machinery/camera{
- c_tag = "Perma-Brig General Population";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSp" = (
/obj/structure/cable{
d1 = 1;
@@ -19315,9 +17453,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aSq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/southwest,
@@ -19326,19 +17465,21 @@
"aSr" = (
/obj/machinery/light/small,
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSs" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aSt" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/security/execution)
"aSu" = (
@@ -19352,19 +17493,12 @@
name = "Justice Chamber";
req_access_txt = "3"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
-"aSv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/security/execution)
"aSw" = (
/obj/machinery/conveyor/east{
id = "QMLoad"
@@ -19387,16 +17521,15 @@
/turf/simulated/floor/engine,
/area/maintenance/incinerator)
"aSz" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/incinerator)
"aSA" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -19409,8 +17542,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/suit/storage/hazardvest,
@@ -19422,24 +17554,21 @@
/area/atmos)
"aSC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSD" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/effect/decal/warning_stripes/north,
@@ -19447,22 +17576,26 @@
/area/atmos)
"aSF" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+/obj/structure/chair/office/dark{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/storage)
"aSH" = (
/obj/structure/cable{
d1 = 1;
@@ -19471,33 +17604,35 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/atmos)
"aSJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/atmos)
"aSK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -19507,8 +17642,7 @@
"aSL" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -19535,7 +17669,9 @@
},
/area/maintenance/gambling_den)
"aSQ" = (
-/obj/machinery/atmospherics/unary/vent_pump,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
@@ -19548,7 +17684,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -19560,19 +17701,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/theatre)
+/area/maintenance/fore)
"aST" = (
/obj/structure/cable{
d1 = 4;
@@ -19580,19 +17719,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSU" = (
/obj/structure/cable{
@@ -19601,39 +17734,33 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSW" = (
/obj/structure/cable{
@@ -19647,14 +17774,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSX" = (
/obj/structure/cable{
@@ -19663,51 +17789,58 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/theatre)
+"aSY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
- },
-/area/crew_quarters/theatre)
-"aSY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "46"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"aTa" = (
+/obj/structure/disposalpipe/junction,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -19730,9 +17863,11 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"aTb" = (
/obj/machinery/hologram/holopad,
@@ -19741,7 +17876,7 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTc" = (
/obj/structure/cable{
d1 = 4;
@@ -19749,16 +17884,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/sleep)
"aTd" = (
/obj/structure/cable{
d1 = 4;
@@ -19766,14 +17897,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aTe" = (
@@ -19783,16 +17909,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/bar/atrium)
"aTf" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/bar/atrium)
"aTg" = (
@@ -19804,20 +17932,27 @@
/obj/structure/chair/wood{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/bar/atrium)
"aTh" = (
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aTi" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Arrivals North";
@@ -19827,13 +17962,19 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aTj" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of a meteor and a spaceman. The spaceman is laughing. The meteor is exploding.";
dir = 4;
@@ -19842,20 +17983,16 @@
},
/area/hallway/primary/fore)
"aTk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aTl" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/quartermaster/office)
+/area/maintenance/fore)
"aTm" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -19868,45 +18005,26 @@
dir = 4
},
/turf/simulated/wall,
-/area/security/checkpoint/supply)
-"aTo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aTp" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aTq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/security/checkpoint/supply)
+/area/quartermaster/storage)
"aTr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "dark"
- },
-/area/atmos)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar/atrium)
"aTs" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal{
@@ -19921,6 +18039,8 @@
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -19928,14 +18048,7 @@
/area/quartermaster/storage)
"aTu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aTv" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/donkpockets,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -19943,7 +18056,6 @@
/area/quartermaster/storage)
"aTw" = (
/obj/structure/table/reinforced,
-/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -19951,16 +18063,17 @@
/area/quartermaster/storage)
"aTx" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/storage)
+/area/quartermaster/office)
"aTy" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
@@ -19971,7 +18084,7 @@
"aTz" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/qm,
+/obj/item/toy/figure/crew/qm,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -19990,13 +18103,9 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -20005,18 +18114,13 @@
},
/area/quartermaster/qm)
"aTC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
/area/quartermaster/qm)
"aTD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -20024,15 +18128,13 @@
/area/quartermaster/qm)
"aTE" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -20049,12 +18151,12 @@
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aTG" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/security/prison)
+/area/security/permabrig)
"aTH" = (
/obj/structure/bed,
/obj/item/clothing/suit/straight_jacket,
@@ -20064,7 +18166,7 @@
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aTI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
@@ -20072,8 +18174,12 @@
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell1lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTJ" = (
/obj/structure/cable{
d1 = 1;
@@ -20085,24 +18191,28 @@
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell2lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass{
name = "Prison"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "cell3lockdown"
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aTL" = (
/obj/machinery/status_display{
pixel_y = 32
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/table/reinforced,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -20129,16 +18239,17 @@
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/restraints/handcuffs,
-/obj/item/taperecorder,
/obj/machinery/camera{
c_tag = "Prisoner Re-education Centre";
network = list("SS13","Security")
},
/obj/machinery/flasher_button{
id = "Execution";
- pixel_x = 0;
pixel_y = 27
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20157,10 +18268,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20173,11 +18285,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkred"
@@ -20195,11 +18307,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/closet/secure_closet/injection,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "darkred"
@@ -20232,14 +18343,14 @@
},
/area/security/execution)
"aTS" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
/turf/space,
/area/space/nearstation)
"aTT" = (
@@ -20250,28 +18361,28 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "dark"
},
/area/atmos)
"aTU" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
/turf/space,
/area/space/nearstation)
"aTV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aTW" = (
@@ -20296,16 +18407,14 @@
/area/atmos)
"aTY" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"aTZ" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20314,13 +18423,17 @@
/area/atmos)
"aUa" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port to Turbine";
- on = 0
+ name = "Port to Turbine"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20329,13 +18442,17 @@
/area/atmos)
"aUb" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20343,10 +18460,14 @@
},
/area/atmos)
"aUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20361,19 +18482,24 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"aUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20382,8 +18508,7 @@
/area/atmos)
"aUf" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/machinery/meter,
/obj/effect/decal/warning_stripes/east,
@@ -20399,7 +18524,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "Air to Pure";
- on = 0;
target_pressure = 101
},
/turf/simulated/floor/plasteel{
@@ -20417,26 +18541,22 @@
"aUi" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aUk" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -20445,14 +18565,12 @@
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- frequency = 1441;
+ frequency = 1443;
+ icon_state = "in";
id_tag = "air_out";
internal_pressure_bound = 2000;
- internal_pressure_bound_default = 2000;
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/air,
@@ -20468,11 +18586,14 @@
/turf/simulated/floor/engine/air,
/area/atmos)
"aUo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aUp" = (
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -20483,25 +18604,12 @@
icon_state = "wood-broken"
},
/area/maintenance/gambling_den)
-"aUr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/structure/chair/stool,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
"aUs" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
@@ -20514,10 +18622,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"aUu" = (
@@ -20527,10 +18631,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -20548,52 +18648,40 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aUw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/wall,
-/area/crew_quarters/theatre)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aUx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/mirror{
pixel_x = -26;
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aUy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Mime"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aUz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -20602,75 +18690,77 @@
dir = 1
},
/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aUB" = (
+/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/theatre)
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
"aUC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/effect/decal/warning_stripes/arrow,
/obj/effect/decal/warning_stripes/yellow/partial,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"aUD" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aUE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/turf/simulated/wall,
-/area/crew_quarters/bar/atrium)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/quartermaster/office)
"aUF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/lipstick/random,
/obj/item/lipstick/random,
/obj/item/lipstick/random,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aUG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/crew_quarters/bar/atrium)
+/area/quartermaster/storage)
"aUH" = (
/obj/structure/chair/wood{
dir = 1
@@ -20682,31 +18772,25 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aUJ" = (
/obj/structure/table/wood,
/obj/item/paicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
-"aUK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aUL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aUM" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -20722,8 +18806,7 @@
/obj/item/paper_bin,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = -27;
- pixel_y = 0
+ pixel_x = -27
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -20731,9 +18814,6 @@
},
/area/quartermaster/office)
"aUO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/multitool,
@@ -20751,23 +18831,27 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
/area/quartermaster/office)
"aUQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/quartermaster/office)
+/area/atmos)
"aUR" = (
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -20781,17 +18865,16 @@
"aUS" = (
/obj/structure/table,
/obj/machinery/camera{
- c_tag = "Medbay Lobby East";
- network = list("SS13")
+ c_tag = "Medbay Lobby East"
},
/obj/machinery/requests_console{
department = "Cargo Bay";
departmentType = 2;
name = "Cargo Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/item/storage/firstaid/regular,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -20806,7 +18889,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/item/paper_bin,
@@ -20835,13 +18917,11 @@
/area/quartermaster/office)
"aUW" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -20859,8 +18939,7 @@
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20896,53 +18975,24 @@
},
/area/quartermaster/storage)
"aVb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "brown"
},
-/area/quartermaster/storage)
+/area/quartermaster/office)
"aVc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aVd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aVe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
},
+/turf/simulated/wall,
/area/quartermaster/qm)
"aVf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20959,9 +19009,6 @@
/obj/structure/chair/office/dark{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -20970,18 +19017,7 @@
"aVh" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/qm)
-"aVi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -20995,21 +19031,27 @@
},
/area/quartermaster/qm)
"aVk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aVl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aVm" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -21020,18 +19062,21 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aVo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/light/small{
dir = 1
@@ -21042,7 +19087,7 @@
},
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVp" = (
/obj/structure/cable{
d1 = 1;
@@ -21051,14 +19096,17 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aVq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/light/small{
dir = 1
@@ -21072,7 +19120,7 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVr" = (
/obj/structure/bed,
/obj/item/bedsheet/brown,
@@ -21084,14 +19132,16 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/light/small{
@@ -21107,19 +19157,19 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aVu" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
-/obj/item/radio/electropack,
-/obj/item/assembly/signaler,
-/obj/item/clothing/head/helmet,
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
+ },
+/obj/item/storage/box/bodybags,
+/obj/item/assembly/signaler{
+ code = 6;
+ frequency = 1445
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21137,24 +19187,17 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
"aVw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/execution)
"aVx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -21187,13 +19230,11 @@
/area/security/execution)
"aVA" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21205,11 +19246,9 @@
"aVB" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "perma_outer";
locked = 1;
name = "Perma Brig External Access";
- req_access = null;
req_access_txt = "63"
},
/obj/structure/sign/securearea{
@@ -21217,7 +19256,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aVC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/light/small{
@@ -21240,16 +19279,14 @@
"aVE" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"aVF" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21259,8 +19296,7 @@
"aVG" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21269,8 +19305,7 @@
/area/atmos)
"aVH" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
@@ -21280,18 +19315,15 @@
/area/atmos)
"aVI" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"aVJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
@@ -21303,31 +19335,21 @@
network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"aVK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "caution"
- },
-/area/atmos)
+/obj/effect/spawner/random_spawners/wall_rusted_maybe,
+/turf/simulated/wall,
+/area/maintenance/fore)
"aVL" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -21338,11 +19360,9 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -21353,11 +19373,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21371,8 +19391,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21382,8 +19401,7 @@
"aVP" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -21396,25 +19414,16 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aVR" = (
-/obj/structure/grille,
-/obj/structure/window/plasmareinforced,
-/obj/structure/window/plasmareinforced{
- dir = 4
- },
-/obj/structure/window/plasmareinforced{
- dir = 1
- },
-/obj/structure/window/plasmareinforced{
- dir = 8
- },
+/obj/effect/spawner/window/reinforced/plasma,
/turf/simulated/floor/plating,
/area/atmos)
"aVS" = (
/obj/machinery/air_sensor{
- frequency = 1441;
- id_tag = "air_sensor"
+ frequency = 1443;
+ id_tag = "air_sensor";
+ output = 7
},
/turf/simulated/floor/engine/air,
/area/atmos)
@@ -21440,38 +19449,22 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"aVX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/obj/structure/ore_box,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
"aVY" = (
-/obj/structure/table/wood,
/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
pixel_y = -32
},
-/obj/item/lipstick/random{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/item/lipstick/random{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/lipstick/random{
- pixel_x = -1;
- pixel_y = 1
- },
/obj/machinery/requests_console{
department = "Clown & Mime Office";
departmentType = 2;
name = "Clown and Mime Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
+/obj/structure/closet/secure_closet/mime,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -21479,7 +19472,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/baguette,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
@@ -21487,38 +19479,47 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/vending/autodrobe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aWb" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/mime,
+/obj/item/toy/figure/crew/mime,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aWc" = (
-/obj/structure/dresser,
+/obj/structure/table/wood,
+/obj/item/lipstick/random{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/lipstick/random{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/lipstick/random{
+ pixel_x = -1;
+ pixel_y = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/theatre)
"aWd" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -21530,86 +19531,84 @@
/obj/item/instrument/violin,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aWf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/bar/atrium)
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
"aWg" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/chips,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aWh" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/cans/dr_gibb,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aWi" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/britcup,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aWj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aWk" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
+ },
+/area/crew_quarters/bar)
+"aWl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/fore)
+"aWm" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "Quartermaster Junction";
- sortType = 13
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
-"aWl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/fore)
-"aWm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/office)
"aWn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21617,10 +19616,6 @@
},
/area/quartermaster/office)
"aWo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/dark{
dir = 1
},
@@ -21638,37 +19633,22 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/office)
"aWq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/quartermaster/office)
+/area/hallway/primary/fore)
"aWr" = (
/obj/structure/cable{
d1 = 4;
@@ -21676,9 +19656,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21696,9 +19673,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21711,9 +19685,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -21736,9 +19707,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
@@ -21751,12 +19719,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21770,11 +19732,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21788,12 +19749,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -21813,12 +19772,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21826,11 +19782,9 @@
},
/area/quartermaster/storage)
"aWB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
@@ -21844,13 +19798,11 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -21859,23 +19811,30 @@
},
/area/quartermaster/storage)
"aWC" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/turf/space,
+/area/space)
"aWD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -21884,13 +19843,19 @@
},
/area/quartermaster/qm)
"aWE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -21899,15 +19864,21 @@
},
/area/quartermaster/qm)
"aWF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -21915,12 +19886,6 @@
},
/area/quartermaster/qm)
"aWG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Arrivals North";
@@ -21930,32 +19895,21 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aWH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/stamp/qm,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/qm)
"aWI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/chair/office/dark{
dir = 8
},
@@ -21978,25 +19932,25 @@
},
/area/quartermaster/qm)
"aWK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/glass,
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aWL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
},
-/area/security/prison)
+/area/security/permabrig)
"aWM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 1";
pixel_x = -22
@@ -22006,19 +19960,15 @@
dir = 8;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aWN" = (
/obj/machinery/newscaster{
pixel_y = -32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aWO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/table,
/obj/item/paper,
/obj/item/pen,
@@ -22026,15 +19976,17 @@
dir = 4;
icon_state = "red"
},
-/area/security/prison)
+/area/security/permabrig)
"aWP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 2";
pixel_x = -22
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aWQ" = (
/obj/structure/cable{
d1 = 1;
@@ -22042,14 +19994,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"aWR" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -22065,7 +20018,6 @@
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -22081,29 +20033,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
"aWU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
@@ -22115,14 +20060,12 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/security/execution)
"aWW" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -22137,8 +20080,7 @@
"aWX" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Justice gas pump";
- on = 0
+ name = "Justice gas pump"
},
/obj/machinery/door/window/westleft,
/turf/simulated/floor/plasteel{
@@ -22165,10 +20107,8 @@
dir = 8
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "perma_airlock";
pixel_x = 25;
- pixel_y = 0;
req_access_txt = "63";
tag_airpump = "perma_pump";
tag_chamber_sensor = "perma_sensor";
@@ -22176,18 +20116,16 @@
tag_interior_door = "perma_inner"
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
frequency = 1331;
id_tag = "perma_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "perma_sensor";
pixel_x = 25;
pixel_y = 8
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aXa" = (
/turf/simulated/floor/engine/co2,
/area/atmos)
@@ -22202,17 +20140,13 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
+ icon_state = "in";
id_tag = "co2_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "co2 vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/co2,
@@ -22220,8 +20154,7 @@
"aXd" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -22231,19 +20164,10 @@
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
/area/maintenance/gambling_den)
-"aXf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/turf/simulated/floor/plating,
-/area/atmos)
"aXg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22260,8 +20184,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "CO2 to Pure";
- on = 0
+ name = "CO2 to Pure"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22307,8 +20230,7 @@
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22323,7 +20245,6 @@
/turf/simulated/wall,
/area/atmos)
"aXp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
@@ -22339,10 +20260,11 @@
/turf/simulated/wall,
/area/atmos)
"aXr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -22363,8 +20285,7 @@
"aXt" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22373,8 +20294,7 @@
/area/atmos)
"aXu" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/effect/decal/warning_stripes/east,
@@ -22386,8 +20306,7 @@
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
@@ -22397,8 +20316,7 @@
/area/atmos)
"aXw" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -22406,10 +20324,13 @@
},
/area/atmos)
"aXx" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 8;
- frequency = 1441;
- id = "air_in"
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ on = 1;
+ volume_rate = 200
},
/turf/simulated/floor/engine/air,
/area/atmos)
@@ -22420,32 +20341,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aXz" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aXA" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22458,11 +20374,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -22471,15 +20382,13 @@
"aXB" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/twohanded/staff/broom,
/obj/item/clothing/head/witchwig,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/bar/atrium)
"aXC" = (
@@ -22509,7 +20418,6 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
@@ -22517,53 +20425,48 @@
},
/area/crew_quarters/bar/atrium)
"aXG" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/crew_quarters/bar/atrium)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
"aXH" = (
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aXI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aXJ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "Cargo Junction";
- sortType = 13
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"aXK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
+"aXK" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -22571,9 +20474,6 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aXL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22581,51 +20481,39 @@
},
/area/quartermaster/office)
"aXM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/office)
"aXN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/office)
-"aXO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
+/area/atmos)
"aXP" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"aXQ" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -22634,122 +20522,39 @@
},
/area/quartermaster/office)
"aXR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aXS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
"aXT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
/area/quartermaster/office)
"aXU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aXV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/quartermaster/storage)
"aXW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aXX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aXY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aXZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aYa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aYb" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/storage)
-"aYc" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/quartermaster/storage)
-"aYd" = (
+/area/atmos)
+"aXX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22757,6 +20562,76 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"aXY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
+"aXZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"aYa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/crew_quarters/kitchen)
+"aYc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"aYd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -22764,25 +20639,25 @@
},
/area/quartermaster/storage)
"aYe" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aYf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
+"aYf" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/quartermaster/qm)
"aYg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -22792,11 +20667,6 @@
/obj/structure/chair/office/dark{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -22816,6 +20686,7 @@
pixel_y = 7
},
/obj/item/gps/mining,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -22834,44 +20705,32 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aYl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitehall"
},
-/area/security/prison)
-"aYm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/prison)
-"aYn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/security/prison)
+/area/security/permabrig)
"aYo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 1";
+ name = "Prison Perma Cell 1";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYp" = (
/obj/structure/cable{
d1 = 1;
@@ -22881,19 +20740,23 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 2";
+ name = "Prison Perma Cell 2";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
- name = "Prison 3";
+ name = "Prison Perma Cell 3";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aYr" = (
/obj/structure/cable{
d1 = 1;
@@ -22903,28 +20766,28 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Prisoner Education Chamber";
- req_access_txt = "2"
+/obj/machinery/door/airlock/security{
+ name = "Execution Room";
+ req_access = null;
+ req_access_txt = "1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/prison)
-"aYs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/security/prison)
+/area/security/execution)
"aYt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
"aYu" = (
/obj/machinery/light/small{
dir = 8
@@ -22986,28 +20849,26 @@
},
/area/atmos)
"aYB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "greenblue"
},
-/area/atmos)
+/area/hydroponics)
"aYC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/atmos)
+/area/crew_quarters/kitchen)
"aYD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/lightreplacer,
@@ -23015,35 +20876,35 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"aYE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/atmos)
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/crew_quarters/kitchen)
"aYF" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light{
dir = 8
},
/obj/machinery/light_switch{
pixel_x = -22
},
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "caution"
},
/area/atmos)
"aYG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -23053,8 +20914,7 @@
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/tank/internals/emergency_oxygen/engi,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -23072,7 +20932,10 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"aYJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -23087,8 +20950,7 @@
/area/atmos)
"aYL" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -23097,7 +20959,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "O2 to Pure";
- on = 0;
target_pressure = 101
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -23111,8 +20972,7 @@
dir = 10
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Atmospherics East";
@@ -23131,7 +20991,7 @@
"aYP" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYQ" = (
/obj/structure/cable{
d1 = 2;
@@ -23143,50 +21003,29 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"aYR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/area/maintenance/fore)
+"aYS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"aYS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- name = "Hydroponics Junction";
- sortType = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYT" = (
/obj/structure/cable{
d1 = 1;
@@ -23210,31 +21049,17 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ name = "Hydroponics Junction";
+ sortType = 21
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"aYU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYV" = (
/obj/structure/cable{
d1 = 4;
@@ -23243,11 +21068,13 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYW" = (
/obj/structure/cable{
d1 = 4;
@@ -23258,8 +21085,11 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/maintenance/fore)
"aYX" = (
/obj/structure/cable{
d1 = 4;
@@ -23268,6 +21098,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -23285,10 +21119,13 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "lightsout"
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -23303,37 +21140,33 @@
/area/crew_quarters/kitchen)
"aZb" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Atrium";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aZc" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aZd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Fore Hallway South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -23341,17 +21174,15 @@
},
/area/hallway/primary/fore)
"aZe" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -23360,8 +21191,14 @@
"aZf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aZg" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -23369,46 +21206,37 @@
},
/area/quartermaster/office)
"aZh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/quartermaster/office)
-"aZi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/crew_quarters/kitchen)
+"aZi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/office)
"aZj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/office)
"aZk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/quartermaster/office)
+/area/crew_quarters/kitchen)
"aZl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/folder,
/turf/simulated/floor/plasteel{
@@ -23420,12 +21248,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"aZn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/atmos)
+"aZn" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
@@ -23441,70 +21275,69 @@
},
/area/quartermaster/storage)
"aZo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
"aZp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
"aZq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
"aZr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/flasher{
id = "Cell 3";
pixel_x = -22
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aZs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
req_access_txt = "31"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/office)
"aZt" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
c_tag = "Cargo Office SouthWest";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -23512,9 +21345,7 @@
},
/area/quartermaster/storage)
"aZu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
@@ -23525,22 +21356,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "purple"
},
/area/quartermaster/storage)
"aZw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/hos)
"aZx" = (
/obj/machinery/photocopier,
/obj/machinery/firealarm{
@@ -23558,7 +21382,6 @@
/obj/structure/table,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -23567,53 +21390,41 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Arrivals North";
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
"aZD" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/bed/dogbed,
/turf/simulated/floor/plasteel{
@@ -23622,34 +21433,39 @@
},
/area/quartermaster/qm)
"aZE" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZG" = (
/obj/machinery/camera{
c_tag = "Perma-Brig Hallway Port";
network = list("SS13","Security")
},
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZH" = (
/obj/structure/cable{
d1 = 1;
@@ -23663,12 +21479,10 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZI" = (
/obj/structure/cable{
d1 = 2;
@@ -23682,11 +21496,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZJ" = (
/obj/structure/cable{
d1 = 4;
@@ -23699,19 +21514,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/greencross{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZK" = (
/obj/structure/cable{
d1 = 4;
@@ -23719,14 +21528,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell1lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
+ },
+/obj/machinery/flasher_button{
+ id = "Cell 1";
+ pixel_y = 25
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZL" = (
/obj/structure/cable{
d1 = 4;
@@ -23734,15 +21550,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZM" = (
/obj/structure/cable{
d1 = 4;
@@ -23751,32 +21565,18 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/flasher_button{
- id = "Cell 1";
- pixel_x = 0;
- pixel_y = 27
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prison)
+/area/hydroponics)
"aZO" = (
/obj/structure/cable{
d1 = 4;
@@ -23790,15 +21590,13 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZP" = (
/obj/structure/cable{
d1 = 4;
@@ -23812,14 +21610,11 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZQ" = (
/obj/structure/cable{
d1 = 4;
@@ -23833,14 +21628,21 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/flasher_button{
+ id = "Cell 2";
+ pixel_y = 25
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell2lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"aZR" = (
/obj/structure/cable{
d1 = 4;
@@ -23854,7 +21656,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -23863,26 +21664,9 @@
network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
-"aZS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aZT" = (
/obj/structure/cable{
d1 = 4;
@@ -23896,46 +21680,26 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 24
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
-"aZU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/prison)
+/area/security/permabrig)
"aZV" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "perma_inner";
locked = 1;
name = "Perma Brig Exterior Access";
- req_access = null;
req_access_txt = "67"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"aZW" = (
/obj/structure/cable{
d1 = 4;
@@ -23954,8 +21718,15 @@
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aZX" = (
/obj/structure/cable{
d1 = 4;
@@ -23965,49 +21736,49 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"aZY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"aZZ" = (
+/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"baa" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"bab" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bac" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bad" = (
/obj/structure/cable{
d1 = 4;
@@ -24017,23 +21788,25 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bae" = (
/turf/simulated/wall/mineral/titanium,
/area/shuttle/pod_3)
"bag" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1441;
- id = "co2_in"
+ icon_state = "on";
+ id = "co2_in";
+ on = 1;
+ pixel_y = 1
},
/turf/simulated/floor/engine/co2,
/area/atmos)
"bah" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/meter,
/turf/simulated/wall/r_wall,
@@ -24045,9 +21818,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
@@ -24058,16 +21828,14 @@
"baj" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plating,
/area/atmos)
"bak" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24126,59 +21894,50 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"baq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/closet/secure_closet/atmos_personal,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/atmos)
"bar" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bas" = (
-/obj/structure/closet/secure_closet/atmos_personal,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bau" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bav" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ icon_state = "neutralfull"
},
+/area/hallway/primary/fore)
+"bas" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bau" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
+"bav" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"baw" = (
/obj/machinery/atmospherics/trinary/mixer{
dir = 1;
@@ -24223,16 +21982,13 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
+ icon_state = "in";
id_tag = "o2_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- name = "oxygen vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/o2,
@@ -24250,28 +22006,44 @@
"baC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"baD" = (
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"baE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/hydroponics)
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"baF" = (
/turf/simulated/wall,
/area/hydroponics)
"baG" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/hydroponics)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"baH" = (
/obj/structure/cable{
d1 = 1;
@@ -24279,41 +22051,44 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
req_access_txt = "35"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/hydroponics)
+/area/maintenance/fore)
"baI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/wall,
/area/hydroponics)
"baJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/wall,
-/area/hydroponics)
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/hos)
"baK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"baL" = (
/obj/structure/cable{
@@ -24322,20 +22097,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"baM" = (
/obj/structure/kitchenspike,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"baN" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -24351,18 +22129,18 @@
req_access_txt = "67"
},
/turf/space,
-/area/space/nearstation)
+/area/space)
"baP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"baQ" = (
/obj/structure/sink/kitchen{
pixel_y = 30
@@ -24372,44 +22150,39 @@
/area/crew_quarters/kitchen)
"baR" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"baS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/security/prison)
+/area/security/permabrig)
"baT" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"baU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24422,7 +22195,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/autolathe,
/obj/machinery/light_switch{
@@ -24439,48 +22212,48 @@
},
/area/quartermaster/office)
"baW" = (
-/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"baX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
icon_state = "brown"
},
/area/quartermaster/office)
"baY" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"baZ" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/cargotech,
+/obj/item/toy/figure/crew/cargotech,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bba" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bbb" = (
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
@@ -24490,15 +22263,13 @@
name = "Cargo Technician"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/office)
"bbd" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stamp/granted{
pixel_x = 3;
@@ -24510,12 +22281,10 @@
},
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -24530,11 +22299,6 @@
/obj/machinery/status_display,
/turf/simulated/wall,
/area/quartermaster/miningdock)
-"bbg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
"bbh" = (
/obj/structure/cable{
d1 = 4;
@@ -24542,15 +22306,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
name = "Quartermaster"
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -24561,6 +22327,9 @@
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
"bbj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24572,18 +22341,15 @@
name = "Quartermaster";
req_access_txt = "41"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"bbk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -24591,6 +22357,12 @@
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -24601,26 +22373,10 @@
/turf/simulated/wall,
/area/quartermaster/qm)
"bbm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
+/area/crew_quarters/heads/hos)
"bbn" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -24632,8 +22388,15 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbo" = (
/obj/structure/cable{
d1 = 4;
@@ -24641,8 +22404,19 @@
icon_state = "4-8";
tag = ""
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbp" = (
/obj/structure/cable{
d1 = 4;
@@ -24650,15 +22424,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbq" = (
/obj/structure/cable{
d1 = 4;
@@ -24667,19 +22441,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbr" = (
/obj/structure/cable{
d1 = 1;
@@ -24693,12 +22469,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbs" = (
/obj/structure/cable{
d1 = 1;
@@ -24706,56 +22487,43 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/prison)
-"bbu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbx" = (
/obj/structure/cable{
d1 = 1;
@@ -24764,37 +22532,39 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bby" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/item/radio/intercom{
@@ -24802,15 +22572,17 @@
name = "Station Intercom (General)";
pixel_y = -29
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/pods{
@@ -24820,24 +22592,28 @@
dir = 1;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bbB" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbC" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24846,8 +22622,7 @@
/area/hallway/primary/fore)
"bbD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/structure/sign/securearea{
@@ -24855,34 +22630,28 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bbF" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/atmos)
-"bbG" = (
-/turf/simulated/floor/plating,
-/area/security/prison)
"bbH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bbI" = (
/obj/docking_port/mobile/pod{
dir = 4;
@@ -24897,9 +22666,6 @@
/area/shuttle/pod_3)
"bbJ" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/chair/comfy/shuttle{
@@ -24909,9 +22675,7 @@
/area/shuttle/pod_3)
"bbK" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/light,
@@ -24969,9 +22733,7 @@
"bbQ" = (
/obj/machinery/atmospherics/trinary/filter{
dir = 1;
- filter_type = "";
- name = "gas filter";
- on = 0
+ filter_type = ""
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -24979,23 +22741,15 @@
},
/area/atmos)
"bbR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/suit_storage_unit/atmos,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/atmos)
"bbS" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Life Support Specialist"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -25066,7 +22820,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random_spawners/oil_maybe,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bcc" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/reagent_containers/glass/bucket,
@@ -25077,7 +22831,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcd" = (
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
@@ -25088,33 +22841,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
pixel_x = -6;
pixel_y = 32
},
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/closet/secure_closet/hydroponics,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -25144,7 +22885,7 @@
/area/hydroponics)
"bck" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/firealarm{
dir = 4;
@@ -25155,26 +22896,23 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Service Hall South";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bcm" = (
/obj/structure/cable{
@@ -25183,34 +22921,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"bcn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/plasticflaps,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
-"bco" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/kitchen)
"bcp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -25222,6 +22945,7 @@
},
/area/crew_quarters/kitchen)
"bcr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -25237,9 +22961,7 @@
/area/crew_quarters/kitchen)
"bct" = (
/obj/machinery/camera{
- c_tag = "Kitchen Backroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Kitchen Backroom"
},
/obj/structure/sink/kitchen{
pixel_y = 30
@@ -25250,25 +22972,28 @@
"bcu" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bcv" = (
/obj/structure/closet/secure_closet/freezer/meat,
/obj/structure/extinguisher_cabinet{
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bcw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"bcx" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/condiment/saltshaker,
@@ -25290,7 +23015,7 @@
dir = 10
},
/obj/machinery/computer/general_air_control/large_tank_control{
- frequency = 1441;
+ frequency = 1443;
input_tag = "air_in";
name = "Mixed Air Supply Control";
output_tag = "air_out";
@@ -25305,14 +23030,20 @@
"bcz" = (
/obj/structure/closet/chefcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bcA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/quartermaster/office)
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/construction/hallway)
"bcB" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -25334,7 +23065,6 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -25343,7 +23073,6 @@
},
/area/quartermaster/miningdock)
"bcE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25352,6 +23081,8 @@
/area/quartermaster/miningdock)
"bcF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -25373,9 +23104,6 @@
},
/area/quartermaster/miningdock)
"bcI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
@@ -25384,51 +23112,37 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bcJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/structure/closet/secure_closet/cargotech,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
"bcK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/closet/secure_closet/cargotech,
/obj/machinery/ai_status_display{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/storage)
"bcL" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/storage)
@@ -25444,50 +23158,46 @@
},
/area/hallway/primary/fore)
"bcN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Mining Dock";
req_access_txt = "48"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bcP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/turf/simulated/wall,
+/area/hallway/primary/port)
"bcU" = (
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcV" = (
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcX" = (
/obj/structure/cable{
d1 = 1;
@@ -25502,20 +23212,28 @@
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bcY" = (
-/obj/structure/table/reinforced,
/obj/machinery/light/small{
dir = 8
},
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
},
+/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bcZ" = (
/obj/structure/cable{
d1 = 1;
@@ -25523,10 +23241,11 @@
icon_state = "1-2";
tag = ""
},
+/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bda" = (
/obj/structure/cable{
d1 = 4;
@@ -25536,7 +23255,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdb" = (
/obj/machinery/light/small{
dir = 8
@@ -25545,25 +23264,13 @@
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
-"bdc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/closet/secure_closet/brig,
-/turf/simulated/floor/plasteel{
- icon_state = "vault"
- },
-/area/security/prison)
+/area/security/permabrig)
"bdd" = (
/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bde" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -25577,14 +23284,21 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bdf" = (
/obj/structure/table,
/obj/item/storage/box/bodybags,
/obj/item/pen,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdg" = (
/obj/structure/cable{
d1 = 1;
@@ -25596,22 +23310,28 @@
/obj/item/restraints/handcuffs,
/obj/item/clothing/suit/armor/vest,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"bdi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Prison Wing";
req_access_txt = "2"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bdk" = (
/turf/simulated/floor/engine/plasma,
/area/atmos)
@@ -25626,17 +23346,13 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
+ icon_state = "in";
id_tag = "tox_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "plasma vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/plasma,
@@ -25651,8 +23367,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "Plasma to Pure";
- on = 0
+ name = "Plasma to Pure"
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -25677,14 +23392,12 @@
},
/area/atmos)
"bdq" = (
-/obj/machinery/atmospherics/unary/vent_pump,
/obj/structure/closet/secure_closet/atmos_personal,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/atmos)
"bdr" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -25713,8 +23426,7 @@
/area/atmos)
"bdu" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25722,10 +23434,12 @@
},
/area/atmos)
"bdv" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 8;
frequency = 1441;
- id = "o2_in"
+ icon_state = "on";
+ id = "o2_in";
+ on = 1
},
/turf/simulated/floor/engine/o2,
/area/atmos)
@@ -25737,10 +23451,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bdx" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "greenblue"
@@ -25752,9 +23462,7 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "greenblue"
@@ -25767,14 +23475,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25788,11 +23490,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "greenblue"
@@ -25811,9 +23511,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25827,9 +23526,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25844,8 +23545,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25859,11 +23562,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bdF" = (
@@ -25873,16 +23578,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/hydroponics)
"bdG" = (
/obj/structure/cable{
d1 = 4;
@@ -25896,12 +23603,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bdH" = (
/obj/structure/cable{
@@ -25914,8 +23621,16 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"bdI" = (
/obj/structure/cable{
@@ -25924,14 +23639,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/freezer{
req_access_txt = "28"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bdJ" = (
/obj/structure/cable{
@@ -25940,13 +23659,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bdK" = (
/obj/structure/cable{
@@ -25956,8 +23678,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -25970,13 +23694,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/landmark/start{
name = "Chef"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -25988,11 +23711,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -26001,8 +23721,7 @@
"bdN" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/structure/rack,
/obj/item/stack/packageWrap,
@@ -26014,22 +23733,19 @@
},
/area/crew_quarters/kitchen)
"bdO" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/kitchen)
"bdP" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdQ" = (
@@ -26042,17 +23758,13 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdS" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bdT" = (
@@ -26079,7 +23791,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -26088,8 +23799,6 @@
},
/area/hallway/primary/fore)
"bdW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -26097,8 +23806,10 @@
},
/area/hallway/primary/fore)
"bdX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -26111,18 +23822,18 @@
},
/area/hallway/primary/fore)
"bdZ" = (
+/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/hallway/primary/fore)
+/area/construction/hallway)
"bea" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -26130,17 +23841,11 @@
},
/area/hallway/primary/fore)
"beb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -26148,12 +23853,12 @@
},
/area/hallway/primary/fore)
"bec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26167,21 +23872,14 @@
},
/area/quartermaster/miningdock)
"bee" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bef" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/area/hydroponics)
"beg" = (
/obj/structure/chair/office/dark{
dir = 1
@@ -26196,19 +23894,22 @@
},
/area/quartermaster/miningdock)
"bei" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "purple"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/quartermaster/miningdock)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hydroponics)
"bek" = (
/obj/structure/cable{
d1 = 1;
@@ -26216,14 +23917,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bel" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/plasticflaps{
opacity = 1
},
@@ -26248,64 +23948,25 @@
icon_state = "brown"
},
/area/quartermaster/miningdock)
-"bep" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
"beq" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"ber" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bes" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ id_tag = "mining_home";
+ locked = 1;
+ name = "Mining Dock Airlock";
+ req_access_txt = "48"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bex" = (
/turf/simulated/wall/r_wall,
@@ -26317,12 +23978,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Mining Dock";
req_access_txt = "48"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bez" = (
@@ -26334,17 +23995,23 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beA" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"beC" = (
/obj/structure/closet/bombcloset,
/obj/effect/decal/cleanable/dirt,
@@ -26352,12 +24019,19 @@
dir = 8;
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"beD" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"beE" = (
/obj/machinery/light/small{
dir = 8
@@ -26395,14 +24069,11 @@
},
/area/atmos)
"beI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "grimy"
},
-/area/atmos)
+/area/crew_quarters/heads/hos)
"beJ" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
@@ -26417,21 +24088,19 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"beL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/suit_storage_unit/atmos,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "caution"
},
/area/atmos)
"beM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26439,11 +24108,13 @@
/area/atmos)
"beN" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/closet/wardrobe/atmospherics_yellow,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/fireaxecabinet{
+ pixel_x = 30
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "caution"
@@ -26467,7 +24138,6 @@
/obj/machinery/atmospherics/binary/pump{
dir = 8;
name = "N2 to Pure";
- on = 0;
target_pressure = 101
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -26481,8 +24151,7 @@
dir = 10
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -26495,7 +24164,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"beT" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/cultivator,
@@ -26507,66 +24176,52 @@
/area/hydroponics)
"beU" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
+/obj/structure/disposalpipe/segment{
dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
icon_state = "greenblue"
},
/area/hydroponics)
"beX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Hydroponics Backroom";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beY" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
"beZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greenblue"
},
/area/hydroponics)
@@ -26578,7 +24233,7 @@
/obj/structure/plasticflaps,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/hydroponics)
"bfc" = (
/obj/structure/cable{
d1 = 1;
@@ -26586,72 +24241,80 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"bfd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
/area/crew_quarters/sleep)
"bfe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/obj/structure/kitchenspike,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bff" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bfg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bfh" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bfi" = (
/obj/machinery/chem_master/condimaster,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bfj" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfk" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfl" = (
@@ -26668,9 +24331,7 @@
"bfm" = (
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bfn" = (
@@ -26680,7 +24341,6 @@
},
/area/crew_quarters/kitchen)
"bfo" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
/obj/machinery/door/firedoor,
@@ -26693,7 +24353,6 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bfp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -26717,16 +24376,10 @@
icon_state = "brown"
},
/area/hallway/primary/fore)
-"bfs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
"bft" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26739,14 +24392,18 @@
},
/area/hallway/primary/fore)
"bfv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
+/area/atmos)
"bfw" = (
/obj/machinery/light{
dir = 1;
@@ -26754,7 +24411,7 @@
},
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/miner,
+/obj/item/toy/figure/crew/miner,
/obj/machinery/firealarm{
dir = 4;
pixel_x = -28
@@ -26772,11 +24429,26 @@
},
/area/quartermaster/miningdock)
"bfy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
"bfz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bfA" = (
@@ -26790,24 +24462,26 @@
},
/area/quartermaster/miningdock)
"bfC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bfD" = (
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
},
/area/quartermaster/miningdock)
"bfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/quartermaster/miningdock)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
+ },
+/area/hallway/primary/port)
"bfF" = (
/obj/structure/cable{
d1 = 1;
@@ -26815,39 +24489,26 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/miningdock)
"bfG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "yellowcorner"
},
-/area/quartermaster/miningdock)
+/area/hallway/primary/port)
"bfH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/landmark/start{
name = "Shaft Miner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26880,40 +24541,36 @@
icon_state = "purple"
},
/area/quartermaster/miningdock)
-"bfM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
"bfN" = (
/obj/structure/closet/secure_closet/miner,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bfO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
"bfR" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whitered"
@@ -26931,17 +24588,16 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfT" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/closet/secure_closet/brig,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bfU" = (
/obj/machinery/light/small{
dir = 1
@@ -26951,7 +24607,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfV" = (
/obj/structure/cable{
d1 = 2;
@@ -26965,14 +24621,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfW" = (
/obj/structure/cable{
d1 = 4;
@@ -26980,28 +24633,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/security/prison)
-"bfX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfY" = (
/obj/structure/cable{
d1 = 4;
@@ -27009,17 +24643,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Closet";
- req_access_txt = "1"
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bfZ" = (
/obj/structure/cable{
d1 = 4;
@@ -27033,12 +24671,15 @@
dir = 8;
icon_state = "vault"
},
-/area/security/prison)
+/area/security/permabrig)
"bga" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1441;
- id = "tox_in"
+ icon_state = "on";
+ id = "tox_in";
+ on = 1;
+ pixel_y = 1
},
/turf/simulated/floor/engine/plasma,
/area/atmos)
@@ -27060,8 +24701,7 @@
"bgc" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port Mix to Port Ports";
- on = 0
+ name = "Port Mix to Port Ports"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27071,12 +24711,10 @@
"bgd" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Port Mix to Starboard Ports";
- on = 0
+ name = "Port Mix to Starboard Ports"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27084,18 +24722,17 @@
},
/area/atmos)
"bge" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/atmos)
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
"bgf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Storage";
req_one_access_txt = "24; 10"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -27103,8 +24740,7 @@
/area/atmos)
"bgg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27113,8 +24749,7 @@
/area/atmos)
"bgh" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -27149,16 +24784,13 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
+ icon_state = "in";
id_tag = "n2_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- name = "n2 vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/n2,
@@ -27178,24 +24810,23 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bgo" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bgp" = (
/obj/structure/sign/botany,
/turf/simulated/wall,
/area/hydroponics)
"bgq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bgr" = (
@@ -27205,28 +24836,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Service Hall";
- req_access_txt = "0"
+ name = "Service Hall"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bgs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/wall,
-/area/crew_quarters/sleep)
+/area/maintenance/starboard2)
"bgt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
+/turf/simulated/wall/rust,
+/area/maintenance/starboard2)
"bgu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/freezer{
req_access_txt = "28"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bgv" = (
/obj/machinery/hologram/holopad,
@@ -27245,16 +24875,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bgx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -27264,8 +24895,7 @@
/area/hallway/primary/fore)
"bgy" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/effect/decal/warning_stripes/yellow,
@@ -27273,21 +24903,6 @@
icon_state = "white"
},
/area/crew_quarters/kitchen)
-"bgz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
"bgA" = (
/obj/structure/table/reinforced,
/obj/item/storage/bag/tray,
@@ -27300,77 +24915,72 @@
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bgC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/hallway/primary/fore)
"bgD" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bgE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bgF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bgG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bgH" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -27380,9 +24990,7 @@
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Kitchen";
req_access_txt = "28"
},
@@ -27390,32 +24998,29 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bgJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/turf/simulated/wall,
+/area/crew_quarters/chief)
"bgK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
},
/area/quartermaster/miningdock)
"bgL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
"bgM" = (
/obj/machinery/light{
dir = 1;
@@ -27426,47 +25031,36 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bgN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/area/turret_protected/ai)
"bgO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "purple"
},
/area/quartermaster/miningdock)
"bgP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bgQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
},
-/area/quartermaster/miningdock)
+/area/storage/primary)
"bgR" = (
/obj/structure/cable{
d1 = 1;
@@ -27474,11 +25068,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bgS" = (
@@ -27512,27 +25102,27 @@
/area/quartermaster/miningdock)
"bgX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
},
/area/hallway/primary/central)
"bgY" = (
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/space,
-/area/space)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/storage/primary)
"bha" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -27573,30 +25163,18 @@
icon_state = "whitered"
},
/area/security/medbay)
-"bhe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/prison)
"bhf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Magistrate's Office"
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
"bhg" = (
/obj/structure/cable{
d1 = 1;
@@ -27606,11 +25184,19 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
name = "Prison Wing";
req_access_txt = "2"
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bhh" = (
@@ -27648,7 +25234,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -27657,15 +25242,17 @@
},
/area/atmos)
"bhm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "caution"
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/atmos)
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
"bhn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "caution"
@@ -27753,19 +25340,22 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bhx" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bhy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bhz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/glass,
/obj/item/storage/box/beakers,
/obj/item/storage/box/syringes,
@@ -27784,9 +25374,8 @@
"bhB" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/botanist,
+/obj/item/toy/figure/crew/botanist,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -27820,13 +25409,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "green"
},
/area/crew_quarters/sleep)
"bhG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 1
},
@@ -27840,20 +25429,20 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bhI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/crew_quarters/kitchen)
"bhJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/kitchen)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/storage/primary)
"bhK" = (
/obj/item/radio/intercom{
pixel_y = 28
@@ -27865,18 +25454,9 @@
"bhL" = (
/mob/living/carbon/human/monkey/punpun,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
-"bhM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/fore)
"bhN" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/condiment/flour,
@@ -27886,11 +25466,6 @@
},
/area/crew_quarters/kitchen)
"bhO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -27903,9 +25478,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27916,10 +25496,9 @@
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/dough,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bhR" = (
@@ -27930,16 +25509,28 @@
},
/area/crew_quarters/kitchen)
"bhS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/hallway/primary/fore)
"bhT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -27951,35 +25542,41 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"bhV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/fore)
-"bhW" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/greengrid,
+/area/turret_protected/ai)
+"bhW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bhX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/fore)
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bhY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -27987,12 +25584,10 @@
/area/hallway/primary/fore)
"bhZ" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28000,7 +25595,11 @@
},
/area/quartermaster/miningdock)
"bia" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -28009,14 +25608,22 @@
},
/area/quartermaster/miningdock)
"bib" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bic" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -28027,10 +25634,14 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -28044,6 +25655,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -28051,13 +25666,12 @@
/area/quartermaster/miningdock)
"bif" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -28070,10 +25684,17 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
@@ -28086,8 +25707,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -28106,10 +25732,13 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -28119,14 +25748,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/miningdock)
"bik" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28168,13 +25803,19 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bip" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/greengrid,
+/area/turret_protected/ai)
"biq" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -28225,22 +25866,14 @@
pixel_y = 28
},
/obj/item/bedsheet/blue,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitered"
},
/area/security/medbay)
-"bit" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/medbay)
"biu" = (
/obj/structure/cable{
d1 = 1;
@@ -28249,34 +25882,21 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
},
/area/security/brig)
"biv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/brig)
"biw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -28286,8 +25906,7 @@
"bix" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -28307,6 +25926,7 @@
icon_state = "2-4";
tag = ""
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28320,8 +25940,9 @@
tag = ""
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28342,6 +25963,7 @@
c_tag = "Security Briefing Room North";
network = list("SS13","Security")
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28357,6 +25979,7 @@
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -28460,17 +26083,13 @@
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
+ icon_state = "in";
id_tag = "n2o_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "n2o vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/n20,
@@ -28485,8 +26104,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
- name = "n2o to Pure";
- on = 0
+ name = "n2o to Pure"
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -28496,8 +26114,13 @@
"biO" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Pure to Ports";
- on = 0
+ name = "Pure to Ports"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28507,8 +26130,13 @@
"biP" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Mix to Ports";
- on = 0
+ name = "Mix to Ports"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28518,8 +26146,13 @@
"biQ" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Air to Ports";
- on = 0
+ name = "Air to Ports"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28532,16 +26165,27 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"biS" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28552,27 +26196,39 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"biU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"biV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28580,38 +26236,29 @@
},
/area/atmos)
"biW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/atmos)
+/area/storage/primary)
"biX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/atmos)
+/area/turret_protected/ai)
"biY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "yellowcorner"
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/area/storage/primary)
"biZ" = (
/obj/structure/window/reinforced{
dir = 4
@@ -28631,8 +26278,7 @@
"bja" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28640,10 +26286,13 @@
},
/area/atmos)
"bjb" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 8;
frequency = 1441;
- id = "n2_in"
+ icon_state = "on";
+ id = "n2_in";
+ on = 1;
+ volume_rate = 200
},
/turf/simulated/floor/engine/n2,
/area/atmos)
@@ -28654,7 +26303,7 @@
dir = 8
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bjd" = (
/obj/structure/cable{
d1 = 1;
@@ -28662,25 +26311,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bje" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -28691,22 +26337,9 @@
icon_state = "greenblue"
},
/area/hydroponics)
-"bjg" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "greenblue"
- },
-/area/hydroponics)
"bjh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -28714,6 +26347,9 @@
},
/area/hydroponics)
"bji" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28723,6 +26359,9 @@
},
/area/hydroponics)
"bjj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28732,24 +26371,33 @@
},
/area/hydroponics)
"bjk" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bjl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
req_access_txt = "35"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bjm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28765,17 +26413,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bjo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28785,47 +26432,35 @@
},
/area/crew_quarters/sleep)
"bjp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Kitchen";
req_access_txt = "28"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bjq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitehall"
- },
-/area/crew_quarters/kitchen)
-"bjr" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "whitehall"
},
/area/crew_quarters/kitchen)
"bjs" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28834,61 +26469,22 @@
},
/area/crew_quarters/kitchen)
"bjt" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"bju" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/kitchen)
-"bjv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/landmark/start{
name = "Chef"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/crew_quarters/kitchen)
-"bjx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"bjy" = (
@@ -28901,22 +26497,16 @@
},
/area/crew_quarters/kitchen)
"bjz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
dir = 4;
- level = 1
+ icon_state = "neutral"
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/fore)
+/area/crew_quarters/chief)
"bjA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -28929,11 +26519,13 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
name = "Kitchen Junction";
- sortType = 24
+ sortType = 21
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28950,21 +26542,21 @@
},
/area/hallway/primary/fore)
"bjD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"bjE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/hallway/primary/fore)
+/area/storage/primary)
+"bjE" = (
+/obj/machinery/bluespace_beacon,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
"bjF" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -28992,9 +26584,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bjJ" = (
@@ -29014,7 +26603,6 @@
/area/quartermaster/miningdock)
"bjL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
@@ -29025,110 +26613,54 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bjN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
"bjO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
c_tag = "Atmospherics South-East";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bjP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "purple"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/quartermaster/miningdock)
+/area/crew_quarters/chief)
"bjQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bjR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/chair/office/dark{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/quartermaster/miningdock)
"bjS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/gps/mining,
@@ -29138,38 +26670,32 @@
},
/area/quartermaster/miningdock)
"bjT" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"bjU" = (
/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
+ icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bjU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/area/hallway/primary/port)
"bjY" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -29198,6 +26724,12 @@
tag = ""
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -29209,11 +26741,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -29238,15 +26770,16 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Brig Medical Bay";
- req_access_txt = "0";
req_one_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
@@ -29265,9 +26798,10 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29276,15 +26810,15 @@
/area/security/brig)
"bke" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
+ d2 = 4;
+ icon_state = "2-4";
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -29293,20 +26827,28 @@
},
/area/security/brig)
"bkf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
"bkg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
name = "Prison Wing";
req_access_txt = "2"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bkh" = (
@@ -29317,8 +26859,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bki" = (
@@ -29326,26 +26868,28 @@
/obj/effect/landmark/start{
name = "Security Officer"
},
-/turf/simulated/floor/plasteel{
- dir = 0;
- icon_state = "red"
- },
-/area/security/main)
-"bkj" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bkk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/main)
+"bkj" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Security Interrogation Room";
+ dir = 4;
+ network = list("Interrogation")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bkl" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29360,6 +26904,10 @@
/area/security/main)
"bkn" = (
/obj/machinery/computer/secure_data,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -29481,51 +27029,30 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bkA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bkB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/meter,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bkD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
"bkE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -29536,28 +27063,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkG" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/area/maintenance/fore)
"bkH" = (
/obj/structure/cable{
d1 = 4;
@@ -29565,16 +27085,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/atmos)
+/area/maintenance/fore)
"bkI" = (
/obj/structure/cable{
d1 = 4;
@@ -29582,13 +27095,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -29605,14 +27111,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -29625,11 +27126,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -29643,7 +27139,6 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bkM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -29661,8 +27156,7 @@
"bkP" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -29676,7 +27170,7 @@
"bkR" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bkS" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/status_display{
@@ -29697,24 +27191,7 @@
icon_state = "neutralfull"
},
/area/hydroponics)
-"bkV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hydroponics)
"bkW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hydroponics/constructable,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -29722,38 +27199,14 @@
icon_state = "neutralfull"
},
/area/hydroponics)
-"bkX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hydroponics)
"bkY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "greenblue"
- },
-/area/hydroponics)
+/obj/item/toy/carpplushie/pink,
+/turf/space,
+/area/space)
"bkZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bla" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -29761,7 +27214,6 @@
req_access_txt = "35"
},
/obj/machinery/door/window/eastleft{
- dir = 4;
name = "Hydroponics Desk";
req_access_txt = "35"
},
@@ -29769,10 +27221,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"blb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "greenblue"
@@ -29785,16 +27233,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bld" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -29807,26 +27250,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/flasher_button{
- id = "Cell 2";
- pixel_x = 0;
- pixel_y = 27
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"blf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -29835,16 +27264,11 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/foodcart,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/light,
/obj/machinery/vending/dinnerware,
/obj/machinery/status_display{
@@ -29862,25 +27286,15 @@
/obj/item/storage/box/papersack,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/crew_quarters/kitchen)
"blj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/icemachine,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/rack,
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
@@ -29889,48 +27303,30 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/mint,
/obj/item/reagent_containers/food/condiment/enzyme,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/table/reinforced,
-/obj/machinery/reagentgrinder,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bln" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light,
/obj/machinery/processor,
/obj/machinery/camera{
c_tag = "Kitchen";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/chef,
+/obj/item/toy/figure/crew/chef,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
@@ -29941,21 +27337,32 @@
},
/area/security/medbay)
"blq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
},
/area/hallway/primary/fore)
"blr" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"bls" = (
@@ -29975,38 +27382,57 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blu" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "brown"
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/hallway/primary/fore)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"blw" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
"blx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "brown"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/hallway/primary/fore)
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
"bly" = (
/obj/structure/chair{
dir = 1
@@ -30015,7 +27441,6 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -30026,7 +27451,6 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/fore)
@@ -30049,20 +27473,21 @@
},
/area/quartermaster/miningdock)
"blC" = (
-/obj/structure/ore_box,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blD" = (
-/obj/structure/closet/emcloset,
+/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
-"blE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+"blD" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
+"blE" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
"blF" = (
/obj/structure/cable{
d2 = 8;
@@ -30082,34 +27507,55 @@
},
/area/quartermaster/miningdock)
"blG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- id_tag = "mining_home";
- locked = 1;
- name = "Mining Dock Airlock";
- req_access_txt = "48"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/fans/tiny,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blI" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"blJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/turret_protected/aisat)
+"blH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
+"blI" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/miningdock)
+"blJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Mining Dock";
req_access_txt = "48"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"blK" = (
@@ -30119,56 +27565,106 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Mining Dock";
req_access_txt = "48"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"blL" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port)
"blM" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/port)
"blN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"blO" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
+"blR" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Garden";
+ network = list("SS13","Security")
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
"blS" = (
/obj/structure/closet/secure_closet/brigdoc,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitered"
},
/area/security/medbay)
"blT" = (
-/obj/machinery/light/small,
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "whitered"
@@ -30189,6 +27685,7 @@
/obj/structure/sign/greencross{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -30201,41 +27698,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"blX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
"blY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/main)
"blZ" = (
@@ -30259,8 +27738,8 @@
name = "Security Officer"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmb" = (
@@ -30268,28 +27747,37 @@
/obj/item/folder/red,
/obj/item/clothing/mask/gas/sechailer,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmc" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
+/obj/item/flash,
+/obj/item/restraints/handcuffs,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bmd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/folder/red,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "neutralfull"
},
/area/security/main)
"bme" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/book/manual/security_space_law,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -30321,9 +27809,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -30345,7 +27831,7 @@
/area/security/hos)
"bmk" = (
/turf/simulated/wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bml" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
@@ -30357,7 +27843,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bmm" = (
/obj/structure/bed,
/obj/item/bedsheet/hos,
@@ -30374,17 +27860,20 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bmn" = (
/obj/structure/table/wood,
/obj/item/storage/secure/safe{
pixel_x = 32
},
/obj/item/flashlight/lamp,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bmo" = (
/obj/structure/window/reinforced{
dir = 4
@@ -30433,10 +27922,13 @@
/turf/space,
/area/space/nearstation)
"bmt" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1441;
- id = "n2o_in"
+ icon_state = "on";
+ id = "n2o_in";
+ on = 1;
+ pixel_y = 1
},
/turf/simulated/floor/engine/n20,
/area/atmos)
@@ -30464,8 +27956,7 @@
/area/atmos)
"bmw" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -30485,24 +27976,21 @@
"bmz" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"bmA" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"bmB" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -30520,8 +28008,7 @@
/area/atmos)
"bmD" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -30531,8 +28018,7 @@
"bmE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
- initialize_directions = 10;
- level = 2
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -30553,17 +28039,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"bmH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
@@ -30598,7 +28085,6 @@
/obj/machinery/newscaster{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
@@ -30665,12 +28151,11 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bmQ" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -30685,17 +28170,24 @@
},
/area/hydroponics)
"bmS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
+/obj/structure/showcase{
+ density = 0;
dir = 8;
- icon_state = "neutralfull"
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
},
-/area/hydroponics)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/aisat)
"bmT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -30710,13 +28202,11 @@
"bmV" = (
/obj/machinery/plantgenes,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Hydroponics";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -30732,20 +28222,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Service Foyer";
- req_access_txt = "0"
+ name = "Service Foyer"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"bmY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep)
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"bmZ" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -30765,26 +28258,20 @@
/turf/simulated/wall,
/area/crew_quarters/kitchen)
"bnb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Kitchen";
req_access_txt = "28"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bnc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/clothing/suit/chef,
/obj/item/kitchen/rollingpin,
@@ -30813,7 +28300,6 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bnf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -30829,19 +28315,16 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bni" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -25
},
/obj/structure/rack,
/obj/item/storage/toolbox/emergency{
@@ -30859,45 +28342,26 @@
"bnj" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/area/crew_quarters/chief)
"bnk" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bnl" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bnm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
+/area/library)
"bnn" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -30916,11 +28380,8 @@
/turf/simulated/wall/r_wall,
/area/security/prisonershuttle)
"bnp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -30934,8 +28395,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -30943,38 +28412,32 @@
},
/area/security/brig)
"bnr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
-"bns" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/security/main)
"bnt" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -30994,57 +28457,12 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bnw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/main)
-"bnx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bny" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/folder/blue{
@@ -31053,38 +28471,17 @@
},
/obj/item/lighter/zippo,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bnz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/main)
-"bnA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/structure/chair/comfy/brown{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bnB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"bnC" = (
@@ -31099,27 +28496,15 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/security/hos)
"bnD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/mob/living/simple_animal/hostile/retaliate/araneus,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bnE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/chair/office/dark{
dir = 4
},
@@ -31134,72 +28519,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"bnG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/hos)
-"bnH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/computer/card/minor/hos,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
},
/area/security/hos)
-"bnJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/hos)
"bnK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnL" = (
/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bnM" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -31207,15 +28552,6 @@
},
/turf/space,
/area/space/nearstation)
-"bnN" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
"bnO" = (
/obj/structure/chair{
dir = 1
@@ -31232,17 +28568,6 @@
icon_state = "vault"
},
/area/construction/hallway)
-"bnQ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
"bnR" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -31254,16 +28579,14 @@
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/atmos)
"bnT" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
@@ -31271,16 +28594,14 @@
"bnU" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
/area/atmos)
"bnV" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/door/firedoor,
@@ -31294,8 +28615,7 @@
"bnW" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 9;
- level = 2
+ dir = 9
},
/turf/simulated/floor/plating,
/area/atmos)
@@ -31321,7 +28641,7 @@
"bnZ" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/atmos,
+/obj/item/toy/figure/crew/atmos,
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
@@ -31346,29 +28666,20 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"boc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/effect/decal/warning_stripes/east,
@@ -31378,14 +28689,26 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"boe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engineering)
+"boe" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"bof" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/sign/botany{
@@ -31403,17 +28726,25 @@
},
/area/hydroponics)
"boh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/seed_extractor,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hydroponics)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/tcommsat/chamber)
"boi" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -31433,6 +28764,9 @@
dir = 6
},
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -31445,30 +28779,25 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bon" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"boo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31477,16 +28806,16 @@
/area/hallway/primary/central)
"bop" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Central Ring Hallway North";
- dir = 2
+ c_tag = "Central Ring Hallway North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31495,8 +28824,10 @@
/area/hallway/primary/central)
"boq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -31505,27 +28836,30 @@
/area/hallway/primary/central)
"bor" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bos" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "yellowfull"
},
-/area/hallway/primary/central)
+/area/engine/engineering)
"bot" = (
/obj/structure/cable{
d1 = 1;
@@ -31533,27 +28867,32 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/hallway/primary/central)
"bou" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellow"
+ },
+/area/engine/engineering)
"bov" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31561,20 +28900,17 @@
},
/area/hallway/primary/central)
"bow" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"box" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31583,8 +28919,10 @@
/area/hallway/primary/central)
"boy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31593,16 +28931,16 @@
/area/hallway/primary/central)
"boz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Central Ring Hallway North";
- dir = 2
+ c_tag = "Central Ring Hallway North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31610,13 +28948,14 @@
},
/area/hallway/primary/central)
"boA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
+/area/engine/engineering)
"boB" = (
/obj/structure/cable{
d1 = 2;
@@ -31625,8 +28964,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -31645,8 +28986,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31667,10 +29010,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -31683,9 +29022,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"boG" = (
@@ -31712,16 +29050,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Mining Maintenance";
req_access_txt = "48"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"boL" = (
@@ -31732,8 +29069,14 @@
tag = ""
},
/obj/structure/filingcabinet/filingcabinet,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 1;
icon_state = "red"
},
/area/security/prisonershuttle)
@@ -31741,7 +29084,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
-/obj/machinery/computer/shuttle/labor,
+/obj/machinery/computer/prisoner,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -31776,31 +29119,33 @@
"boP" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 26
},
/obj/item/storage/box/prisoner,
+/obj/machinery/light/small{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
},
/area/security/prisonershuttle)
-"boQ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
"boR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/brig)
"boS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31817,81 +29162,116 @@
/area/security/brig)
"boT" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
/area/security/main)
"boU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"boV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/security/main)
"boW" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
-"boX" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"boY" = (
-/obj/structure/chair/comfy/brown{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"boZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bpa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"boX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/main)
+"boY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/main)
+"boZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/main)
+"bpa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/main)
"bpb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31909,18 +29289,19 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/command/glass{
name = "Head of Security";
req_access_txt = "58"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bpc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31933,29 +29314,29 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bpd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bpe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31973,26 +29354,24 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/folder/red,
/obj/item/stamp/hos,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/hos)
"bpf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/chair/comfy/brown{
dir = 8
},
@@ -32004,16 +29383,16 @@
},
/area/security/hos)
"bpg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -32055,7 +29434,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpj" = (
/obj/structure/cable{
d1 = 4;
@@ -32066,7 +29445,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpk" = (
/obj/structure/cable{
d1 = 4;
@@ -32078,7 +29457,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpl" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -32097,7 +29476,7 @@
icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpm" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -32128,12 +29507,17 @@
},
/area/construction/hallway)
"bpp" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/construction/hallway)
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"bpq" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
@@ -32148,17 +29532,10 @@
/area/shuttle/pod_3)
"bps" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/construction/hallway)
-"bpt" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -32183,18 +29560,20 @@
/turf/simulated/floor/engine/vacuum,
/area/atmos)
"bpx" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
+/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1441;
- id = "mix_in"
+ icon_state = "on";
+ id = "waste_in";
+ on = 1;
+ pixel_y = 1
},
/turf/simulated/floor/engine/vacuum,
/area/atmos)
"bpy" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -32224,9 +29603,7 @@
/area/atmos)
"bpB" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Pure to Mix";
- on = 0
+ name = "Pure to Mix"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32235,8 +29612,7 @@
/area/atmos)
"bpC" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32245,8 +29621,7 @@
/area/atmos)
"bpD" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -32308,8 +29683,7 @@
/obj/item/weldingtool,
/obj/item/clothing/head/welding,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -32319,8 +29693,7 @@
/area/atmos)
"bpK" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -32332,60 +29705,41 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Air to External Air Ports";
on = 1;
target_pressure = 101
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"bpM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
/obj/structure/sign/poster/official/work_for_a_future{
pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bpN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bpO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
},
-/obj/machinery/space_heater,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/area/library)
"bpQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light{
dir = 1;
@@ -32394,30 +29748,29 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bpR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
"bpS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
"bpT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bpU" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -32432,13 +29785,13 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/light/small{
+ dir = 1
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -32459,19 +29812,6 @@
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
-"bpX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
"bpY" = (
/obj/structure/cable{
d1 = 4;
@@ -32479,12 +29819,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bpZ" = (
/obj/structure/cable{
d1 = 4;
@@ -32492,12 +29832,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqa" = (
/obj/structure/cable{
d1 = 4;
@@ -32512,7 +29852,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqb" = (
/obj/structure/cable{
d1 = 4;
@@ -32520,15 +29860,15 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqc" = (
/obj/structure/cable{
d1 = 4;
@@ -32536,13 +29876,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqd" = (
/obj/structure/cable{
d1 = 4;
@@ -32554,7 +29894,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqe" = (
/obj/structure/cable{
d1 = 4;
@@ -32566,21 +29906,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"bqf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqg" = (
/obj/structure/cable{
d1 = 1;
@@ -32593,18 +29919,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-y"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqh" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -32618,14 +29942,9 @@
},
/area/hydroponics)
"bqj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/biogenerator,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hydroponics)
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard2)
"bqk" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -32651,10 +29970,9 @@
/area/hydroponics)
"bqm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -32673,10 +29991,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -32689,38 +30003,17 @@
icon_state = "neutralfull"
},
/area/hallway/primary/central)
-"bqo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
"bqp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bqq" = (
/obj/structure/cable{
@@ -32729,12 +30022,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32742,22 +30031,20 @@
},
/area/hallway/primary/central)
"bqr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central)
+/area/bridge/meeting_room)
"bqs" = (
/obj/structure/cable{
d1 = 4;
@@ -32765,10 +30052,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall2";
location = "hall1"
@@ -32789,11 +30072,9 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/landmark{
name = "lightsout"
},
@@ -32801,6 +30082,10 @@
codes_txt = "patrol;next_patrol=hall15";
location = "hall14"
},
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -32819,27 +30104,13 @@
},
/area/hallway/primary/central)
"bqv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bqw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/security/medbay)
"bqx" = (
/obj/structure/cable{
d1 = 4;
@@ -32847,9 +30118,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32857,20 +30130,17 @@
},
/area/hallway/primary/central)
"bqy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
+/turf/simulated/floor/plating,
+/area/bridge)
"bqz" = (
/obj/structure/cable{
d1 = 1;
@@ -32885,13 +30155,17 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall14";
location = "hall13"
},
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Quartermaster Junction";
+ sortType = 3
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -32899,6 +30173,13 @@
/area/hallway/primary/central)
"bqA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -32911,18 +30192,16 @@
"bqC" = (
/turf/simulated/wall/rust,
/area/maintenance/starboard)
-"bqI" = (
-/obj/structure/lattice,
-/obj/structure/sign/electricshock{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/space,
-/area/space/nearstation)
"bqJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/security/main)
"bqK" = (
/obj/structure/cable{
@@ -32931,18 +30210,15 @@
icon_state = "1-2";
tag = ""
},
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"bqL" = (
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/prisonershuttle)
-"bqL" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
"bqM" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -32955,35 +30231,18 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bqO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/prisonershuttle)
-"bqP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
"bqQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32991,19 +30250,28 @@
},
/area/security/brig)
"bqR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -33013,22 +30281,33 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/brig)
"bqT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -33036,9 +30315,24 @@
name = "Security Office";
req_access_txt = "63"
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "redfull";
+ tag = null
},
/area/security/main)
"bqU" = (
@@ -33049,47 +30343,84 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
/area/security/main)
"bqV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/main)
+"bqW" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "red"
},
/area/security/main)
-"bqW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
"bqX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 10;
icon_state = "red"
},
/area/security/main)
@@ -33097,49 +30428,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/main)
-"bqZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/table/reinforced,
-/obj/item/book/manual/security_space_law,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/main)
-"bra" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 6;
icon_state = "red"
},
/area/security/main)
"brb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 6;
icon_state = "red"
},
/area/security/main)
@@ -33147,7 +30460,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/secure_closet/security,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -33164,6 +30480,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/hos)
"bre" = (
@@ -33176,6 +30495,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33187,6 +30509,9 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33199,12 +30524,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+ dir = 1
},
/obj/structure/table/wood,
/obj/item/clothing/mask/cigarette/cigar,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33216,6 +30540,9 @@
/obj/machinery/computer/security{
network = list("SS13","Mining Outpost")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33225,6 +30552,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -33234,6 +30564,9 @@
dir = 4
},
/obj/machinery/computer/prisoner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -33245,24 +30578,33 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brn" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -33273,7 +30615,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brp" = (
/obj/structure/window/reinforced{
dir = 8
@@ -33312,30 +30654,25 @@
/turf/space,
/area/space/nearstation)
"brt" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/space,
-/area/space/nearstation)
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/library)
"bru" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"brv" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/space,
-/area/space/nearstation)
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/library)
"brw" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -33356,7 +30693,8 @@
"bry" = (
/obj/machinery/air_sensor{
frequency = 1441;
- id_tag = "mix_sensor"
+ id_tag = "waste_sensor";
+ output = 63
},
/turf/simulated/floor/engine/vacuum,
/area/atmos)
@@ -33368,8 +30706,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -33381,11 +30718,10 @@
req_access_txt = "67"
},
/turf/simulated/floor/plating,
-/area/security/prison)
+/area/security/permabrig)
"brA" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 8;
- tag = "icon-manifold-g (NORTH)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -33405,8 +30741,7 @@
/area/atmos)
"brD" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 8
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -33431,8 +30766,7 @@
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6;
- initialize_directions = 6;
- level = 2
+ initialize_directions = 6
},
/obj/item/wrench,
/obj/item/crowbar,
@@ -33446,8 +30780,7 @@
"brH" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33478,98 +30811,60 @@
/area/atmos)
"brK" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
+ dir = 10
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"brL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- name = "External Waste Ports to Filter";
- on = 1;
- target_pressure = 101
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"brM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
/turf/simulated/floor/plating,
-/area/atmos)
+/area/maintenance/starboard2)
"brN" = (
/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"brO" = (
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"brP" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"brQ" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"brR" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/structure/sign/nosmoking_2{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
"brS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard2)
"brT" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "dark"
},
-/area/hallway/primary/port)
+/area/construction/hallway)
"brU" = (
/obj/structure/cable{
d1 = 1;
@@ -33577,15 +30872,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10;
- level = 2
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=engi3";
location = "engi2"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -33604,13 +30895,6 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/storage/tech)
-"brY" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/wall,
-/area/storage/tech)
"brZ" = (
/obj/structure/cable{
d1 = 1;
@@ -33618,41 +30902,31 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bsa" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bsb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "vault"
},
-/area/hydroponics)
+/area/construction/hallway)
"bsc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hydroponics)
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/engine/engine_smes)
"bsd" = (
/obj/structure/table/reinforced,
/obj/item/seeds/lime,
@@ -33663,41 +30937,29 @@
/obj/item/reagent_containers/food/snacks/grown/banana,
/obj/machinery/door/window/eastright{
dir = 8;
- icon_state = "right";
name = "Hydroponics Desk";
- req_access_txt = "35";
- tag = "icon-right"
+ req_access_txt = "35"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bse" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door_control{
+ id = "bridge blast north";
+ name = "North Bridge Blast Door Control";
+ pixel_y = 32;
+ req_access_txt = "19"
},
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"bsf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"bsf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33705,12 +30967,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33718,58 +30976,30 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bsi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bsj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bsk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/hallway/primary/central)
"bsl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/landmark{
name = "Observer-Start"
},
@@ -33778,28 +31008,15 @@
},
/area/hallway/primary/central)
"bsm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/hallway/primary/central)
"bsn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/obj/machinery/camera{
c_tag = "Central Ring Hallway North";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33807,34 +31024,13 @@
},
/area/hallway/primary/central)
"bso" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central)
-"bsp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
+/area/library)
"bsq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33842,10 +31038,6 @@
},
/area/hallway/primary/central)
"bsr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -33856,43 +31048,12 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bss" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bst" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"bsu" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -33926,13 +31087,16 @@
/obj/structure/closet/wardrobe/miner,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bsD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -33945,20 +31109,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bsE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -33970,19 +31130,31 @@
},
/obj/structure/table/reinforced,
/obj/item/phone,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/security/prisonershuttle)
"bsG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -33991,276 +31163,90 @@
},
/area/security/prisonershuttle)
"bsH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
+ name = "Labor Camp Office";
req_access_txt = "63"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/prisonershuttle)
"bsI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"bsJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bsK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/brig)
-"bsL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"bsM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"bsN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bsO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bsP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/main)
-"bsQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/main)
-"bsR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"bsS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"bsT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 8;
icon_state = "red"
},
-/area/security/main)
-"bsU" = (
-/obj/structure/closet/secure_closet/security,
+/area/security/brig)
+"bsL" = (
+/turf/simulated/wall/r_wall,
+/area/security/interrogation)
+"bsT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access_txt = "63";
+ req_one_access_txt = null
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
+"bsU" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bsV" = (
/obj/structure/cable{
d1 = 1;
@@ -34282,6 +31268,21 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -7;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ id = "Secure Gate";
+ name = "Brig Lockdown";
+ pixel_x = 3;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -34295,8 +31296,7 @@
"bsY" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/extinguisher_cabinet{
pixel_x = 28;
@@ -34319,7 +31319,11 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/obj/machinery/computer/shuttle/labor,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
/area/security/prisonershuttle)
"bta" = (
/obj/structure/closet/secure_closet/hos,
@@ -34327,7 +31331,7 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"btb" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -34340,33 +31344,36 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"btc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
"btd" = (
/turf/simulated/wall/r_wall,
/area/turret_protected/ai)
"bte" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
"btf" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 4;
external_pressure_bound = 0;
- external_pressure_bound_default = 0;
frequency = 1441;
- id_tag = "mix_out";
+ icon_state = "in";
+ id_tag = "waste_out";
initialize_directions = 1;
internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- layer = 2.4;
- name = "mix vent";
on = 1;
pressure_checks = 2;
- pressure_checks_default = 2;
pump_direction = 0
},
/turf/simulated/floor/engine/vacuum,
@@ -34374,8 +31381,7 @@
"btg" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -34384,21 +31390,17 @@
/area/atmos)
"bth" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "gas pump";
- on = 0
+ dir = 1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"bti" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 1;
- level = 2
+ dir = 1
},
/obj/effect/landmark/start{
name = "Life Support Specialist"
@@ -34418,12 +31420,14 @@
},
/area/atmos)
"btk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/area/atmos)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"btl" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -34431,8 +31435,7 @@
on = 1
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -34446,8 +31449,7 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -34467,6 +31469,12 @@
/area/atmos)
"bto" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "External Waste Ports to Filter";
+ on = 1;
+ target_pressure = 101
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btp" = (
@@ -34482,11 +31490,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -34499,15 +31505,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btr" = (
@@ -34517,19 +31518,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Atmospherics Desk";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bts" = (
@@ -34539,14 +31535,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/atmos)
"btt" = (
@@ -34556,15 +31548,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btu" = (
@@ -34574,22 +31562,15 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -34600,10 +31581,14 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"btx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"bty" = (
/turf/simulated/floor/plasteel{
dir = 1;
@@ -34617,14 +31602,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -34664,8 +31648,7 @@
"btD" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -34675,14 +31658,15 @@
/area/hydroponics)
"btE" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -34695,20 +31679,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"btG" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitered"
@@ -34752,16 +31731,16 @@
/turf/simulated/wall/r_wall,
/area/security/nuke_storage)
"btR" = (
-/obj/machinery/suit_storage_unit/security,
/obj/item/radio/intercom{
pixel_x = -6;
pixel_y = -28
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/suit_storage_unit/security/hos,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"btS" = (
/obj/machinery/door/airlock/external{
id_tag = "laborcamp_home";
@@ -34777,6 +31756,7 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btU" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -34789,16 +31769,31 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window/brigdoor{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"btV" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/closet/emcloset,
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/prisonershuttle)
-"btV" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
"btW" = (
/obj/structure/cable{
d1 = 4;
@@ -34806,13 +31801,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btX" = (
@@ -34828,11 +31823,10 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/door/window/brigdoor{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btY" = (
@@ -34841,10 +31835,10 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/window/brigdoor{
+ dir = 1
},
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -34859,101 +31853,97 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
-"bua" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
"bub" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"buc" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/main)
+/turf/simulated/wall,
+/area/security/interrogation)
"bud" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bue" = (
/obj/structure/chair/office/dark{
- dir = 1
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/main)
-"buf" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bug" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/main)
-"buh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/main)
-"bui" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
+"bue" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/obj/item/radio/intercom/interrogation{
+ broadcasting = 1;
+ listening = 0;
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/interrogation)
+"buf" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bug" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 8
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"buh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bui" = (
+/obj/structure/table/wood,
+/obj/machinery/camera{
+ c_tag = "Security Interrogation Obsersvation Room";
+ dir = 8;
+ network = list("SS13","Security")
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/radio/intercom/interrogation{
+ pixel_y = 28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"buj" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -34970,7 +31960,7 @@
"buk" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/hos,
+/obj/item/toy/figure/crew/hos,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -35007,7 +31997,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -35020,8 +32010,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -35032,17 +32021,14 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/atmos)
"buq" = (
/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -35058,7 +32044,6 @@
},
/area/atmos)
"bus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/unary/thermomachine/freezer{
dir = 4
},
@@ -35086,7 +32071,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/atmos)
@@ -35103,7 +32087,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/atmos)
@@ -35113,7 +32096,6 @@
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/atmos)
@@ -35127,16 +32109,15 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/atmos)
"buy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"buz" = (
@@ -35146,37 +32127,41 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/atmos)
"buA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"buB" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/atmos)
-"buC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"buD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
+/area/engine/engine_smes)
+"buD" = (
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"buE" = (
@@ -35186,32 +32171,40 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel,
/area/atmos)
"buF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"buG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -35221,14 +32214,13 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/atmos)
"buI" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -35243,11 +32235,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8;
- level = 2
+ dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -35306,7 +32297,6 @@
"buP" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -35328,9 +32318,7 @@
"buS" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -35341,36 +32329,15 @@
/area/hydroponics)
"buU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"buV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"buW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"buX" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4;
- level = 2
+ dir = 4
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -35390,14 +32357,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"buZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
+/area/maintenance/starboard2)
"bva" = (
/obj/structure/cable{
d1 = 1;
@@ -35410,20 +32370,19 @@
icon_state = "neutralfull"
},
/area/hallway/primary/central)
-"bvb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bvc" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/security/nuke_storage)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/engine_smes)
"bvd" = (
/obj/machinery/light/small{
dir = 1
@@ -35444,10 +32403,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
- },
+/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bvf" = (
/obj/machinery/light/small{
@@ -35487,102 +32443,90 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvm" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvn" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
-"bvo" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+"bvr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bvp" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bvs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"bvt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/interrogation)
+"bvu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/prisonershuttle)
-"bvq" = (
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/prisonershuttle)
-"bvr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/main)
-"bvs" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/security/main)
-"bvt" = (
-/turf/simulated/floor/plasteel,
-/area/security/main)
-"bvu" = (
-/obj/structure/sign/goldenplaque{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel,
-/area/security/main)
+/area/security/interrogation)
"bvv" = (
/obj/structure/window/reinforced,
/obj/machinery/camera{
@@ -35590,30 +32534,53 @@
dir = 1;
network = list("SS13","Minisat")
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
"bvw" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/main)
-"bvx" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/main)
+/obj/structure/window/reinforced/polarized{
+ dir = 8
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/interrogation)
+"bvx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/button/windowtint{
+ id = 1;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bvy" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -35652,15 +32619,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/security/prison)
+/area/security/permabrig)
"bvC" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/cable{
@@ -35687,14 +32651,12 @@
/area/atmos)
"bvE" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 5;
- level = 2
+ dir = 5
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/atmos)
"bvF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Air to Distro";
@@ -35702,7 +32664,6 @@
target_pressure = 101
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35718,7 +32679,6 @@
},
/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35726,20 +32686,16 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
"bvI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Air to Waste";
- on = 0;
target_pressure = 101
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -35758,10 +32714,13 @@
/turf/simulated/wall/r_wall,
/area/atmos)
"bvL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/library)
"bvM" = (
/obj/structure/cable{
d1 = 1;
@@ -35774,13 +32733,12 @@
name = "Atmospherics Access";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/atmos)
"bvN" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
/obj/machinery/light{
dir = 8
},
@@ -35788,6 +32746,10 @@
dir = 8;
pixel_x = -24
},
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
@@ -35797,9 +32759,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -35817,6 +32776,7 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -35835,7 +32795,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -35848,9 +32807,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/window{
base_state = "right";
dir = 1;
@@ -35863,6 +32819,9 @@
},
/obj/structure/window/reinforced,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bvS" = (
@@ -35877,31 +32836,30 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/plasticflaps{
opacity = 1
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bvT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"bvT" = (
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvU" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/computer/general_air_control/large_tank_control{
frequency = 1441;
- input_tag = "mix_in";
+ input_tag = "waste_in";
name = "Gas Mix Tank Control";
- output_tag = "mix_out";
- sensors = list("mix_sensor" = "Tank")
+ output_tag = "waste_out";
+ sensors = list("waste_sensor" = "Tank")
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -36011,8 +32969,7 @@
department = "Hydroponics";
departmentType = 2;
name = "Hydroponics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36029,6 +32986,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwd" = (
@@ -36043,6 +33007,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwe" = (
@@ -36057,6 +33028,13 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwf" = (
@@ -36068,6 +33046,13 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwh" = (
@@ -36088,6 +33073,13 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwi" = (
@@ -36096,6 +33088,13 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwj" = (
@@ -36110,6 +33109,13 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwk" = (
@@ -36124,6 +33130,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwl" = (
@@ -36138,133 +33151,127 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bwm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bwn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"bwo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bwp" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central)
-"bwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/bridge)
+"bwo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"bwp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
+"bwq" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/security/nuke_storage)
"bwr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Vault";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/nuke_storage)
"bws" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard2)
"bwt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bwu" = (
-/turf/simulated/floor/greengrid,
-/area/security/nuke_storage)
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engine_smes)
"bwv" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/nuke_storage)
"bwy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "red"
},
/area/security/prisonershuttle)
"bwz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bwA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Security Hallway North";
- dir = 8;
- network = list("SS13","Security")
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -36272,48 +33279,45 @@
},
/area/security/brig)
"bwB" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_one_access_txt = "1;4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "vault"
},
-/area/security/main)
+/area/security/interrogation)
"bwC" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
},
-/turf/simulated/floor/plating,
-/area/security/main)
+/area/security/brig)
"bwD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access_txt = "63";
+ req_one_access_txt = null
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/security/main)
+/area/security/interrogation)
"bwE" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -36365,11 +33369,11 @@
},
/area/turret_protected/ai)
"bwI" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"bwJ" = (
/obj/structure/cable{
d1 = 1;
@@ -36382,19 +33386,22 @@
/area/turret_protected/ai)
"bwK" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"bwL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/turret_protected/ai)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bwM" = (
/obj/structure/window/reinforced{
dir = 8
@@ -36422,30 +33429,35 @@
/turf/simulated/wall/r_wall,
/area/engine/break_room)
"bwR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/starboard2)
"bwS" = (
-/obj/machinery/status_display,
/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/wall/r_wall,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/engine/break_room)
"bwT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
"bwU" = (
/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/wall/r_wall,
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/engine/break_room)
"bwV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/kitchen_machine/microwave,
/obj/structure/sign/poster/official/help_others{
pixel_x = -32
},
+/obj/structure/table/reinforced,
+/mob/living/simple_animal/bot/floorbot,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 9;
+ icon_state = "yellow"
},
/area/engine/break_room)
"bwW" = (
@@ -36453,24 +33465,25 @@
dir = 1
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 1;
+ icon_state = "yellow"
},
/area/engine/break_room)
"bwX" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 5;
+ icon_state = "yellow"
},
/area/engine/break_room)
"bwY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 8
},
@@ -36480,8 +33493,7 @@
pixel_y = 24
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -22;
- pixel_y = 0
+ pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36494,10 +33506,12 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bxa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36508,8 +33522,7 @@
/obj/item/crowbar,
/obj/item/analyzer,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Atmospherics Front Desk";
@@ -36535,18 +33548,18 @@
icon_state = "0-2"
},
/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/atmos)
"bxe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port)
+/area/hallway/primary/central)
"bxf" = (
/obj/structure/cable{
d1 = 1;
@@ -36555,9 +33568,6 @@
tag = ""
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -36566,8 +33576,7 @@
"bxg" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/wrench,
/obj/item/clothing/mask/gas,
@@ -36593,13 +33602,11 @@
/area/storage/tech)
"bxk" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Secure Technical Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -36607,9 +33614,9 @@
"bxl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -36618,7 +33625,7 @@
"bxm" = (
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- dir = 9;
+ dir = 1;
icon_state = "darkblue"
},
/area/bridge)
@@ -36684,7 +33691,6 @@
/area/bridge)
"bxt" = (
/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/mechanical,
/obj/machinery/status_display{
pixel_y = 32
},
@@ -36707,7 +33713,7 @@
/area/bridge)
"bxv" = (
/obj/machinery/computer/atmos_alert,
-/obj/machinery/computer/station_alert,
+/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkyellow"
@@ -36721,7 +33727,7 @@
pixel_y = 1
},
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 1;
icon_state = "darkyellow"
},
/area/bridge)
@@ -36734,16 +33740,11 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Auxiliary Storage";
- req_access_txt = "0";
req_one_access_txt = "65;12"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bxy" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -36755,12 +33756,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -36774,8 +33776,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36789,14 +33793,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/vault{
- icon_state = "door_locked";
locked = 1;
req_access_txt = "53"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -36809,8 +33814,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36824,8 +33831,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
@@ -36840,7 +33849,10 @@
dir = 10
},
/obj/machinery/nuclearbomb,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bxF" = (
/obj/structure/cable{
@@ -36866,46 +33878,50 @@
},
/area/security/nuke_storage)
"bxJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/west,
+/obj/structure/closet/secure_closet/brig,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
},
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bxK" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Processing";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "redfull"
},
/area/security/prisonershuttle)
"bxL" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bxM" = (
/obj/structure/window/reinforced{
@@ -36920,119 +33936,50 @@
network = list("Minisat","SS13");
pixel_y = -22
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
"bxN" = (
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Security Meeting Room South";
- dir = 1;
- network = list("SS13","Security")
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/main)
-"bxO" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/prisonershuttle)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
"bxP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/brig)
"bxQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
-"bxR" = (
-/turf/simulated/wall,
-/area/security/main)
"bxS" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/main)
-"bxT" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bxU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bxV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bxW" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
"bxX" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
@@ -37051,9 +33998,6 @@
},
/area/turret_protected/ai)
"bxZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -37062,26 +34006,11 @@
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
-"bya" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/greengrid,
-/area/turret_protected/ai)
"byb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -37091,16 +34020,11 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -37111,15 +34035,10 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -37130,23 +34049,14 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bye" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -37177,20 +34087,16 @@
"byj" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "atmo_tank_outer";
locked = 1;
name = "Atmos External Access";
- req_access = null;
req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"byk" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -37219,14 +34125,17 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"byo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
"byp" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/rglass,
@@ -37247,47 +34156,34 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"byr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
-/area/engine/break_room)
+/area/engine/engine_smes)
"bys" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/engine/break_room)
"byt" = (
-/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
-/obj/item/storage/box/donkpockets,
+/obj/structure/rack,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/engine/break_room)
-"byu" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 8;
+ icon_state = "yellow"
},
/area/engine/break_room)
"byv" = (
-/obj/machinery/vending/cola,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 4;
+ icon_state = "yellow"
},
/area/engine/break_room)
-"byw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 0
- },
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
"byx" = (
/obj/structure/cable{
d1 = 1;
@@ -37300,12 +34196,10 @@
name = "Atmospherics Access";
req_access_txt = "24"
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"byy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
/area/engine/break_room)
"byz" = (
/obj/machinery/status_display{
@@ -37328,6 +34222,9 @@
name = "Life Support Specialist"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -37340,7 +34237,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -37356,6 +34255,9 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
@@ -37373,7 +34275,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/pen,
@@ -37381,16 +34282,19 @@
name = "Atmospherics Desk"
},
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
name = "Atmospherics Desk";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"byF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -37403,12 +34307,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 6;
- initialize_directions = 6;
- level = 2
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -37420,8 +34322,7 @@
},
/obj/machinery/camera{
c_tag = "Port Hallway North";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
@@ -37468,19 +34369,14 @@
icon_state = "2-4";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"byK" = (
/obj/structure/cable{
d1 = 4;
@@ -37492,12 +34388,8 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"byL" = (
/obj/structure/cable{
d1 = 4;
@@ -37511,12 +34403,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"byM" = (
/obj/structure/cable{
d1 = 4;
@@ -37524,18 +34412,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"byN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
@@ -37551,11 +34436,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -37574,34 +34456,20 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"byQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -37610,16 +34478,13 @@
/obj/item/storage/firstaid/regular,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkbluecorners"
+ icon_state = "dark"
},
/area/bridge)
"byS" = (
@@ -37672,33 +34537,38 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/door_control{
+ id = "bridge blast east";
+ name = "East Bridge Blast Door Control";
+ pixel_x = 26;
+ req_access_txt = "19"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"byY" = (
/obj/structure/table/reinforced,
-/obj/item/assembly/timer,
-/obj/item/assembly/signaler,
-/obj/item/wrench,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
+ },
+/obj/item/flash,
+/obj/item/storage/box/ids,
+/obj/item/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "darkyellowcorners"
+ icon_state = "dark"
},
/area/bridge)
"byZ" = (
@@ -37713,13 +34583,18 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast north";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/bridge)
"bza" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -37727,8 +34602,9 @@
},
/area/hallway/primary/central)
"bzb" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bzc" = (
@@ -37736,10 +34612,7 @@
/turf/simulated/wall/r_wall,
/area/security/nuke_storage)
"bzd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bzf" = (
@@ -37754,200 +34627,162 @@
/turf/space,
/area/space)
"bzg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bzh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
-"bzi" = (
+/area/hallway/primary/starboard)
+"bzh" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
+ icon_state = "2-8";
tag = ""
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/brig)
"bzj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/item/radio/intercom{
+ pixel_y = 28
},
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 5;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bzk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/prisonershuttle)
-"bzl" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/brig)
"bzm" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bzn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzp" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bzq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bzt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/item/folder/red,
-/obj/item/book/manual/security_space_law,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bzu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/construction/hallway)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"bzn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzq" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"bzr" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"bzv" = (
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
@@ -37961,72 +34796,52 @@
},
/area/turret_protected/ai)
"bzx" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
+/area/library)
"bzy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bzz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"bzA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"bzB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
-"bzC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
"bzD" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
@@ -38041,29 +34856,23 @@
},
/area/engine/gravitygenerator)
"bzF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/engine/gravitygenerator)
+/area/crew_quarters/locker)
"bzG" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/sign/electricshock{
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
"bzH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/status_display{
pixel_y = 32
},
@@ -38072,6 +34881,7 @@
on = 1
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bzI" = (
@@ -38079,27 +34889,15 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bzJ" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/power/terminal{
dir = 4
},
@@ -38119,8 +34917,7 @@
charge = 5e+006
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -38135,10 +34932,8 @@
id_tag = "atmo_tank_vent"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "atmo_tank_airlock";
pixel_x = 57;
- pixel_y = 0;
req_access_txt = "32";
tag_airpump = "atmo_tank_pump";
tag_chamber_sensor = "atmo_tank_sensor";
@@ -38146,7 +34941,6 @@
tag_interior_door = "atmo_tank_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "atmo_tank_sensor";
pixel_x = 57;
pixel_y = 8
@@ -38169,7 +34963,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/break_room)
"bzP" = (
@@ -38178,37 +34971,23 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bzQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/wall,
-/area/engine/break_room)
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"bzR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/wall,
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
/area/engine/break_room)
"bzS" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 8;
+ icon_state = "yellow"
},
/area/engine/break_room)
-"bzT" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/engine/break_room)
-"bzU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
"bzV" = (
/obj/structure/cable{
d1 = 1;
@@ -38217,10 +34996,12 @@
tag = ""
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bzW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -38248,15 +35029,13 @@
},
/area/atmos)
"bAa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/atmos)
+/area/library)
"bAb" = (
/obj/structure/table/reinforced,
/obj/item/tank/internals/emergency_oxygen,
@@ -38269,24 +35048,18 @@
},
/area/atmos)
"bAc" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/atmos)
"bAd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
+/obj/structure/urinal{
+ pixel_y = 28
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
"bAe" = (
/obj/structure/cable{
d1 = 1;
@@ -38294,8 +35067,10 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -38317,8 +35092,7 @@
/obj/item/plant_analyzer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bAh" = (
@@ -38352,8 +35126,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bAl" = (
@@ -38363,35 +35136,36 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bAm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11;
- level = 1
+ icon_state = "neutral"
},
-/turf/simulated/wall,
-/area/storage/primary)
+/area/crew_quarters/fitness)
"bAn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/turf/simulated/wall,
-/area/storage/primary)
-"bAo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/storage/primary)
+/area/engine/engineering)
+"bAo" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel,
+/area/maintenance/fore)
"bAp" = (
/obj/structure/table/reinforced,
/obj/item/aiModule/reset,
@@ -38401,16 +35175,16 @@
/turf/simulated/floor/plasteel,
/area/storage/tech)
"bAq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "yellowfull"
},
-/area/hallway/primary/central)
+/area/engine/engine_smes)
"bAr" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small{
@@ -38429,29 +35203,26 @@
"bAt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAu" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAv" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAw" = (
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkpurple"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAx" = (
@@ -38464,13 +35235,17 @@
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkyellow"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAy" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/mining_voucher,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38482,9 +35257,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38505,25 +35278,20 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bAC" = (
-/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the RD's goons from the safety of his office.";
name = "Research Monitor";
network = list("Research","Research Outpost","RD");
- pixel_x = 0;
pixel_y = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/wall,
/area/bridge)
"bAD" = (
/obj/structure/cable{
@@ -38535,7 +35303,7 @@
/obj/machinery/computer/shuttle/mining,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkpurple"
+ icon_state = "darkbrown"
},
/area/bridge)
"bAE" = (
@@ -38548,28 +35316,19 @@
"bAF" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
"bAG" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "darkblue"
+ icon_state = "dark"
},
/area/bridge)
-"bAH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central)
"bAI" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/light/small,
/obj/structure/closet/crate,
@@ -38585,11 +35344,10 @@
/obj/machinery/ai_status_display{
pixel_y = -32
},
-/obj/item/clothing/accessory/stethoscope,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "vault"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
+/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bAK" = (
/obj/machinery/light/small,
@@ -38607,196 +35365,247 @@
icon_state = "vault"
},
/area/security/nuke_storage)
-"bAM" = (
+"bAN" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"bAO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bAP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bAQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bAR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bAT" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bAV" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bAW" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access_txt = "2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bAN" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
-"bAO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
-"bAP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
-"bAQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/security/prisonershuttle)
-"bAR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"bAS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bAT" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/brig)
-"bAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/security/main)
-"bAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/main)
-"bAY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bAZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/main)
-"bBa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bBb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bBc" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bBd" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/turret_protected/ai)
-"bBe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/brig)
+"bAY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 2;
+ icon_state = "rightsecure";
+ id = "Cell 4";
+ name = "Cell 4";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/brig)
+"bBa" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bBc" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor{
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
+"bBd" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
/area/turret_protected/ai)
"bBf" = (
/turf/simulated/floor/plasteel{
@@ -38804,25 +35613,14 @@
},
/area/turret_protected/ai)
"bBg" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "AI-window";
- name = "Bridge Blast Doors";
- opacity = 0
+ name = "AI Blast Doors"
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/turret_protected/ai)
-"bBh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/greengrid,
-/area/turret_protected/ai)
"bBi" = (
/turf/simulated/floor/plasteel{
dir = 1;
@@ -38836,34 +35634,26 @@
},
/area/engine/gravitygenerator)
"bBk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "freezerfloor"
},
-/area/engine/gravitygenerator)
+/area/crew_quarters/locker/locker_toilet)
"bBl" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
-"bBm" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/engine/break_room)
"bBn" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -38871,71 +35661,40 @@
/area/engine/gravitygenerator)
"bBo" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bBp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
-"bBq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/wall/r_wall,
-/area/engine/gravitygenerator)
"bBr" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bBs" = (
-/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
- id_tag = "atmos_eva_inner";
+ id_tag = "atmos_tank_inner";
locked = 1;
name = "Atmos External Access";
- req_access = null;
req_access_txt = "32"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bBt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Gravity Generation Access";
dir = 4;
@@ -38950,22 +35709,20 @@
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bBu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/wall,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker/locker_toilet)
"bBv" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/engine/break_room)
"bBw" = (
@@ -38975,10 +35732,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
@@ -38997,7 +35750,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/break_room)
"bBy" = (
@@ -39013,10 +35765,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
@@ -39025,28 +35773,20 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bBz" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/break_room)
"bBA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bBB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -39056,35 +35796,10 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bBC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bBD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bBE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "cautioncorner"
},
/area/engine/break_room)
"bBF" = (
@@ -39092,15 +35807,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/light{
@@ -39119,11 +35829,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "caution"
@@ -39142,25 +35847,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "caution"
},
/area/engine/break_room)
"bBI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -39182,7 +35880,6 @@
},
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39193,7 +35890,6 @@
},
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39202,7 +35898,6 @@
/obj/item/folder/yellow,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/atmos)
@@ -39214,8 +35909,7 @@
department = "Atmospherics";
departmentType = 3;
name = "Atmospherics Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/status_display{
pixel_y = -32
@@ -39232,6 +35926,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39249,8 +35949,7 @@
/obj/item/healthanalyzer,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bBQ" = (
@@ -39287,20 +35986,26 @@
"bBU" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/aicard,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bBV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/storage/primary)
+/obj/machinery/camera{
+ c_tag = "Central Ring Hallway East";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bBW" = (
/obj/structure/cable{
d1 = 1;
@@ -39308,9 +36013,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/plasticflaps{
opacity = 1
},
@@ -39335,26 +36037,24 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bBZ" = (
+/obj/machinery/requests_console{
+ department = "Primary Tool Storage";
+ name = "Primary Tool Storage Console";
+ pixel_y = 30
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/machinery/disposal,
-/obj/machinery/requests_console{
- department = "Primary Tool Storage";
- departmentType = 0;
- name = "Primary Tool Storage Console";
- pixel_x = 0;
- pixel_y = 30
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bCa" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bCb" = (
@@ -39418,16 +36118,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -39464,9 +36163,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -39475,41 +36171,15 @@
name = "Bridge";
req_access_txt = "19"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bCi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bCj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39542,6 +36212,9 @@
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39557,6 +36230,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39569,9 +36245,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39590,31 +36267,22 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/bridge)
-"bCo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/machinery/door_control{
+ id = "bridge blast west";
+ name = "West Bridge Blast Door Control";
+ pixel_x = null;
+ pixel_y = 24;
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39644,6 +36312,9 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39660,12 +36331,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/bridge)
@@ -39680,6 +36350,9 @@
dir = 4
},
/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -39692,21 +36365,19 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor/southright,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
/area/bridge)
"bCt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -39718,17 +36389,19 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/window/reinforced,
-/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -39746,6 +36419,9 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
@@ -39767,6 +36443,9 @@
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39783,14 +36462,15 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39808,6 +36488,9 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39825,13 +36508,23 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/door_control{
+ id = "bridge blast east";
+ name = "East Bridge Blast Door Control";
+ pixel_x = null;
+ pixel_y = 24;
+ req_access_txt = "19"
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39843,12 +36536,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39879,6 +36572,9 @@
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39894,6 +36590,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -39906,10 +36605,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39929,136 +36629,118 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"bCE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bCI" = (
-/obj/structure/sign/electricshock{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"bCJ" = (
-/turf/simulated/wall,
-/area/security/prisonershuttle)
"bCK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/prisonershuttle)
-"bCL" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"bCL" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
name = "HoS Junction";
sortType = 18
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bCM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/structure/chair{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bCN" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bCO" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/chair{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_y = -28
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 10;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bCP" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -26
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
- },
+/obj/structure/bed,
+/obj/item/bedsheet/red,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "red"
},
-/area/security/prisonershuttle)
+/area/security/brig)
"bCQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/security/brig)
-"bCR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bCS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
+/obj/machinery/door_timer/cell_2{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bCT" = (
/obj/effect/landmark{
@@ -40066,7 +36748,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/radio/intercom/private{
@@ -40074,7 +36755,6 @@
pixel_y = -10
},
/obj/item/radio/intercom/custom{
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/greengrid,
@@ -40087,13 +36767,13 @@
},
/area/turret_protected/ai)
"bCV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bCW" = (
@@ -40154,6 +36834,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bDa" = (
@@ -40162,7 +36843,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/radio/intercom/private{
@@ -40170,7 +36850,6 @@
pixel_y = -10
},
/obj/item/radio/intercom/custom{
- pixel_x = 0;
pixel_y = 28
},
/turf/simulated/floor/greengrid,
@@ -40180,8 +36859,7 @@
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
@@ -40204,16 +36882,11 @@
},
/area/engine/gravitygenerator)
"bDe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 1
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 22;
- pixel_y = 0
+ pixel_x = 22
},
/obj/structure/closet/radiation,
/obj/effect/decal/warning_stripes/northeast,
@@ -40222,6 +36895,12 @@
"bDf" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -40229,20 +36908,25 @@
/area/engine/gravitygenerator)
"bDg" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDi" = (
@@ -40257,6 +36941,12 @@
name = "Gravity Generator Foyer";
req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDj" = (
@@ -40272,8 +36962,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDk" = (
@@ -40284,6 +36979,12 @@
tag = ""
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDl" = (
@@ -40293,10 +36994,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bDm" = (
@@ -40306,29 +37010,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bDn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDo" = (
@@ -40338,10 +37026,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDp" = (
@@ -40356,12 +37047,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDq" = (
@@ -40371,10 +37063,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDr" = (
@@ -40384,15 +37077,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDs" = (
@@ -40402,8 +37098,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bDt" = (
@@ -40413,11 +37112,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
dir = 1;
- initialize_directions = 11;
- level = 1
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40431,41 +37134,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bDv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bDw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40485,42 +37161,30 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bDy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
},
/area/engine/break_room)
-"bDz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"bDA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
"bDB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
"bDC" = (
/obj/structure/cable{
d1 = 1;
@@ -40528,25 +37192,25 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
"bDD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+/obj/machinery/light/small{
+ dir = 1
},
-/area/hallway/primary/port)
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"bDE" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/status_display{
@@ -40554,8 +37218,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bDF" = (
@@ -40571,17 +37234,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bDH" = (
@@ -40608,8 +37268,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bDJ" = (
@@ -40688,8 +37347,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -40700,6 +37358,7 @@
/area/storage/primary)
"bDR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -40720,89 +37379,39 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Bridge";
req_access_txt = "19"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/bridge)
"bDU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bDV" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "HoP Junction";
- sortType = 13
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bDW" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
-"bDX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/bridge)
"bDY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -40817,85 +37426,102 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/bridge)
+/area/hallway/primary/central)
"bEb" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
icon_state = "darkblue"
},
/area/bridge)
+"bEc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/bridge)
"bEd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "darkblue"
},
/area/bridge)
"bEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 8
},
/obj/item/restraints/handcuffs,
/obj/item/flash,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEg" = (
/obj/structure/cable{
@@ -40905,58 +37531,46 @@
tag = ""
},
/obj/machinery/computer/communications,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
/area/bridge)
"bEh" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
/area/bridge)
"bEi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/wood,
/obj/structure/window/reinforced{
dir = 4
},
/obj/item/flashlight/lamp,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 8;
icon_state = "darkblue"
},
/area/bridge)
"bEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "darkblue"
+ dir = 8;
+ icon_state = "vault"
},
/area/bridge)
"bEl" = (
@@ -40966,24 +37580,38 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bEn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40991,125 +37619,91 @@
},
/area/bridge)
"bEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bEp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "yellowcorner"
},
/area/hallway/primary/central)
"bEq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bEr" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
-"bEs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
-"bEt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bEu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bEv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
/area/security/brig)
"bEw" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/structure/closet/emcloset,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/security/prisonershuttle)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
"bEx" = (
/turf/simulated/wall/r_wall,
/area/security/warden)
"bEy" = (
-/obj/structure/closet/secure_closet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bEz" = (
-/obj/structure/closet/secure_closet,
/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/chair/comfy/teal{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/security/brig)
+"bEz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bEA" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -41118,27 +37712,9 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"bEB" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bEC" = (
-/obj/machinery/suit_storage_unit/security,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
"bED" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -41155,7 +37731,6 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/landmark/start{
@@ -41176,7 +37751,6 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bEF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 8
},
@@ -41192,15 +37766,14 @@
},
/area/engine/gravitygenerator)
"bEH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
-/area/engine/gravitygenerator)
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"bEI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -41213,42 +37786,32 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bEK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bEL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/engine/gravitygenerator)
"bEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/power/port_gen/pacman,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -41260,66 +37823,33 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bEO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
-"bEP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bEQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/camera{
c_tag = "Engineering Storage";
dir = 1;
network = list("SS13","Engineering")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
"bER" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
"bES" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -41327,8 +37857,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -41354,14 +37883,15 @@
/area/engine/break_room)
"bEV" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "yellow"
},
/area/engine/break_room)
"bEW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -41375,15 +37905,17 @@
},
/area/engine/break_room)
"bEY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/area/engine/break_room)
+/area/crew_quarters/sleep)
"bEZ" = (
/obj/structure/cable{
d1 = 1;
@@ -41391,13 +37923,15 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bFa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
pixel_x = 32;
pixel_y = 32
@@ -41408,6 +37942,7 @@
},
/area/engine/break_room)
"bFb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -41424,7 +37959,6 @@
},
/area/engine/break_room)
"bFd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/northwest,
/obj/machinery/camera{
@@ -41436,9 +37970,6 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bFe" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/light{
dir = 1;
on = 1
@@ -41452,6 +37983,7 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bFg" = (
@@ -41463,12 +37995,18 @@
/turf/simulated/floor/plating,
/area/engine/break_room)
"bFh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellowcorner"
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/port)
+/area/crew_quarters/sleep)
"bFi" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -41519,7 +38057,6 @@
/obj/item/stock_parts/micro_laser,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -41529,7 +38066,7 @@
/area/storage/tech)
"bFm" = (
/obj/structure/rack,
-/obj/item/floor_painter,
+/obj/item/painter,
/obj/item/toner,
/obj/machinery/status_display{
pixel_x = -32
@@ -41575,58 +38112,26 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
-"bFt" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bFu" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast west";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
/turf/simulated/floor/plating,
/area/bridge)
-"bFv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bFw" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/bridge)
"bFx" = (
/obj/machinery/light_switch{
pixel_x = -8;
@@ -41643,32 +38148,16 @@
/area/bridge)
"bFz" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
/area/bridge)
-"bFA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "darkblue"
- },
-/area/bridge)
"bFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Bridge Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -41677,7 +38166,6 @@
"bFC" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -41694,10 +38182,16 @@
},
/area/bridge)
"bFE" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "darkblue"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "bridge blast east";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/bridge)
"bFF" = (
/obj/structure/rack,
@@ -41705,9 +38199,8 @@
/obj/item/aicard,
/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ dir = 6;
+ icon_state = "darkblue"
},
/area/bridge)
"bFG" = (
@@ -41716,9 +38209,7 @@
dir = 8
},
/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bFH" = (
/obj/structure/cable{
@@ -41730,6 +38221,8 @@
/obj/structure/chair/comfy/black{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
"bFI" = (
@@ -41739,9 +38232,8 @@
/turf/simulated/floor/carpet,
/area/bridge)
"bFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/bridge)
@@ -41752,33 +38244,40 @@
},
/obj/item/folder/blue,
/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bFL" = (
/obj/structure/rack,
/obj/item/storage/toolbox/emergency,
/obj/item/wrench,
/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -3
},
-/area/bridge)
-"bFM" = (
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 10;
icon_state = "darkblue"
},
/area/bridge)
+"bFM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
"bFN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -41787,8 +38286,7 @@
"bFO" = (
/obj/machinery/camera{
c_tag = "Bridge Starboard";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -41802,6 +38300,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
},
@@ -41871,30 +38370,27 @@
/area/security/detectives_office)
"bFX" = (
/obj/structure/disposalpipe/segment,
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bFY" = (
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/starboard)
-"bFZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
"bGa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/turf/simulated/floor/plating,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigWest";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bGb" = (
/obj/structure/cable{
@@ -41907,227 +38403,132 @@
dir = 1
},
/obj/structure/closet/secure_closet/brig{
- id = "Cell 4";
- name = "Cell 2 Locker"
+ id = "Cell 1";
+ name = "Cell 1 Locker"
},
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
},
/area/security/brig)
"bGc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
},
/area/security/brig)
"bGd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/airlock/security{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bGe" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/door_timer/cell_4{
- dir = 8;
- layer = 4;
- name = "Cell 2";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bGf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bGg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
-"bGh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bGi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/structure/bed,
+/obj/item/bedsheet,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bGj" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_y = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "bcarpet05"
},
-/area/security/warden)
+/area/security/brig)
"bGk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
"bGl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/treadmill_monitor{
+ id = "Cell 4";
+ pixel_y = -32
},
+/obj/structure/cable,
+/obj/machinery/power/treadmill,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/warden)
+/area/security/brig)
"bGm" = (
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bGn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "1-8";
+ tag = ""
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Equipment Storage";
- req_access_txt = "1"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bGo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bGp" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
/turf/simulated/floor/plating,
-/area/security/warden)
+/area/security/brig)
+"bGn" = (
+/obj/structure/bed,
+/obj/machinery/flasher{
+ id = "Cell 4";
+ pixel_y = -28
+ },
+/obj/item/bedsheet/red,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bGp" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
"bGq" = (
/obj/structure/table/reinforced,
/obj/item/crowbar,
@@ -42137,38 +38538,20 @@
icon_state = "dark"
},
/area/turret_protected/ai)
-"bGr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
"bGs" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/electricshock{
pixel_y = -32
},
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
"bGt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/light/small,
/obj/structure/closet/radiation,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bGu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = -32
},
@@ -42179,25 +38562,20 @@
network = list("SS13","Engineering")
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bGv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bGw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/newscaster{
pixel_y = -32
},
@@ -42213,7 +38591,6 @@
pixel_x = 28
},
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -42226,8 +38603,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bGz" = (
@@ -42251,16 +38629,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bGD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/drinks/cans/starkist,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -42270,9 +38644,6 @@
},
/area/engine/break_room)
"bGE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/pen,
@@ -42283,14 +38654,6 @@
},
/area/engine/break_room)
"bGF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/lightreplacer,
@@ -42313,12 +38676,15 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42332,10 +38698,15 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42348,12 +38719,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42367,18 +38738,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42392,11 +38764,16 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42409,10 +38786,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42425,21 +38806,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 4
},
-/obj/effect/landmark{
- name = "lightsout"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42464,14 +38841,19 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42485,10 +38867,15 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42507,11 +38894,14 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -42535,6 +38925,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -42545,10 +38941,8 @@
},
/area/hallway/primary/port)
"bGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -42564,8 +38958,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/folder/yellow,
/obj/item/airlock_electronics,
@@ -42581,7 +38974,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -42596,8 +38989,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42607,39 +39000,33 @@
"bGV" = (
/obj/machinery/vending/assist,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/camera{
c_tag = "Primary Tool Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bGW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/rack,
/obj/item/circuitboard/mechfab,
/obj/item/circuitboard/autolathe{
pixel_x = 3;
pixel_y = -3
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/storage/tech)
"bGX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42650,7 +39037,6 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/cable_coil/random,
@@ -42688,9 +39074,6 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bHc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -42698,9 +39081,6 @@
},
/area/storage/primary)
"bHd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Civilian"
},
@@ -42710,41 +39090,41 @@
},
/area/storage/primary)
"bHe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellowcorner"
},
/area/storage/primary)
"bHf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/primary)
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
"bHg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"bHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep)
+"bHh" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -42753,13 +39133,11 @@
},
/area/engine/break_room)
"bHi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -42776,7 +39154,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -42784,26 +39161,37 @@
req_access = null;
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bHm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/bridge/meeting_room)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bHn" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHo" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHp" = (
@@ -42816,9 +39204,7 @@
dir = 8
},
/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/bridge)
"bHr" = (
/obj/structure/cable{
@@ -42827,6 +39213,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
"bHs" = (
@@ -42840,8 +39228,13 @@
},
/obj/machinery/camera{
c_tag = "Bridge Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Upload Chamber";
+ name = "AI Upload Turret Control";
+ pixel_y = -24;
+ req_access = list(75)
},
/turf/simulated/floor/carpet,
/area/bridge)
@@ -42871,9 +39264,8 @@
dir = 4
},
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/pen,
+/turf/simulated/floor/carpet,
/area/bridge)
"bHv" = (
/obj/machinery/ai_status_display,
@@ -42882,17 +39274,15 @@
"bHw" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 10;
+ icon_state = "darkbluefull"
},
/area/bridge)
"bHx" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/captain)
-"bHy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain)
"bHz" = (
/obj/structure/cable{
d1 = 1;
@@ -42908,17 +39298,16 @@
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bHA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable{
d2 = 4;
@@ -42960,8 +39349,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -42976,7 +39366,7 @@
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHE" = (
/obj/structure/cable{
d1 = 4;
@@ -42986,7 +39376,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHF" = (
/obj/structure/cable{
d1 = 4;
@@ -42996,12 +39386,12 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHG" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -43014,7 +39404,7 @@
tag = ""
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHI" = (
/obj/structure/cable{
d1 = 2;
@@ -43026,14 +39416,13 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHJ" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/detective,
+/obj/item/toy/figure/crew/detective,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43057,9 +39446,7 @@
/obj/item/camera{
desc = "A one use - polaroid camera. 30 photos left.";
name = "detectives camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
+ pictures_left = 30
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43073,7 +39460,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/wood,
@@ -43090,14 +39476,14 @@
},
/area/security/detectives_office)
"bHO" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43108,50 +39494,40 @@
pixel_y = 32
},
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/detectives_office)
"bHQ" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/storage/secure/briefcase,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/structure/table/reinforced,
+/obj/item/pen,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bHR" = (
-/obj/structure/dresser,
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/toy/figure/crew/secofficer,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bHS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4;
- level = 1
- },
-/obj/structure/chair{
- dir = 1
+ icon_state = "redcorner"
},
+/area/security/brig)
+"bHS" = (
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/prisonershuttle)
+/area/hallway/primary/starboard)
"bHT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -43165,27 +39541,14 @@
},
/area/hallway/primary/starboard)
"bHV" = (
+/obj/effect/decal/warning_stripes/east,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bHW" = (
/obj/structure/cable{
@@ -43219,10 +39582,24 @@
},
/obj/machinery/door/window/brigdoor{
dir = 8;
- id = "Cell 4";
- name = "Cell 2";
+ id = "Cell 1";
+ name = "Cell 1";
req_access_txt = "2"
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -43235,10 +39612,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bHZ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43251,101 +39635,39 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
-"bIa" = (
-/obj/structure/table/wood,
-/obj/machinery/camera{
- c_tag = "Security Interrogation Room";
- dir = 8;
- network = list("SS13","Security")
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/main)
-"bIb" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
-"bIc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/warden)
-"bId" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Security Holding Room";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/prisonershuttle)
"bIe" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/security/warden)
-"bIf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bIg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/turret_protected/ai)
+/area/crew_quarters/fitness)
"bIh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bIi" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43357,7 +39679,6 @@
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -43366,47 +39687,35 @@
},
/area/turret_protected/ai)
"bIk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"bIl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"bIm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bIn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 4
},
@@ -43424,7 +39733,6 @@
},
/area/turret_protected/ai)
"bIp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -43435,22 +39743,17 @@
},
/area/crew_quarters/chief)
"bIr" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
/obj/structure/extinguisher_cabinet{
pixel_x = -6;
pixel_y = 32
},
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/chief)
"bIs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
@@ -43462,9 +39765,6 @@
},
/area/crew_quarters/chief)
"bIt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/machinery/newscaster{
@@ -43476,12 +39776,6 @@
},
/area/crew_quarters/chief)
"bIu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/rack,
/obj/item/crowbar,
/obj/item/storage/toolbox/mechanical,
@@ -43493,12 +39787,6 @@
},
/area/crew_quarters/chief)
"bIv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
pixel_y = 24
@@ -43513,12 +39801,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
"bIx" = (
@@ -43532,18 +39814,6 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bIz" = (
-/obj/structure/disposalpipe/sortjunction{
- name = "CE's Junction"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bIA" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -43551,17 +39821,16 @@
},
/area/engine/break_room)
"bIB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
-/area/engine/break_room)
+/area/crew_quarters/fitness)
"bIC" = (
/obj/structure/cable{
d1 = 1;
@@ -43569,39 +39838,35 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bID" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/break_room)
+/area/crew_quarters/fitness)
"bIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -43612,27 +39877,22 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/engine/break_room)
-"bIH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/central)
"bII" = (
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bIJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/item/circuitboard/camera{
pixel_x = -3;
@@ -43654,31 +39914,11 @@
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/engine/break_room)
-"bIL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/port)
-"bIM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
"bIN" = (
/obj/structure/table/reinforced,
/obj/machinery/camera{
c_tag = "Technical Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/airalarm_electronics,
/obj/item/apc_electronics,
@@ -43711,6 +39951,7 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -43721,7 +39962,6 @@
/obj/machinery/vending/tool,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow,
@@ -43744,6 +39984,12 @@
/obj/item/clothing/gloves/color/fyellow,
/obj/item/storage/box/lights/mixed,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bIT" = (
@@ -43754,8 +40000,10 @@
},
/area/storage/primary)
"bIU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/storage/primary)
@@ -43767,34 +40015,8 @@
icon_state = "neutralfull"
},
/area/storage/primary)
-"bIW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
"bIX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -43812,7 +40034,7 @@
},
/area/bridge/meeting_room)
"bIZ" = (
-/obj/structure/bookcase,
+/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43822,9 +40044,6 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43833,10 +40052,6 @@
/obj/machinery/firealarm{
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43849,69 +40064,45 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bJd" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/bridge/meeting_room)
-"bJe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "neutralfull"
},
+/area/hallway/primary/central)
+"bJe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bJf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/bridge/meeting_room)
+/area/crew_quarters/captain)
"bJg" = (
/obj/structure/table/wood,
/obj/item/paicard,
@@ -43919,9 +40110,6 @@
icon_state = "wood"
},
/area/bridge/meeting_room)
-"bJh" = (
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
"bJi" = (
/obj/structure/cable{
d1 = 1;
@@ -43933,26 +40121,27 @@
name = "AI Upload";
req_access_txt = "30"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bJj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/captain,
+/obj/item/toy/figure/crew/captain,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bJk" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
/obj/machinery/light_switch{
pixel_x = 8;
pixel_y = 26
},
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -43965,10 +40154,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJm" = (
@@ -43993,8 +40181,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJp" = (
@@ -44002,8 +40189,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJq" = (
@@ -44011,8 +40197,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bJr" = (
@@ -44025,7 +40210,6 @@
/obj/machinery/computer/security/mining,
/obj/machinery/newscaster{
layer = 3.3;
- pixel_x = 0;
pixel_y = -27
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -44038,7 +40222,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bJu" = (
/obj/structure/cable{
d1 = 4;
@@ -44051,7 +40235,7 @@
req_access_txt = "4"
},
/turf/simulated/floor/plasteel,
-/area/security/detectives_office)
+/area/maintenance/starboard2)
"bJv" = (
/obj/structure/cable{
d1 = 4;
@@ -44075,9 +40259,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44091,8 +40274,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -44117,86 +40299,31 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
"bJz" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"bJA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"bJB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security{
- name = "Interview Room";
- req_access = null;
- req_access_txt = "4"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/detectives_office)
"bJC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bJD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/camera{
- c_tag = "Arrivals Auxiliary Docking North";
- dir = 8;
- network = list("SS13")
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bJE" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
-/area/hallway/primary/starboard)
+/area/security/brig)
"bJF" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44210,11 +40337,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ dir = 1
},
/obj/machinery/flasher{
- id = "Cell 4";
- pixel_x = 0;
+ id = "Cell 1";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -44222,53 +40348,6 @@
icon_state = "red"
},
/area/security/brig)
-"bJH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"bJI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bJJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bJK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 3;
- name = "Security Requests Console";
- pixel_x = 30
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bJL" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -44278,33 +40357,35 @@
/turf/simulated/floor/plating,
/area/security/warden)
"bJM" = (
+/obj/structure/chair{
+ dir = 8
+ },
/obj/structure/cable{
- d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "0-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bJN" = (
-/turf/simulated/wall/r_wall,
-/area/security/armoury)
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/processing)
"bJO" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -44316,6 +40397,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -44327,8 +40411,10 @@
layer = 2.9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44339,9 +40425,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -44350,8 +40433,7 @@
/obj/structure/table/reinforced,
/obj/item/robot_parts/chest,
/obj/item/robot_parts/l_arm{
- pixel_x = -6;
- pixel_y = 0
+ pixel_x = -6
},
/obj/item/robot_parts/r_arm{
pixel_x = 6
@@ -44361,21 +40443,28 @@
},
/area/turret_protected/ai)
"bJS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bJT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -44384,13 +40473,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -44399,8 +40492,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
@@ -44410,6 +40508,9 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bJX" = (
@@ -44418,8 +40519,10 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -44436,6 +40539,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -44452,13 +40558,9 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -44473,12 +40575,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bKc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 4;
@@ -44487,7 +40589,6 @@
/obj/machinery/door_control{
id = "transitlock";
name = "Transit Tube Lockdown Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "11"
},
@@ -44506,18 +40607,18 @@
},
/area/crew_quarters/chief)
"bKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/chief)
"bKf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -44525,10 +40626,14 @@
/area/crew_quarters/chief)
"bKg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -44541,37 +40646,19 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/chief)
-"bKi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
-"bKj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bKk" = (
/obj/structure/cable{
d1 = 4;
@@ -44590,15 +40677,20 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Chief Engineer";
req_access_txt = "56"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/chief)
"bKl" = (
@@ -44608,72 +40700,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bKm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bKn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
-"bKo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "yellow"
},
/area/engine/break_room)
"bKp" = (
@@ -44683,13 +40721,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44709,9 +40748,16 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/sortjunction{
+ name = "CE's Junction";
+ sortType = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44724,23 +40770,22 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bKs" = (
-/turf/simulated/wall,
-/area/security/checkpoint/engineering)
"bKt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/central)
"bKu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/item/circuitboard/teleporter_hub{
pixel_x = -3;
@@ -44758,34 +40803,18 @@
},
/area/storage/tech)
"bKv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
-"bKw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/sign/electricshock,
-/turf/simulated/wall/r_wall,
-/area/security/checkpoint/engineering)
-"bKx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cautioncorner"
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/port)
+/area/crew_quarters/sleep)
+"bKw" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall,
+/area/engine/break_room)
"bKy" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/ai_status_display{
@@ -44793,8 +40822,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bKA" = (
@@ -44815,8 +40843,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bKC" = (
@@ -44826,22 +40853,29 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bKD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/storage/primary)
+/area/crew_quarters/sleep)
"bKE" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -44851,7 +40885,7 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "meetroomshutters";
name = "Meeting Room Shutters";
opacity = 0
@@ -44886,38 +40920,37 @@
},
/area/bridge/meeting_room)
"bKG" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/bridge/meeting_room)
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"bKH" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
"bKJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/brown,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
"bKK" = (
/obj/structure/chair/comfy/beige,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
@@ -44926,12 +40959,20 @@
/obj/structure/table/wood,
/obj/item/phone,
/obj/item/cigbutt/cigarbutt,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -26
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -44944,12 +40985,15 @@
"bKO" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
"bKP" = (
/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/turret_protected/ai_upload)
"bKR" = (
/obj/machinery/ai_status_display{
@@ -44970,22 +41014,21 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bKU" = (
/obj/machinery/camera/motion{
- c_tag = "AI Upload Chamber";
- network = list("SS13")
+ c_tag = "AI Upload Chamber"
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bKV" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/bluegrid,
@@ -44993,28 +41036,26 @@
"bKX" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
"bKY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/captain)
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"bKZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLa" = (
@@ -45024,26 +41065,26 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLc" = (
@@ -45059,14 +41100,14 @@
name = "Captain"
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLe" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLf" = (
@@ -45074,13 +41115,12 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bLg" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -45102,32 +41142,31 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/machinery/disposal,
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/storage/tools)
"bLk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bLl" = (
@@ -45169,101 +41208,63 @@
},
/area/security/detectives_office)
"bLq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"bLr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"bLs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/clothing/glasses/sunglasses,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bLt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bLu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/requests_console{
name = "Detective Requests Console";
pixel_x = 30
},
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
-"bLv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/security/detectives_office)
"bLw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/camera{
+ c_tag = "Security Front Desk";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bLx" = (
+/obj/machinery/light/small{
dir = 4
},
-/obj/structure/chair/office/dark,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bLx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light/small{
dir = 4;
- pixel_y = 0
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
+/area/security/brig)
"bLy" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -45273,8 +41274,10 @@
"bLz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -45299,12 +41302,20 @@
network = list("Research","SS13");
pixel_y = -22
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bLD" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"bLE" = (
/obj/structure/cable{
@@ -45323,85 +41334,44 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bLG" = (
-/obj/structure/rack,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bLH" = (
+/obj/structure/table,
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "Camera";
+ pictures_left = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Prisoner Processing";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 5;
+ dir = 4;
icon_state = "red"
},
-/area/security/warden)
-"bLH" = (
-/obj/machinery/flasher/portable,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bLI" = (
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bLJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/obj/item/storage/box/chemimp,
-/obj/item/storage/box/trackimp,
-/obj/item/storage/lockbox/mindshield,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/area/security/processing)
"bLK" = (
-/obj/item/grenade/barrier,
-/obj/item/grenade/barrier,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/armoury)
-"bLL" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/teargas,
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 4;
+ icon_state = "red"
},
-/area/security/armoury)
+/area/security/brig)
"bLM" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -45413,20 +41383,10 @@
/turf/space,
/area/space/nearstation)
"bLN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
+/obj/effect/spawner/random_spawners/grille_maybe,
+/turf/simulated/floor/plating,
+/area/maintenance/port)
"bLO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -45436,20 +41396,13 @@
},
/area/turret_protected/ai)
"bLP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
+/turf/simulated/floor/plasteel,
+/area/maintenance/port)
"bLQ" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -45478,11 +41431,8 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -45497,10 +41447,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -45514,12 +41460,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
@@ -45538,11 +41479,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellow"
@@ -45555,18 +41498,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Transit Tube";
req_one_access_txt = "32;19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"bLY" = (
-/obj/machinery/light/small,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/warden)
"bLZ" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty,
@@ -45576,8 +41515,7 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -45589,17 +41527,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
@@ -45610,13 +41549,9 @@
/area/hallway/primary/fore)
"bMc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway North";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -45636,7 +41571,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
initialize_directions = 10
@@ -45660,20 +41594,15 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bMf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -45689,10 +41618,7 @@
},
/area/crew_quarters/chief)
"bMh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -45716,6 +41642,7 @@
},
/area/crew_quarters/chief)
"bMk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -45729,7 +41656,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -45777,7 +41703,6 @@
/obj/item/pen,
/obj/machinery/light,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = -26
},
/turf/simulated/floor/plasteel{
@@ -45785,13 +41710,6 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bMs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 7;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bMt" = (
/obj/structure/cable{
d1 = 1;
@@ -45799,6 +41717,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 7;
@@ -45806,7 +41726,6 @@
},
/area/engine/break_room)
"bMu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 7;
icon_state = "yellow"
@@ -45828,72 +41747,64 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bMx" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
"bMy" = (
-/obj/structure/chair{
- dir = 4
- },
+/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bMz" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/vending/chinese,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bMA" = (
-/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
},
-/obj/structure/closet/secure_closet/brig{
- id = "engcell"
+/obj/item/radio/intercom{
+ pixel_x = 29;
+ pixel_y = -1
},
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
-"bMB" = (
-/turf/simulated/wall/r_wall,
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bMC" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/clothing/gloves/color/yellow,
/obj/item/storage/toolbox/electrical,
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bMD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/sign/poster/random{
+ pixel_x = -32
},
-/area/storage/tech)
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"bME" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/firelock_electronics,
/obj/item/firelock_electronics,
@@ -45902,8 +41813,7 @@
/obj/item/circuitboard/sleeper,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bMF" = (
@@ -45913,12 +41823,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bMG" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/electrical,
@@ -45938,7 +41847,6 @@
},
/area/storage/primary)
"bMJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
@@ -45951,12 +41859,6 @@
},
/area/storage/primary)
"bML" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = -32
@@ -45999,7 +41901,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/bridge/meeting_room)
"bMO" = (
@@ -46011,6 +41913,9 @@
},
/obj/structure/table/wood,
/obj/item/folder/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMP" = (
@@ -46023,23 +41928,22 @@
/obj/structure/chair/comfy/brown{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/folder/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMR" = (
@@ -46058,36 +41962,44 @@
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bMU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -46095,11 +42007,11 @@
/area/bridge/meeting_room)
"bMV" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
@@ -46130,19 +42042,14 @@
tag = ""
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bNa" = (
-/obj/item/aiModule/protectStation{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/aiModule/nanotrasen{
- pixel_x = 2;
- pixel_y = -2
- },
+/obj/item/aiModule/nanotrasen,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46151,6 +42058,7 @@
"bNb" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
@@ -46166,26 +42074,12 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
- },
-/area/crew_quarters/captain)
-"bNd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNe" = (
@@ -46195,7 +42089,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -46211,7 +42104,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNg" = (
@@ -46225,17 +42118,15 @@
/obj/item/clothing/mask/cigarette/cigar,
/obj/item/clothing/mask/cigarette/cigar,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/crew_quarters/captain)
"bNh" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -46247,8 +42138,7 @@
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/multitool,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/light{
dir = 8
@@ -46264,27 +42154,35 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/storage/tools)
"bNk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/storage/tools)
"bNl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -46292,19 +42190,13 @@
},
/area/storage/tools)
"bNm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
- },
/obj/machinery/camera{
c_tag = "Security Hallway South";
dir = 8;
network = list("SS13","Security")
},
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
@@ -46326,24 +42218,6 @@
icon_state = "dark"
},
/area/security/detectives_office)
-"bNp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
-"bNq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"bNr" = (
/obj/structure/cable{
d1 = 1;
@@ -46364,7 +42238,6 @@
/obj/item/folder/red,
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -46377,105 +42250,53 @@
name = "Detective"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bNu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bNv" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
-"bNw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Detective"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
+/area/security/brig)
"bNx" = (
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bNy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/alarm{
+ pixel_y = 24
},
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bNz" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/closet/secure_closet/brig{
- id = "Cell 5";
- name = "Cell 1 Locker"
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/brig)
-"bNz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/brig)
-"bNA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/door_timer/cell_5{
- dir = 8;
- layer = 4;
- name = "Cell 1";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"bNB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/mineral/ore_redemption,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -46488,26 +42309,28 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"bND" = (
-/obj/structure/chair/office/dark{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/landmark/start{
- name = "Warden"
+/obj/structure/chair{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bNE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bNF" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -46516,21 +42339,25 @@
},
/area/security/warden)
"bNG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
+/obj/structure/chair{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/armoury)
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
"bNH" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Brig Equipment Storage";
+ sortType = 8
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -46539,47 +42366,32 @@
},
/area/security/brig)
"bNI" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Warden's Desk";
- req_access_txt = "3"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Warden's Desk";
- req_access_txt = "3"
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
-"bNJ" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/processing)
"bNK" = (
-/obj/structure/closet/secure_closet,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/brig)
"bNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/machinery/camera{
c_tag = "AI Chamber South";
dir = 1;
@@ -46597,16 +42409,11 @@
/obj/machinery/ai_status_display,
/turf/simulated/wall/r_wall,
/area/turret_protected/aisat)
-"bNO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
"bNP" = (
/obj/machinery/door/firedoor,
/obj/machinery/flasher{
id = null;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/poddoor{
density = 0;
@@ -46619,15 +42426,13 @@
name = "MiniSat Chamber Observation";
req_access_txt = "75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/turret_protected/aisat)
-"bNQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
"bNR" = (
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
@@ -46639,13 +42444,13 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
/obj/structure/disposalpipe/sortjunction{
name = "Atmospherics Junction";
sortType = 6
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -46666,27 +42471,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"bNV" = (
-/obj/structure/closet/secure_closet,
-/obj/machinery/camera{
- c_tag = "Evidence Storage";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/warden)
"bNW" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector{
@@ -46703,7 +42497,6 @@
},
/area/engine/break_room)
"bNY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -46723,14 +42516,19 @@
department = "Chief Engineer's Desk";
departmentType = 7;
name = "Chief Engineer Requests Console";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/chief)
"bOa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -46743,6 +42541,12 @@
/obj/effect/landmark/start{
name = "Chief Engineer"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -46755,19 +42559,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/flasher_button{
- id = "Cell 3";
- pixel_x = 0;
- pixel_y = 27
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
-/area/security/prison)
+/area/security/permabrig)
"bOd" = (
/obj/structure/cable{
d1 = 4;
@@ -46775,7 +42570,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -46793,10 +42593,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46807,17 +42605,20 @@
/turf/simulated/wall/r_wall,
/area/crew_quarters/chief)
"bOg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
/area/engine/break_room)
"bOh" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/primary/port)
"bOi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/securearea,
/turf/simulated/wall,
/area/engine/break_room)
@@ -46830,39 +42631,33 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/storage/tech)
-"bOk" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
-"bOl" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
"bOm" = (
+/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bOn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/firealarm{
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+ dir = 9;
+ icon_state = "yellow"
},
-/area/hallway/primary/port)
+/area/engine/break_room)
"bOo" = (
/obj/structure/cable{
d1 = 1;
@@ -46870,26 +42665,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
"bOp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "yellowcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/primary/port)
+/area/crew_quarters/fitness)
"bOq" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/yellow,
@@ -46897,12 +42690,10 @@
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bOr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
@@ -46918,8 +42709,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/storage/tech)
"bOt" = (
@@ -46949,21 +42741,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bOw" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
/obj/item/flashlight,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/storage/tech)
"bOx" = (
@@ -46986,13 +42776,14 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bOA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/storage/primary)
"bOB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellowcorner"
@@ -47004,9 +42795,9 @@
"bOD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47034,18 +42825,24 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOH" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/chair/comfy/beige{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
},
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
+/area/crew_quarters/heads/hop)
"bOI" = (
/obj/structure/chair/comfy/brown{
dir = 1
@@ -47055,66 +42852,56 @@
"bOJ" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/item/pen,
+/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
pixel_x = 32;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/bridge/meeting_room)
+/area/crew_quarters/heads/hop)
"bOM" = (
/obj/machinery/computer/account_database,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/bridge/meeting_room)
-"bON" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
"bOO" = (
-/obj/item/aiModule/quarantine,
+/obj/item/aiModule/crewsimov,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
@@ -47126,67 +42913,63 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOR" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bOS" = (
-/obj/item/aiModule/freeform,
+/obj/item/aiModule/corp,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"bOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/turret_protected/ai_upload)
"bOU" = (
/obj/structure/bed/dogbed{
name = "fox box"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/plasteel{
+ dir = 5;
icon_state = "dark"
},
/area/crew_quarters/captain)
"bOV" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/newscaster{
pixel_x = -32;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bOW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/crew_quarters/captain)
+/area/hallway/primary/central)
"bOX" = (
/obj/structure/cable{
d1 = 1;
@@ -47194,48 +42977,36 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bOY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/captain)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
"bOZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/captain)
+/turf/simulated/wall,
+/area/ntrep)
"bPa" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -47246,20 +43017,19 @@
"bPb" = (
/obj/machinery/camera{
c_tag = "Captain's Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bPc" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -47276,7 +43046,6 @@
},
/area/storage/tools)
"bPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty{
pixel_x = -2;
@@ -47290,15 +43059,15 @@
/area/storage/tools)
"bPf" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bPg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/storage/tools)
@@ -47318,9 +43087,7 @@
"bPi" = (
/obj/structure/morgue,
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/effect/landmark{
name = "revenantspawn"
@@ -47350,14 +43117,16 @@
/area/security/detectives_office)
"bPl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/detectives_office)
"bPm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47370,6 +43139,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47379,7 +43151,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -47388,7 +43159,6 @@
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
@@ -47400,27 +43170,28 @@
/obj/item/flashlight/lamp,
/obj/item/reagent_containers/food/drinks/flask/detflask,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/security/detectives_office)
"bPr" = (
-/obj/structure/chair/office/dark{
- dir = 1
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bPs" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/item/twohanded/required/kirbyplants,
+/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 4;
+ icon_state = "redcorner"
},
-/area/security/detectives_office)
+/area/security/brig)
"bPt" = (
/obj/structure/cable{
d1 = 4;
@@ -47429,26 +43200,11 @@
tag = ""
},
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- id = "Cell 5";
- name = "Cell 1";
- req_access_txt = "2"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "0-4"
},
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
/area/security/brig)
"bPu" = (
/obj/structure/cable{
@@ -47468,89 +43224,93 @@
"bPv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bPw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "2-8"
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bPw" = (
+/area/security/processing)
+"bPx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"bPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bPB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
-"bPx" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_access_txt = "63"
},
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/security/armoury)
-"bPy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/projectile/shotgun/riot,
-/obj/item/gun/projectile/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPA" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bPB" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/head/helmet,
-/obj/item/clothing/head/helmet,
-/obj/item/clothing/head/helmet,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/area/security/seceqstorage)
"bPC" = (
/obj/structure/lattice,
/obj/structure/window/reinforced,
@@ -47568,15 +43328,10 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "station_ai_outer";
locked = 1;
name = "Minisat Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ req_one_access_txt = "10;13"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -47590,9 +43345,7 @@
tag = ""
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "station_ai_airlock";
- pixel_x = 0;
pixel_y = -57;
req_access_txt = "10;13";
tag_airpump = "station_ai_pump";
@@ -47601,9 +43354,7 @@
tag_interior_door = "station_ai_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "station_ai_sensor";
- pixel_x = 0;
pixel_y = -66
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -47624,19 +43375,13 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "station_ai_inner";
locked = 1;
name = "Minisat Access";
- req_access = null;
- req_access_txt = "10;13"
+ req_one_access_txt = "10;13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -47657,7 +43402,7 @@
tag = ""
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/warning_stripes/north,
@@ -47679,38 +43424,29 @@
},
/area/turret_protected/aisat)
"bPK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
master_tag = "atmo_tank_airlock";
name = "interior access button";
- pixel_x = -20;
+ pixel_x = -23;
pixel_y = 20;
req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bPL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/turret_protected/aisat)
-"bPM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bPN" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -47739,8 +43475,7 @@
"bPP" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/structure/sign/electricshock{
pixel_y = 32
@@ -47771,16 +43506,14 @@
/obj/structure/lattice,
/obj/structure/window/reinforced,
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
"bPU" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-SW"
+ icon_state = "E-SW"
},
/turf/space,
/area/space/nearstation)
@@ -47792,16 +43525,14 @@
"bPW" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/turf/space,
/area/space/nearstation)
"bPX" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
@@ -47815,8 +43546,7 @@
"bPZ" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio,
/obj/item/radio,
@@ -47826,8 +43556,7 @@
pixel_y = -24
},
/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -47839,12 +43568,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Mining Maintenance";
req_access_txt = "48"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"bQb" = (
@@ -47861,14 +43589,9 @@
},
/area/quartermaster/office)
"bQc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/window/eastleft{
- dir = 4;
name = "Kitchen Desk";
req_access_txt = "28"
},
@@ -47885,6 +43608,12 @@
/obj/item/folder/blue,
/obj/item/stamp/ce,
/obj/item/paper/tcommskey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -47900,6 +43629,8 @@
id_tag = "transitlock";
name = "Transit Tube Blast Doors"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -47910,15 +43641,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"bQh" = (
@@ -47930,7 +43657,7 @@
},
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/ce,
+/obj/item/toy/figure/crew/ce,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -47942,13 +43669,10 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
@@ -47967,6 +43691,7 @@
/obj/machinery/ai_status_display{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47992,20 +43717,48 @@
},
/area/crew_quarters/chief)
"bQn" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bQo" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bQp" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"bQo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"bQp" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 8
@@ -48022,14 +43775,12 @@
},
/area/engine/break_room)
"bQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -48039,59 +43790,25 @@
/area/engine/engineering)
"bQs" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bQt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
-"bQu" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- id = "engcell";
- name = "Engineering Cell";
- req_access_txt = "63"
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 8;
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bQv" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/table/wood,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bQw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Port Hallway South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -48099,9 +43816,13 @@
},
/area/hallway/primary/port)
"bQx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/storage/tech)
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/bluegrid{
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/toxins/xenobiology)
"bQy" = (
/obj/structure/table/reinforced,
/obj/machinery/kitchen_machine/microwave,
@@ -48112,9 +43833,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -48129,8 +43847,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bQB" = (
@@ -48139,7 +43859,6 @@
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -48149,7 +43868,7 @@
/area/storage/primary)
"bQC" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/teleport/hub,
/obj/effect/decal/warning_stripes/southwest,
@@ -48179,12 +43898,11 @@
},
/area/bridge/meeting_room)
"bQF" = (
-/obj/structure/bookcase,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
+/obj/machinery/slot_machine,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48199,42 +43917,28 @@
"bQH" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Command Meeting Room";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/bridge/meeting_room)
"bQI" = (
+/turf/simulated/wall,
+/area/blueshield)
+"bQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/bridge/meeting_room)
-"bQJ" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48242,8 +43946,7 @@
"bQK" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/porta_turret{
dir = 4
@@ -48286,7 +43989,7 @@
/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQP" = (
/obj/structure/table/wood,
@@ -48295,7 +43998,9 @@
layer = 2.9
},
/obj/item/paper_bin,
-/turf/simulated/floor/carpet,
+/obj/item/melee/chainofcommand,
+/obj/item/pen,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQQ" = (
/obj/structure/cable{
@@ -48304,7 +44009,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/machinery/door/window{
base_state = "right";
@@ -48314,7 +44018,11 @@
req_access_txt = "20"
},
/obj/item/folder/blue,
-/turf/simulated/floor/carpet,
+/obj/item/stamp/captain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQR" = (
/obj/machinery/door/window{
@@ -48324,11 +44032,7 @@
name = "Captain's Desk Door";
req_access_txt = "20"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQS" = (
/obj/structure/table/wood,
@@ -48338,13 +44042,13 @@
},
/obj/item/storage/secure/briefcase,
/obj/item/storage/lockbox/medal,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQT" = (
/obj/structure/table/wood,
-/obj/item/camera,
+/obj/machinery/photocopier/faxmachine/longrange{
+ department = "Captain's Office"
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48362,7 +44066,6 @@
pixel_y = 8
},
/obj/structure/sign/directions/science{
- dir = 2;
pixel_y = 1
},
/obj/structure/sign/directions/evac{
@@ -48372,7 +44075,6 @@
/area/storage/tools)
"bQW" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/storage/tools)
"bQX" = (
@@ -48381,22 +44083,10 @@
name = "Auxiliary Tool Storage";
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/tools)
-"bQY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/storage/tools)
-"bQZ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"bRa" = (
/obj/structure/cable{
d1 = 1;
@@ -48421,6 +44111,7 @@
name = "Detective";
req_access_txt = "4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -48441,17 +44132,16 @@
/turf/simulated/floor/plating,
/area/security/detectives_office)
"bRc" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/security/detectives_office)
"bRd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -48462,105 +44152,122 @@
},
/area/hallway/primary/starboard)
"bRe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/flasher{
- id = "Cell 5";
- pixel_x = 0;
- pixel_y = -28
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"bRf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/bed,
-/obj/item/bedsheet/red,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"bRg" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"bRh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
+"bRf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bRg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/security{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bRh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"bRi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"bRj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plasteel,
/area/security/brig)
"bRk" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/clipboard,
-/obj/item/toy/figure/warden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bRl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/processing)
"bRm" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 9
@@ -48569,62 +44276,42 @@
/turf/space,
/area/space/nearstation)
"bRn" = (
-/obj/structure/rack,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/obj/item/ammo_box/shotgun/rubbershot,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bRo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/laser,
-/obj/item/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bRp" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/suit/armor/bulletproof,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/clothing/head/helmet/alt,
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
-"bRq" = (
-/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "red"
+ },
+/area/security/processing)
+"bRo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
+ dir = 8;
+ icon_state = "red"
},
-/area/crew_quarters/bar/atrium)
+/area/security/brig)
+"bRp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
"bRr" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -48635,8 +44322,7 @@
layer = 2.9
},
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
@@ -48658,7 +44344,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "AI Minisatellite West";
dir = 8;
@@ -48675,28 +44360,25 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "AI Minisatellite East";
dir = 4;
network = list("Minisat","SS13");
pixel_y = -22
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
"bRw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
"bRx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/obj/structure/showcase{
density = 0;
@@ -48710,93 +44392,31 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/turret_protected/aisat)
-"bRy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/showcase{
- density = 0;
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bRz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
-"bRA" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/ai_slipper,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
-"bRC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bRD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
-"bRE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/structure/showcase{
- density = 0;
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bRF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"bRG" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -48805,34 +44425,11 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"bRH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bRI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bRJ" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 8
},
@@ -48840,25 +44437,12 @@
icon_state = "dark"
},
/area/construction/hallway)
-"bRK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
"bRL" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -48868,10 +44452,6 @@
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/sign/vacuum{
pixel_y = 32
},
@@ -48887,14 +44467,8 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -48905,15 +44479,13 @@
dir = 8
},
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bRP" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
@@ -48926,13 +44498,11 @@
/area/space/nearstation)
"bRR" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
"bRS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 1
},
@@ -48958,7 +44528,8 @@
},
/area/engine/break_room)
"bRU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -49010,8 +44581,11 @@
},
/area/crew_quarters/chief)
"bRY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -49024,9 +44598,11 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -49050,15 +44626,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Chief Engineer";
req_access_txt = "56"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -49070,9 +44648,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -49085,9 +44665,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -49106,39 +44688,25 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark/start{
name = "Chief Engineer"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/chief)
"bSe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/storage/primary)
-"bSf" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- icon_state = "open";
- id_tag = "transitlock";
- name = "Transit Tube Blast Doors"
- },
+/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/engine/break_room)
+/area/maintenance/starboard)
"bSg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -49151,12 +44719,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -49176,18 +44742,6 @@
icon_state = "neutralfull"
},
/area/hallway/primary/central)
-"bSj" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
"bSk" = (
/obj/structure/cable{
d1 = 1;
@@ -49195,66 +44749,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
-"bSl" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
-"bSm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
-"bSn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ icon_state = "yellow"
},
+/area/engine/break_room)
+"bSl" = (
+/obj/item/storage/box/donkpockets,
+/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
+"bSm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/engine/break_room)
"bSo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "MiniSat Central";
network = list("SS13","Minisat")
@@ -49275,6 +44790,8 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -49287,22 +44804,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
"bSr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -49310,57 +44817,11 @@
},
/obj/machinery/meter,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/turret_protected/aisat)
-"bSs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
-"bSt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
-"bSu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
"bSv" = (
/obj/structure/cable{
d1 = 1;
@@ -49373,28 +44834,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
-"bSw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
"bSx" = (
/obj/structure/cable{
d1 = 1;
@@ -49407,7 +44853,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -49420,22 +44865,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"bSz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -49446,21 +44884,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
"bSB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Fore Hallway South";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -49479,28 +44911,17 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"bSD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -49508,49 +44929,26 @@
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/hop)
"bSF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"bSG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/heads/hop)
-"bSG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bSH" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/aiModule/crewsimov,
-/obj/item/aiModule/freeformcore,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
-/obj/structure/table/glass,
+/obj/machinery/smartfridge/secure/circuits/aiupload/experimental,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bSI" = (
@@ -49567,7 +44965,6 @@
/obj/machinery/computer/aiupload,
/obj/machinery/flasher{
id = "AI";
- pixel_x = 0;
pixel_y = -21
},
/turf/simulated/floor/bluegrid,
@@ -49576,7 +44973,6 @@
/obj/structure/cable,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "south bump Important Area";
pixel_y = -24
},
@@ -49585,7 +44981,6 @@
"bSL" = (
/obj/machinery/computer/borgupload,
/obj/item/radio/intercom/private{
- pixel_x = 0;
pixel_y = -28
},
/turf/simulated/floor/bluegrid,
@@ -49597,25 +44992,7 @@
},
/area/turret_protected/ai_upload)
"bSN" = (
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
-/obj/item/aiModule/antimov,
-/obj/structure/table/glass,
+/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"bSO" = (
@@ -49628,16 +45005,15 @@
department = "Captain's Desk";
departmentType = 5;
name = "Captain Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/machinery/computer/card,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSP" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSQ" = (
/obj/structure/cable{
@@ -49646,21 +45022,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/chair/comfy/brown{
dir = 1
},
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"bSR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/black,
+/area/crew_quarters/captain)
+"bSR" = (
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSS" = (
/obj/structure/table/wood,
@@ -49669,47 +45043,43 @@
/obj/machinery/status_display{
pixel_x = 32
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bST" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/captain/bedroom)
"bSU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bSV" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bSW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 24
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -49719,7 +45089,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -49729,34 +45098,8 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
-"bSZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
-"bTa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -49766,9 +45109,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -49780,8 +45120,7 @@
icon_state = "0-4"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -49789,41 +45128,26 @@
"bTd" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/machinery/camera{
c_tag = "Auxiliary Tool Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/storage/tools)
-"bTe" = (
+"bTf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bTf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -49834,9 +45158,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -49846,23 +45167,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
-"bTi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -49873,60 +45178,58 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
"bTk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
-"bTl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
"bTm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/security/brig)
"bTn" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+/obj/structure/table,
+/obj/item/storage/box/evidence,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ dir = 10;
icon_state = "red"
},
-/area/security/warden)
+/area/security/processing)
"bTo" = (
/obj/structure/rack,
/obj/item/storage/toolbox/mechanical,
@@ -49939,43 +45242,31 @@
},
/area/security/warden)
"bTp" = (
-/obj/vehicle/secway,
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ dir = 6;
+ icon_state = "red"
},
-/area/security/armoury)
-"bTq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/rack,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun/advtaser,
-/obj/item/gun/energy/gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/security/processing)
"bTr" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot,
-/obj/item/shield/riot,
-/obj/item/shield/riot,
-/obj/item/shield/riot,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
"bTs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -49987,6 +45278,12 @@
name = "MiniSat Maintenance";
req_access_txt = "75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -49999,18 +45296,20 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/turret_protected/aisat)
"bTv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -50018,6 +45317,12 @@
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -50027,8 +45332,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -50036,71 +45340,32 @@
icon_state = "2-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bTx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/aisat)
-"bTy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/ai_slipper,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/turret_protected/aisat)
"bTz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "75"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/turret_protected/aisat)
-"bTA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50111,20 +45376,11 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
-"bTC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -50144,32 +45400,38 @@
tag = ""
},
/mob/living/simple_animal/bot/secbot/pingsky,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bTE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bTF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -50178,8 +45440,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50190,14 +45457,19 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Foyer";
req_access_txt = "75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -50208,35 +45480,31 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/turret_protected/aisat)
-"bTJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bTK" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50244,14 +45512,16 @@
},
/area/turret_protected/aisat)
"bTL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50261,14 +45531,19 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Teleporter Room";
req_access_txt = "17;75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -50278,8 +45553,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50287,32 +45567,13 @@
},
/area/construction/hallway)
"bTO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
-"bTP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -50321,10 +45582,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -50333,10 +45597,15 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -50346,8 +45615,13 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50360,7 +45634,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -50371,13 +45648,16 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/transit_tube/station{
- dir = 8;
- icon_state = "closed";
- tag = "icon-closed (EAST)"
+ dir = 8
},
/obj/structure/transit_tube_pod,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -50389,25 +45669,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/crew_quarters/chief)
-"bTW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bTX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
"bTY" = (
/obj/structure/cable{
d1 = 4;
@@ -50415,10 +45679,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -50433,7 +45693,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50446,10 +45705,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50469,13 +45726,16 @@
/turf/space,
/area/space/nearstation)
"bUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -50484,30 +45744,32 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bUe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bUf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50562,13 +45824,10 @@
"bUm" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
@@ -50614,11 +45873,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/storage/tech)
"bUs" = (
@@ -50628,10 +45888,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50644,118 +45910,92 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bUu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Break Room";
+ req_access_txt = "10"
},
-/turf/simulated/floor/plating,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bUv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bUw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bUx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/security/checkpoint/engineering)
-"bUy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bUz" = (
-/obj/structure/table/reinforced,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+/obj/structure/sign/poster/contraband/atmosia_independence{
+ pixel_x = 32
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/item/book/manual/security_space_law,
-/obj/item/radio,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bUA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
@@ -50775,17 +46015,28 @@
codes_txt = "patrol;next_patrol=engi2";
location = "engi1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
"bUC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall4";
location = "engi3"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50800,37 +46051,20 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/turret_protected/aisat)
-"bUE" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
-"bUF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
"bUG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/port)
-"bUH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
"bUI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -50841,22 +46075,22 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"bUK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=engi1";
location = "hall3"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -50879,13 +46113,10 @@
},
/area/hallway/primary/central)
"bUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -50902,8 +46133,7 @@
},
/area/hallway/primary/central)
"bUP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/door/poddoor{
icon_state = "open";
id_tag = "transitlock";
@@ -50927,27 +46157,10 @@
},
/area/crew_quarters/heads/hop)
"bUR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/keycard_auth{
+ pixel_y = 26
},
-/area/crew_quarters/heads/hop)
-"bUS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -50959,7 +46172,6 @@
},
/area/crew_quarters/heads/hop)
"bUU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/storage/box/ids,
/obj/item/storage/box/PDAs,
@@ -50972,7 +46184,7 @@
/obj/machinery/ai_status_display{
pixel_x = -32
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUW" = (
/obj/machinery/light_switch{
@@ -50981,10 +46193,9 @@
},
/obj/machinery/camera{
c_tag = "Captain's Desk";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUX" = (
/obj/structure/cable{
@@ -50993,26 +46204,21 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUY" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUZ" = (
/obj/structure/displaycase/captain,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bVa" = (
/obj/machinery/light{
@@ -51024,12 +46230,17 @@
/obj/effect/landmark/start{
name = "Captain"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bVb" = (
-/obj/machinery/atmospherics/unary/vent_pump,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/obj/machinery/shower{
pixel_y = 22
},
@@ -51041,14 +46252,12 @@
},
/area/crew_quarters/captain/bedroom)
"bVc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -51091,6 +46300,7 @@
codes_txt = "patrol;next_patrol=hall11";
location = "hall10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51103,9 +46313,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -51116,19 +46323,12 @@
icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/starboard)
-"bVh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51141,8 +46341,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -51150,17 +46353,18 @@
},
/area/hallway/primary/starboard)
"bVj" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Minisat Teleporter Room";
dir = 4;
network = list("Minisat","SS13");
pixel_y = -22
},
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Satellite Antechamber";
+ name = "AI Antechamber Turret Control";
+ pixel_x = -28;
+ req_access_txt = "75"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51178,6 +46382,12 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51196,25 +46406,32 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bVm" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51227,9 +46444,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51248,49 +46466,43 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bVp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall12";
location = "hall11"
},
/obj/item/radio/beacon,
/mob/living/simple_animal/bot/secbot/beepsky,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bVq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j1s";
- name = "Security Junction";
- sortType = 13
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
@@ -51319,129 +46531,34 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"bVt" = (
/obj/structure/sign/vacuum{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/engine/break_room)
-"bVu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bVv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"bVw" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
-"bVx" = (
+"bVA" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"bVy" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/warden)
-"bVz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/wall,
-/area/engine/break_room)
-"bVA" = (
-/obj/structure/cable{
- d1 = 4;
+ d1 = 1;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/warden)
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/processing)
"bVB" = (
/obj/structure/cable{
d1 = 4;
@@ -51451,6 +46568,12 @@
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -51463,10 +46586,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -51478,39 +46597,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
-"bVE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/rack,
-/obj/item/gun/energy/gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/gun/energy/gun,
-/obj/item/gun/energy/gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bVF" = (
/obj/structure/cable{
d1 = 1;
@@ -51518,56 +46610,29 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass{
name = "Magistrate's Office";
req_access_txt = "74"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/courtroom)
-"bVG" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle,
-/obj/item/clothing/suit/armor/laserproof,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/security/armoury)
"bVH" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
-"bVI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
"bVJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/sign/nosmoking_2{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/showcase{
density = 0;
@@ -51578,21 +46643,14 @@
pixel_x = -9;
pixel_y = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/turret_protected/aisat)
-"bVK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/aisat)
"bVL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -51602,34 +46660,20 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
-"bVM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bVN" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/aisat)
"bVO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/showcase{
density = 0;
dir = 4;
@@ -51643,50 +46687,24 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
-"bVP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
-"bVQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
"bVR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bVS" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bVT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/showcase{
density = 0;
dir = 8;
@@ -51701,25 +46719,19 @@
},
/area/turret_protected/aisat)
"bVU" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/aisat)
"bVV" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 8
},
@@ -51732,11 +46744,8 @@
},
/area/construction/hallway)
"bVW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51744,7 +46753,6 @@
"bVX" = (
/obj/structure/window/reinforced,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51759,8 +46767,7 @@
dir = 4
},
/obj/structure/transit_tube{
- icon_state = "N-SE";
- tag = "icon-N-SE"
+ icon_state = "N-SE"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51771,15 +46778,13 @@
dir = 8
},
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
"bWa" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
@@ -51792,41 +46797,17 @@
/area/space/nearstation)
"bWc" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bWd" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
-"bWe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bWf" = (
/obj/structure/transit_tube,
/obj/structure/window/reinforced{
@@ -51923,7 +46904,6 @@
"bWm" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -51943,13 +46923,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
@@ -51966,13 +46943,10 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
@@ -51982,63 +46956,31 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "ceprivacy";
- name = "CE Privacy Shutters";
- opacity = 0
+ name = "CE Privacy Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/chief)
"bWr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/dresser,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bWs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bWt" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
/area/engine/engineering)
"bWu" = (
@@ -52048,67 +46990,69 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bWv" = (
/obj/machinery/ai_status_display{
pixel_y = -32
},
-/obj/machinery/computer/station_alert,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/area/security/checkpoint/engineering)
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
"bWw" = (
/obj/machinery/light,
/obj/machinery/newscaster/security_unit{
pixel_y = -32
},
-/obj/machinery/computer/security,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/area/security/checkpoint/engineering)
+/obj/structure/table/wood,
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
"bWx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ dir = 0;
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bWy" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/extinguisher_cabinet{
pixel_x = 28;
pixel_y = -32
},
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "red"
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bWz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
@@ -52121,62 +47065,26 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
-"bWB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
"bWC" = (
-/obj/machinery/camera{
- c_tag = "Exterior Armory";
- dir = 4;
- network = list("Security","SS13");
- pixel_y = -22
- },
-/turf/space,
-/area/space/nearstation)
-"bWD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
-"bWE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
-"bWF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"bWE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"bWG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52184,10 +47092,6 @@
},
/area/hallway/primary/port)
"bWH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -52196,17 +47100,13 @@
"bWI" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/suit_storage_unit/ce,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/crew_quarters/chief)
"bWJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
@@ -52218,40 +47118,36 @@
},
/area/hallway/primary/port)
"bWK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"bWL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bWM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"bWN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bWO" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -52270,15 +47166,14 @@
},
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bWQ" = (
@@ -52290,8 +47185,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bWR" = (
@@ -52299,43 +47193,16 @@
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
-"bWS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
"bWT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bWU" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/cart,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -52348,116 +47215,63 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
id_tag = "captainofficedoor";
name = "Captain's Office";
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain)
"bWX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/crew_quarters/captain)
"bWY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bWZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bXa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bXb" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "0-8"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Armoury";
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plating,
+/area/security/processing)
"bXc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bXd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bXe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52465,14 +47279,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52484,31 +47299,28 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock{
name = "Internal Affairs Office";
req_access_txt = "38"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/lawoffice)
"bXh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52516,34 +47328,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
"bXj" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "pipe-j2"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -52551,32 +47351,23 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
"bXl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
@@ -52591,140 +47382,31 @@
/area/turret_protected/aisat)
"bXn" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bXo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bXp" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/starboard)
-"bXq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXs" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
"bXt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bXu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bXv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
-"bXw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/landmark/start{
- name = "Warden"
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/area/security/brig)
"bXx" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -52738,10 +47420,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
@@ -52749,33 +47427,22 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
-"bXz" = (
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bXA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bXB" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/starboard)
"bXC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -52785,9 +47452,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway"
},
@@ -52798,21 +47462,18 @@
/area/hallway/primary/starboard)
"bXE" = (
/obj/machinery/camera{
- c_tag = "Engineering Security Checkpoint";
+ c_tag = "Engineering Break Room";
dir = 8;
network = list("SS13","Security")
},
-/obj/item/radio/intercom{
- dir = 4;
- name = "station intercom (General)";
- pixel_x = 28
+/obj/structure/chair/comfy/brown{
+ dir = 1
},
-/obj/structure/closet/secure_closet/security/engine,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 4;
+ icon_state = "yellow"
},
-/area/security/checkpoint/engineering)
+/area/engine/break_room)
"bXF" = (
/obj/structure/cable{
d1 = 4;
@@ -52820,10 +47481,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
@@ -52842,7 +47499,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -52854,7 +47510,6 @@
},
/area/turret_protected/aisat)
"bXI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -52865,6 +47520,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -52875,9 +47532,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -52912,7 +47567,7 @@
/obj/structure/table/reinforced,
/obj/machinery/light,
/obj/item/clipboard,
-/obj/item/toy/figure/borg,
+/obj/item/toy/figure/crew/borg,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -52934,8 +47589,7 @@
"bXP" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52949,32 +47603,28 @@
layer = 2.9
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
"bXR" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/turf/space,
/area/space/nearstation)
"bXS" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "W-NE";
- tag = "icon-W-NE"
+ icon_state = "W-NE"
},
/turf/space,
/area/space/nearstation)
"bXT" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
@@ -52982,41 +47632,16 @@
/turf/simulated/wall/r_wall,
/area/engine/engineering)
"bXV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/closet/secure_closet/magistrate,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/magistrateoffice)
"bXW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bXX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Armoury";
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/magistrateoffice)
"bXY" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/fire,
@@ -53024,7 +47649,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bXZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/securearea,
/turf/simulated/wall,
/area/engine/engineering)
@@ -53035,32 +47659,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"bYb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall,
/area/engine/engineering)
"bYc" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"bYd" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
"bYe" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -53075,32 +47690,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "yellow"
},
/area/hallway/primary/port)
"bYg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
-"bYh" = (
-/turf/simulated/wall,
-/area/maintenance/fpmaint2)
"bYi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"bYj" = (
/turf/simulated/wall,
/area/library)
@@ -53115,10 +47718,6 @@
icon_state = "1-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -53129,10 +47728,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -53140,21 +47735,16 @@
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
- dir = 2;
pixel_y = 8
},
/turf/simulated/wall,
/area/library)
"bYo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
@@ -53168,7 +47758,7 @@
},
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -53185,8 +47775,7 @@
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"bYr" = (
@@ -53207,33 +47796,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bYt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bYu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/pdapainter,
/turf/simulated/floor/plasteel{
@@ -53244,7 +47811,7 @@
/turf/simulated/wall/r_wall,
/area/ntrep)
"bYw" = (
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/civilian/barber)
"bYx" = (
/turf/simulated/wall/r_wall,
@@ -53265,6 +47832,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -53282,21 +47851,17 @@
"bYB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/port)
-"bYC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"bYD" = (
/turf/simulated/wall,
/area/crew_quarters/captain/bedroom)
@@ -53304,21 +47869,31 @@
/obj/machinery/door/airlock/silver{
name = "Captain's Bathroom"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/captain/bedroom)
"bYF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/crew_quarters/captain/bedroom)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
"bYG" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
},
-/obj/structure/sign/directions/medical{
- dir = 2
- },
+/obj/structure/sign/directions/medical,
/obj/structure/sign/directions/security{
dir = 4;
pixel_y = 8
@@ -53328,20 +47903,12 @@
"bYH" = (
/turf/simulated/wall,
/area/crew_quarters/courtroom)
-"bYI" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
"bYJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -53359,6 +47926,12 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -53389,176 +47962,164 @@
},
/area/lawoffice)
"bYP" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/obj/machinery/door/airlock{
+ name = "Magistrate's Office";
+ req_access_txt = "74"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYR" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"bYU" = (
+/obj/machinery/door/airlock{
+ name = "Magistrate's Bedroom";
+ req_access_txt = "74"
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 8;
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"bYV" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "redcorner"
},
-/area/hallway/primary/starboard)
-"bYQ" = (
-/obj/structure/disposalpipe/segment{
+/area/security/brig)
+"bYW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"bYX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/hallway/primary/starboard)
-"bYR" = (
-/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/hallway/primary/starboard)
-"bYS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "BrigEast";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYV" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"bYW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
-"bYX" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/warden)
-"bYY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/warden)
-"bYZ" = (
+"bZa" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bZc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"bZe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ dir = 8;
+ icon_state = "redcorner"
},
-/area/security/warden)
-"bZa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/closet/secure_closet/warden,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/warden)
-"bZb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/armoury)
-"bZc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/recharger,
-/obj/structure/table/reinforced,
-/obj/item/key/security,
-/obj/machinery/door_control{
- id = "Secure Armory";
- name = "Secure Armory Shutter Control";
- pixel_x = 7;
- pixel_y = -28;
- req_access_txt = "3"
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bZd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
-"bZe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/area/security/brig)
"bZf" = (
/obj/structure/window/reinforced{
dir = 4
@@ -53567,22 +48128,26 @@
/turf/space,
/area/space/nearstation)
"bZg" = (
-/obj/structure/table/reinforced,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 0
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
},
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/security/armoury)
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
"bZh" = (
/obj/structure/cable{
d1 = 1;
@@ -53592,13 +48157,14 @@
/obj/machinery/door/firedoor,
/obj/machinery/flasher{
id = null;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/airlock/highsecurity{
name = "Telecommunications";
req_access_txt = "61"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -53688,8 +48254,7 @@
/area/engine/engineering)
"bZr" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/vacuum,
/turf/simulated/wall/r_wall,
@@ -53703,50 +48268,31 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bZt" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bZw" = (
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bZx" = (
+/obj/effect/decal/warning_stripes/north,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bZy" = (
@@ -53755,29 +48301,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/sortjunction{
- name = "Engineering Junction"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"bZz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/sortjunction{
+ name = "Engineering Junction";
+ sortType = 4
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bZA" = (
@@ -53787,9 +48317,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -53805,11 +48332,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -53853,17 +48375,6 @@
},
/turf/simulated/floor/greengrid,
/area/engine/engineering)
-"bZF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
"bZG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random_spawners/cobweb_left_frequent,
@@ -53871,11 +48382,7 @@
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"bZH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"bZI" = (
/obj/structure/cable{
d2 = 2;
@@ -53884,7 +48391,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/closet/crate,
@@ -53893,7 +48399,7 @@
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"bZJ" = (
/obj/structure/table/wood,
/obj/machinery/computer/library,
@@ -53913,13 +48419,20 @@
},
/area/library)
"bZL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"bZM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -53991,15 +48504,13 @@
/area/library)
"bZT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -54021,12 +48532,10 @@
},
/area/hallway/primary/central)
"bZV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
@@ -54037,35 +48546,14 @@
"bZX" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
- },
-/area/crew_quarters/heads/hop)
-"bZY" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"bZZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"caa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/light,
/obj/machinery/photocopier/faxmachine{
@@ -54083,18 +48571,14 @@
/area/ntrep)
"cac" = (
/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
+/turf/simulated/floor/carpet,
/area/ntrep)
"cad" = (
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine/longrange{
department = "NT Representative's Office"
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
+/turf/simulated/floor/carpet,
/area/ntrep)
"cae" = (
/obj/item/flag/nt,
@@ -54106,11 +48590,9 @@
/obj/machinery/dye_generator,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54118,7 +48600,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/chair/barber{
@@ -54129,7 +48610,6 @@
icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54143,7 +48623,6 @@
c_tag = "Barber Shop"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -54157,13 +48636,13 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "bcarpet05"
},
/area/blueshield)
"cak" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "bcarpet05"
},
/area/blueshield)
"cal" = (
@@ -54178,12 +48657,9 @@
/obj/item/disk/nuclear,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"can" = (
/obj/structure/cable{
@@ -54192,21 +48668,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
"cap" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54214,8 +48701,7 @@
/area/crew_quarters/captain/bedroom)
"caq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54223,8 +48709,7 @@
/area/crew_quarters/captain/bedroom)
"car" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
@@ -54232,38 +48717,28 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cas" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 9
},
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cat" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cau" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -54297,18 +48772,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Primary Security Hallway East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "redcorner"
},
/area/hallway/primary/starboard)
"caA" = (
@@ -54330,7 +48799,7 @@
/area/crew_quarters/courtroom)
"caC" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -54350,19 +48819,6 @@
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
-"caE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
"caF" = (
/turf/simulated/floor/plasteel{
dir = 5;
@@ -54376,8 +48832,7 @@
/obj/item/taperecorder,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -54386,7 +48841,7 @@
"caH" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/lawyer,
+/obj/item/toy/figure/crew/lawyer,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -54423,43 +48878,28 @@
icon_state = "wood"
},
/area/lawoffice)
-"caL" = (
-/turf/simulated/wall/r_wall,
-/area/lawoffice)
"caM" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/door/window/brigdoor{
+/obj/structure/disposalpipe/segment{
dir = 1;
- name = "Security Checkpoint";
- req_access_txt = "1"
+ icon_state = "pipe-c"
},
-/obj/machinery/door/window/brigdoor{
- dir = 3;
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/machinery/computer/prisoner{
+ req_access = null;
+ req_access_txt = "2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "cult"
},
-/area/security/brig)
+/area/magistrateoffice)
"caN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
/area/security/brig)
"caO" = (
/obj/structure/cable{
@@ -54468,11 +48908,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -54480,20 +48917,20 @@
},
/area/security/brig)
"caP" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/camera{
- c_tag = "Security Armory";
- dir = 1;
- network = list("SS13","Security")
+/obj/machinery/door_timer/cell_5{
+ pixel_y = -32
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
"caQ" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
@@ -54513,49 +48950,57 @@
id = "hopprivacy";
name = "Privacy Shutters";
pixel_x = -24;
- pixel_y = -6;
+ pixel_y = -8;
req_one_access_txt = "18"
},
/obj/machinery/door_control{
id = "hopqueueshutters";
name = "Queue Shutters";
pixel_x = -24;
- pixel_y = 6;
req_one_access_txt = "18"
},
+/obj/machinery/door_control/ticket_machine_button{
+ pixel_x = -24;
+ pixel_y = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
-"caR" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "Secure Armory";
- name = "Secure Armory Shutters"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
"caS" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
dir = 2;
- name = "Secure Armory";
- req_access_txt = "3"
+ icon_state = "rightsecure";
+ id = "Cell 5";
+ name = "Cell 5";
+ req_access_txt = "2"
},
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Secure Armory";
- req_access_txt = "3"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/security/armoury)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/brig)
"caV" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
@@ -54567,7 +49012,9 @@
},
/area/tcommsat/chamber)
"caW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -54578,13 +49025,14 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/tcommsat/chamber)
"caY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera/motion{
c_tag = "MiniSat AI Upload";
network = list("SS13","Minisat");
@@ -54652,11 +49100,9 @@
"cbg" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "engineering_west_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/structure/cable/yellow{
@@ -54669,9 +49115,7 @@
/area/engine/engineering)
"cbh" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "engineering_west_airlock";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "10;13";
tag_airpump = "engineering_west_pump";
@@ -54680,9 +49124,7 @@
tag_interior_door = "engineering_west_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_west_sensor";
- pixel_x = 0;
pixel_y = -34
},
/obj/structure/cable/yellow{
@@ -54703,11 +49145,9 @@
"cbj" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "engineering_west_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/structure/cable/yellow{
@@ -54734,6 +49174,7 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
@@ -54750,13 +49191,11 @@
},
/area/engine/engineering)
"cbm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"cbn" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -54769,6 +49208,12 @@
},
/area/engine/engineering)
"cbp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -54778,108 +49223,90 @@
},
/area/engine/engineering)
"cbq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
"cbr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+ dir = 1;
+ icon_state = "whiteblue"
},
-/area/engine/engineering)
+/area/medical/medbay)
"cbs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
"cbt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engineering)
"cbu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Engine Room North";
network = list("Engineering","SS13")
},
/obj/effect/decal/warning_stripes/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -54891,44 +49318,24 @@
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cbz" = (
/obj/machinery/suit_storage_unit/captain,
/obj/machinery/light{
dir = 1;
in_use = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
-"cbA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cbB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/official/random{
pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cbC" = (
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cbD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/fpmaint2)
+/turf/simulated/wall,
+/area/maintenance/port)
"cbE" = (
/obj/structure/cable{
d1 = 1;
@@ -54945,7 +49352,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cbF" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -54969,33 +49376,42 @@
},
/area/library)
"cbH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 5;
+ icon_state = "whiteblue"
},
-/area/library)
+/area/medical/medbay)
"cbI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/library)
+/area/medical/medbay2)
"cbJ" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Library North";
@@ -55012,9 +49428,6 @@
},
/area/library)
"cbL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -55027,8 +49440,7 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -55042,9 +49454,6 @@
},
/area/library)
"cbO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -55054,21 +49463,17 @@
},
/area/library)
"cbP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cbQ" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/hallway/primary/central)
@@ -55079,8 +49484,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbS" = (
@@ -55093,38 +49500,18 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cbT" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cbU" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -55134,14 +49521,32 @@
c_tag = "Head of Personnel's Office";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cbV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/heads/hop)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"cbW" = (
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55178,9 +49583,7 @@
/obj/machinery/newscaster{
pixel_x = -32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -55192,18 +49595,15 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"ccc" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -55218,7 +49618,6 @@
"cce" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -55230,7 +49629,6 @@
name = "Blueshield"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -55241,17 +49639,12 @@
/area/blueshield)
"cch" = (
/obj/structure/table/wood,
-/obj/machinery/status_display{
- pixel_x = -32
- },
/obj/item/folder/blue,
/obj/item/pen/multi/fountain,
/obj/item/paper/safe_code{
owner = "captain"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cci" = (
/obj/structure/cable{
@@ -55259,19 +49652,17 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/structure/chair/comfy/brown{
dir = 8
},
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccj" = (
/obj/structure/cable{
@@ -55280,10 +49671,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -55301,13 +49694,13 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -55319,9 +49712,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55345,25 +49737,22 @@
/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
/obj/item/lighter/zippo/nt_rep,
/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/toy/figure/crew/captain,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccn" = (
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cco" = (
/obj/structure/bed,
/obj/item/bedsheet/captain,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/landmark/start{
name = "Captain"
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccp" = (
/obj/structure/table,
@@ -55404,9 +49793,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55421,8 +49809,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -55441,7 +49828,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -55455,8 +49847,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -55466,7 +49860,6 @@
"ccx" = (
/obj/structure/table/reinforced,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -55488,8 +49881,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -55503,8 +49898,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -55522,7 +49919,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -55541,6 +49938,9 @@
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -55548,8 +49948,7 @@
"ccC" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/structure/filingcabinet/security,
/turf/simulated/floor/plasteel{
@@ -55557,213 +49956,121 @@
},
/area/lawoffice)
"ccD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/item/radio/intercom/department/security{
+ pixel_x = -28;
+ pixel_y = -7
},
-/obj/machinery/computer/security{
- network = list("SS13","Mining Outpost")
+/obj/item/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+/obj/machinery/camera{
+ c_tag = "Magistrate's Office";
+ dir = 4
},
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ccG" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ccH" = (
-/obj/machinery/atmospherics/unary/vent_pump,
-/obj/structure/chair,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ccI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "cult"
},
-/area/security/brig)
-"ccJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
-"ccK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_access_txt = "63"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/brig)
+/area/magistrateoffice)
"ccL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/closet/secure_closet,
+/obj/machinery/light/small{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/closet/secure_closet,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccO" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/camera{
- c_tag = "Courtroom North";
- dir = 2;
- network = list("SS13")
+ c_tag = "Courtroom North"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ccP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/closet/secure_closet,
+/obj/machinery/light/small{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
"ccQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/security/brig)
"ccR" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/obj/machinery/camera{
+ c_tag = "Brig Cell 4"
},
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 5";
+ name = "Cell 5 Locker"
+ },
+/turf/simulated/floor/plating,
/area/security/brig)
"ccS" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+/obj/structure/cable,
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
},
+/turf/simulated/floor/plating,
/area/security/brig)
"ccU" = (
/turf/simulated/floor/plasteel{
@@ -55774,15 +50081,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/tcommsat/chamber)
"ccX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -55816,13 +50124,13 @@
/area/engine/engineering)
"cde" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
pixel_x = -32
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdf" = (
@@ -55841,41 +50149,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cdh" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdi" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/engine/engineering)
+/area/maintenance/electrical)
"cdj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -55885,7 +50184,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -55895,24 +50193,17 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdn" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -55930,12 +50221,6 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cdo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -55967,9 +50252,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -55989,69 +50271,28 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cds" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/fpmaint2)
-"cdt" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cdu" = (
-/obj/effect/spawner/random_spawners/grille_maybe,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cdv" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cdw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cdx" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/library)
"cdy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/library)
+/area/maintenance/electrical)
"cdz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -56070,7 +50311,6 @@
/turf/simulated/wall,
/area/library)
"cdC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/morgue,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -56084,11 +50324,19 @@
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cdF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"cdG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -56096,41 +50344,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/heads/hop)
-"cdG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cdH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/wood,
/obj/machinery/light{
dir = 1
},
/obj/item/clipboard,
-/obj/item/toy/figure/hop,
+/obj/item/toy/figure/crew/hop,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"cdI" = (
/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/door/window{
dir = 2;
@@ -56144,34 +50373,34 @@
"cdJ" = (
/obj/structure/table/wood,
/obj/item/folder,
-/obj/item/stamp/centcom,
/obj/item/pen/multi/fountain,
/turf/simulated/floor/carpet,
/area/ntrep)
"cdK" = (
/obj/structure/table/wood,
+/obj/item/stamp/rep,
/turf/simulated/floor/carpet,
/area/ntrep)
"cdL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/ntrep)
"cdM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Barber"
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -56185,11 +50414,13 @@
/obj/structure/chair/barber{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -56199,16 +50430,17 @@
pixel_x = 28
},
/obj/item/razor,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"cdP" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56223,7 +50455,6 @@
/obj/item/book/manual/sop_command,
/obj/item/paper/blueshield,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -56238,7 +50469,6 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -56249,8 +50479,7 @@
req_access_txt = "67"
},
/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56260,32 +50489,18 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/flask/gold,
/obj/item/razor,
-/obj/item/radio/intercom{
- dir = 8;
- name = "station intercom (General)";
- pixel_x = -28
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdU" = (
/obj/structure/table/wood,
/obj/machinery/light/small,
/obj/machinery/computer/security/wooden_tv,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdV" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56298,19 +50513,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
"cdX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -56318,8 +50528,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56329,7 +50538,6 @@
/obj/structure/cable,
/obj/structure/table/wood,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -56337,17 +50545,15 @@
dir = 8
},
/obj/machinery/recharger,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cdZ" = (
/obj/structure/filingcabinet,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cea" = (
/obj/structure/dresser,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ceb" = (
/obj/structure/table,
@@ -56356,20 +50562,9 @@
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"cec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"ced" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
},
/obj/structure/chair{
dir = 4
@@ -56379,11 +50574,8 @@
},
/area/crew_quarters/courtroom)
"cee" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/structure/chair{
dir = 4
@@ -56422,9 +50614,6 @@
},
/area/crew_quarters/courtroom)
"cei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -56432,38 +50621,15 @@
/area/crew_quarters/courtroom)
"cej" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/crew_quarters/courtroom)
-"cek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cel" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/lawoffice)
"cem" = (
/obj/structure/cable{
d1 = 1;
@@ -56471,26 +50637,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/lawoffice)
"cen" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/folder/yellow,
/obj/item/clothing/glasses/sunglasses,
@@ -56499,14 +50657,8 @@
},
/area/lawoffice)
"ceo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/structure/chair/office/dark{
dir = 8
@@ -56516,17 +50668,18 @@
},
/area/lawoffice)
"cep" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -56541,110 +50694,28 @@
},
/area/lawoffice)
"cer" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+/obj/effect/landmark/start{
+ name = "Magistrate"
},
-/obj/item/clipboard,
-/obj/item/toy/figure/secofficer,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"ces" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
+/obj/structure/table/reinforced,
+/obj/item/paper_bin/nanotrasen,
+/obj/item/stamp/magistrate,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cet" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/comfy/black{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cev" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cew" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Lobby";
- req_access_txt = "0"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cex" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cey" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -56657,9 +50728,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -56672,171 +50740,151 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
"ceA" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plating,
-/area/security/brig)
-"ceB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
},
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/flash,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+ icon_state = "dark"
},
-/area/security/brig)
+/area/security/evidence)
+"ceB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
"ceC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/security/evidence)
"ceD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceF" = (
+/obj/machinery/camera{
+ c_tag = "Brig Evidence Storage";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"ceG" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceE" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/security/brig)
"ceH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"ceI" = (
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/brig)
"ceL" = (
/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"ceM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/tcommsat/chamber)
-"ceN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/porta_turret,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"ceP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11
+ icon_state = "neutralfull"
},
+/area/maintenance/electrical)
+"ceP" = (
/obj/machinery/porta_turret,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"ceQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 6;
+ icon_state = "whiteblue"
},
-/area/tcommsat/chamber)
+/area/medical/medbay)
"ceT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -56851,19 +50899,21 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"ceV" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/engine/engineering)
"ceW" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -56875,18 +50925,36 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
},
/area/engine/engineering)
"ceY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
},
/area/engine/engineering)
"ceZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "yellow"
@@ -56894,7 +50962,6 @@
/area/engine/engineering)
"cfa" = (
/obj/structure/closet/secure_closet/captains,
-/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -56906,24 +50973,36 @@
},
/area/engine/engineering)
"cfc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cfd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "yellow"
},
/area/engine/engineering)
"cfe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cff" = (
@@ -56932,15 +51011,11 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cfg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -56963,8 +51038,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
"cfi" = (
@@ -56981,8 +51055,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
"cfj" = (
@@ -57005,7 +51078,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cfl" = (
/obj/structure/cable{
d1 = 1;
@@ -57013,7 +51086,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -57021,17 +51093,11 @@
tag = ""
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cfm" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cfn" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cfo" = (
/obj/effect/landmark{
name = "blobstart"
@@ -57041,28 +51107,14 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cfp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cfq" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/item/pen,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57108,11 +51160,19 @@
},
/area/library)
"cfw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/library)
+/area/medical/medbay2)
"cfx" = (
/obj/machinery/photocopier,
/obj/structure/extinguisher_cabinet{
@@ -57153,7 +51213,6 @@
},
/area/library)
"cfB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small,
/obj/structure/closet/radiation,
/obj/machinery/firealarm{
@@ -57174,8 +51233,7 @@
/obj/machinery/computer/security/mining,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"cfD" = (
@@ -57194,12 +51252,10 @@
},
/area/crew_quarters/heads/hop)
"cfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57207,20 +51263,15 @@
/area/crew_quarters/heads/hop)
"cfF" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/ntrep)
"cfG" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/ntrep)
@@ -57249,9 +51300,7 @@
/area/ntrep)
"cfJ" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -57263,15 +51312,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"cfL" = (
/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
@@ -57283,8 +51331,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -57295,27 +51342,21 @@
},
/area/blueshield)
"cfN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
"cfO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
"cfP" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57328,7 +51369,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/command{
id_tag = "captainofficedoor";
@@ -57336,53 +51376,11 @@
req_access = null;
req_access_txt = "20"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/crew_quarters/captain/bedroom)
"cfR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/captain/bedroom)
-"cfS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cfT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
-"cfU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/crew_quarters/courtroom)
-"cfV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cfW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -57390,20 +51388,26 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/crew_quarters/courtroom)
-"cfX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/area/hallway/primary/central)
+"cfS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
dir = 4;
- level = 1
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"cfX" = (
/obj/structure/table/wood,
/obj/item/gavelblock,
/obj/item/gavelhammer,
@@ -57413,12 +51417,10 @@
},
/area/crew_quarters/courtroom)
"cfY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "blue"
@@ -57441,8 +51443,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
@@ -57464,7 +51465,6 @@
},
/area/lawoffice)
"cgc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/dark{
dir = 8
},
@@ -57473,154 +51473,123 @@
},
/area/lawoffice)
"cgd" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/lawoffice)
-"cge" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/camera{
- c_tag = "Security Hallway South";
- dir = 8;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
"cgf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/table/reinforced,
-/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
+/obj/item/megaphone,
+/obj/item/taperecorder,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"cgg" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
+/obj/structure/closet/secure_closet,
+/obj/machinery/alarm{
pixel_y = 24
},
-/obj/machinery/camera{
- c_tag = "Officer Equipment Storage";
- network = list("SS13","Security")
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"cgi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"cgj" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"cgk" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"cgl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
-"cgh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"cgi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/brig)
-"cgj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cgk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/chair{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/brig)
-"cgl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"cgm" = (
/obj/structure/cable{
d1 = 1;
@@ -57628,62 +51597,66 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"cgn" = (
-/obj/structure/table/reinforced,
-/obj/item/radio,
-/obj/item/radio,
-/obj/item/radio,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"cgo" = (
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/brig)
-"cgp" = (
-/obj/structure/closet/wardrobe/red,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/brig)
-"cgq" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/brig)
-"cgr" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel,
/area/security/brig)
-"cgs" = (
-/obj/machinery/vending/security,
+"cgo" = (
+/obj/structure/closet/secure_closet,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgp" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/item/storage/box/evidence,
+/obj/item/storage/box/evidence,
+/obj/item/pen,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"cgr" = (
+/obj/structure/cable,
+/obj/machinery/power/treadmill,
+/obj/machinery/treadmill_monitor{
+ id = "Cell 4";
+ pixel_y = -32
+ },
+/obj/machinery/flasher{
+ id = "Cell 5";
+ pixel_x = -28
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"cgu" = (
/obj/machinery/tcomms/core/station,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"cgB" = (
@@ -57696,13 +51669,9 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"cgC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -57730,19 +51699,14 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "hopqueueshutters";
name = "Queue Shutters";
opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
- },
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+/obj/effect/turf_decal/loading_area{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
@@ -57751,11 +51715,12 @@
id = "hopflash";
pixel_y = 58
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
+ },
/area/hallway/primary/central)
"cgG" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/spawner/window/reinforced/plasma,
/turf/simulated/floor/plating,
/area/engine/engineering)
"cgH" = (
@@ -57826,64 +51791,29 @@
},
/area/engine/engineering)
"cgP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cgQ" = (
/obj/machinery/shieldwallgen,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
-"cgR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/fpmaint2)
"cgS" = (
/obj/machinery/photocopier,
/obj/machinery/camera{
c_tag = "Magistrate's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/lawoffice)
-"cgT" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cgU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cgV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
"cgW" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -57898,33 +51828,26 @@
},
/area/library)
"cgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cgZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/library)
+/area/toxins/xenobiology)
"cha" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ dir = 1;
+ icon_state = "whiteblue"
},
-/area/library)
+/area/medical/medbay)
"chb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
@@ -57933,10 +51856,7 @@
},
/area/hallway/primary/port)
"chc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -57956,13 +51876,9 @@
"chf" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
-/obj/machinery/keycard_auth{
- pixel_x = -26
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/crew_quarters/heads/hop)
"chg" = (
@@ -57974,28 +51890,14 @@
},
/area/crew_quarters/heads/hop)
"chh" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"chi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"chj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -58038,7 +51940,6 @@
/area/ntrep)
"chn" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/civilian/barber)
"cho" = (
@@ -58053,13 +51954,13 @@
name = "Barber Shop"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "barber"
},
/area/civilian/barber)
"chp" = (
-/turf/simulated/wall,
+/turf/simulated/wall/r_wall,
/area/civilian/barber)
"chq" = (
/obj/structure/cable{
@@ -58080,7 +51981,6 @@
"chr" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bcarpet05"
},
/area/blueshield)
@@ -58111,11 +52011,13 @@
/turf/simulated/wall/rust,
/area/teleporter)
"chw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"chx" = (
@@ -58125,15 +52027,16 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/teleporter)
"chy" = (
@@ -58143,14 +52046,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plating,
/area/teleporter)
"chz" = (
@@ -58160,38 +52066,15 @@
"chA" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/teleporter)
-"chB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"chC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"chD" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -58211,16 +52094,16 @@
},
/area/crew_quarters/courtroom)
"chG" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
+/area/maintenance/starboard2)
"chH" = (
/obj/structure/cable{
d1 = 1;
@@ -58234,7 +52117,6 @@
},
/area/crew_quarters/courtroom)
"chI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/folder/yellow,
/obj/item/folder/blue{
@@ -58256,31 +52138,22 @@
},
/area/crew_quarters/courtroom)
"chK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+/obj/structure/table/reinforced,
+/obj/item/pen/multi/gold,
+/obj/item/book/manual/security_space_law,
+/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Security Front Desk";
- dir = 1;
- network = list("SS13","Security")
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/brig)
+/obj/item/gavelhammer,
+/obj/item/gavelblock,
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
"chL" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -58291,31 +52164,26 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/item/pen,
-/obj/machinery/requests_console{
- name = "Detective Requests Console";
- pixel_x = 0;
- pixel_y = -30
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/lawoffice)
"chN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/lawoffice)
"chO" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -58350,12 +52218,19 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
id_tag = "BrigEast";
name = "Brig";
req_access_txt = "63"
},
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel,
/area/security/brig)
"chR" = (
@@ -58364,8 +52239,13 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
/turf/simulated/floor/plating,
/area/security/brig)
"chS" = (
@@ -58375,33 +52255,13 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
-"chV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/tcommsat/chamber)
"chW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -58413,11 +52273,6 @@
},
/area/tcommsat/chamber)
"chX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58430,13 +52285,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cib" = (
@@ -58451,13 +52307,9 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cic" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -58469,6 +52321,7 @@
/area/engine/engineering)
"cid" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cie" = (
@@ -58557,63 +52410,35 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cin" = (
/obj/machinery/shieldgen,
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cio" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cip" = (
/obj/structure/rack,
/obj/item/crowbar,
/obj/item/wrench,
/obj/item/tank/internals/emergency_oxygen/engi,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ciq" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall/rust,
-/area/maintenance/fpmaint2)
-"cir" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cis" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cit" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ciu" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -58626,65 +52451,49 @@
},
/area/library)
"civ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"ciw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
-"cix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"ciy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"ciz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"ciA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -58696,28 +52505,22 @@
dir = 1
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"ciD" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/chair/office/dark{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ciE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed/dogbed/ian,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/mob/living/simple_animal/pet/dog/corgi/Ian,
@@ -58758,13 +52561,11 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "NT Representative's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -58792,8 +52593,12 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -58808,15 +52613,14 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/ntrep)
-"ciK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
"ciL" = (
/obj/structure/cable{
d1 = 1;
@@ -58824,10 +52628,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutral"
},
/area/bridge/meeting_room)
"ciM" = (
@@ -58839,9 +52644,15 @@
dir = 1;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"ciN" = (
@@ -58850,6 +52661,12 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/blueshield)
"ciO" = (
@@ -58870,8 +52687,12 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -58889,13 +52710,11 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Blueshield's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -58934,9 +52753,9 @@
/turf/simulated/wall,
/area/teleporter)
"ciT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/status_display,
/turf/simulated/wall,
-/area/teleporter)
+/area/crew_quarters/captain/bedroom)
"ciU" = (
/obj/structure/cable{
d1 = 1;
@@ -58944,20 +52763,16 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Teleporter Maintenance";
req_access_txt = "17"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ciV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/securearea{
pixel_x = -32
},
@@ -58969,17 +52784,6 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"ciW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"ciX" = (
/obj/machinery/status_display{
pixel_y = -32
@@ -59003,47 +52807,33 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/engine/engineering)
-"ciY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
-"ciZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cja" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"cjb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -59053,12 +52843,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/courtroom)
"cjd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -59068,6 +52864,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -59080,7 +52879,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -59089,13 +52891,14 @@
},
/area/crew_quarters/courtroom)
"cjg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/wood,
/obj/item/radio/intercom,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "blue"
@@ -59108,50 +52911,51 @@
pixel_y = 4
},
/obj/item/storage/secure/briefcase,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blue"
},
/area/crew_quarters/courtroom)
"cji" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blue"
},
/area/crew_quarters/courtroom)
-"cjj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/lawoffice)
"cjk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Internal Affairs Maintenance";
req_access_txt = "38"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/lawoffice)
+/area/maintenance/starboard2)
"cjl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
- },
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"cjm" = (
@@ -59161,7 +52965,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cjn" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
@@ -59171,36 +52975,35 @@
/obj/item/book/manual/security_space_law,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cjp" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cjq" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cjr" = (
/turf/simulated/wall,
/area/security/range)
"cjs" = (
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/structure/closet/crate,
/obj/item/target/syndicate,
/obj/item/target/syndicate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/range)
"cjt" = (
@@ -59210,70 +53013,59 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel,
/area/security/range)
"cju" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
-/obj/machinery/recharger,
+/obj/machinery/recharger{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/magnetic_controller{
+ autolink = 1;
+ name = "Firing Range Control Console";
+ path = "w;e;e;w;s;n;n;s";
+ pixel_x = 7;
+ pixel_y = 3
+ },
/turf/simulated/floor/plasteel,
/area/security/range)
"cjv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor/plating,
/area/security/range)
"cjw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/security/range)
-"cjx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/light{
- dir = 1;
- in_use = 1
- },
/obj/structure/sign/securearea{
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/security/range)
-"cjy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+"cjx" = (
+/obj/machinery/light{
+ dir = 1;
+ in_use = 1
},
/turf/simulated/floor/plating,
/area/security/range)
+"cjy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/security/range)
"cjz" = (
/turf/simulated/floor/plating,
/area/security/range)
"cjA" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"cjB" = (
@@ -59281,17 +53073,35 @@
/turf/simulated/floor/plating,
/area/security/range)
"cjD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/toxins/xenobiology)
"cjF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/tcommsat/chamber)
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
"cjH" = (
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/electrical)
"cjI" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating/airless,
@@ -59310,17 +53120,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"cjL" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -59350,7 +53156,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cjN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -59380,13 +53185,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cjP" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -59437,24 +53238,12 @@
"cjV" = (
/obj/machinery/shieldgen,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cjW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cjX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cjY" = (
/obj/structure/cable{
d1 = 1;
@@ -59462,74 +53251,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/teleporter)
-"cjZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
"cka" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ckb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ckc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ckd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cke" = (
/obj/structure/cable{
d1 = 1;
@@ -59553,12 +53288,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ckf" = (
/obj/structure/cable{
d1 = 4;
@@ -59566,31 +53297,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/library)
+/area/maintenance/port)
"ckg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 1;
+ icon_state = "whitebluecorner"
},
-/area/library)
+/area/medical/medbay)
"ckh" = (
/obj/structure/cable{
d1 = 2;
@@ -59598,25 +53319,26 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cki" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "white"
},
-/area/library)
+/area/medical/medbay)
"ckj" = (
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59629,41 +53351,40 @@
},
/area/library)
"ckl" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/library)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
"ckm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ckn" = (
/obj/structure/dresser,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cko" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/filingcabinet,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ckp" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -59679,34 +53400,20 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ckr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
+ d1 = 4;
d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cks" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/ai_status_display{
pixel_x = 32
},
@@ -59731,8 +53438,6 @@
name = "NT Representative's Office";
req_access_txt = "73"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59756,8 +53461,6 @@
name = "Blueshield's Office";
req_access_txt = "67"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -59772,13 +53475,9 @@
/obj/machinery/light{
dir = 8
},
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckz" = (
-/obj/effect/decal/warning_stripes/arrow,
-/obj/effect/decal/warning_stripes/yellow/partial,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckA" = (
@@ -59786,7 +53485,6 @@
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel,
@@ -59796,78 +53494,73 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table,
/obj/item/hand_tele,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckC" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/bluespace_beacon,
/obj/machinery/door_control{
id = "teleaccessshutter";
name = "Teleporter Shutters Access Control";
- pixel_x = 0;
pixel_y = 24;
- req_access_txt = "62"
+ req_access_txt = "17"
},
/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckE" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/security/range)
"ckF" = (
+/obj/machinery/teleport/hub,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/teleport/hub,
/turf/simulated/floor/plating,
/area/teleporter)
"ckG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/poddoor/shutters{
dir = 2;
id_tag = "teleaccessshutter";
name = "Teleporter Access Shutters"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -59889,47 +53582,42 @@
},
/area/hallway/primary/central)
"ckJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ckK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ckL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"ckM" = (
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 10;
@@ -59950,12 +53638,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
"ckP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -59970,47 +53658,49 @@
},
/area/crew_quarters/courtroom)
"ckR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/effect/landmark{
name = "blobstart"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -60022,87 +53712,98 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -60115,17 +53816,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cla" = (
/obj/structure/cable{
d1 = 4;
@@ -60133,19 +53831,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
req_access_txt = "1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/maintenance/starboard2)
"clb" = (
/obj/structure/cable{
d1 = 4;
@@ -60153,16 +53850,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/range)
"clc" = (
@@ -60188,11 +53879,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/security/range)
"cld" = (
@@ -60202,17 +53895,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/range)
"cle" = (
@@ -60226,6 +53912,12 @@
dir = 8;
req_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/range)
"clf" = (
@@ -60272,8 +53964,9 @@
icon_state = "2-8";
tag = ""
},
-/obj/item/target/syndicate,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/target_stake,
+/obj/item/target/syndicate,
/turf/simulated/floor/plasteel,
/area/security/range)
"clj" = (
@@ -60291,17 +53984,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Break Room";
+ req_access_txt = "10"
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
"clp" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating/airless,
@@ -60310,9 +53999,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -60321,13 +54008,9 @@
/turf/simulated/wall/r_wall,
/area/engine/engineering)
"cls" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/machinery/door_control{
id = "Singularity";
@@ -60360,11 +54043,6 @@
/turf/simulated/wall/r_wall/rust,
/area/engine/engine_smes)
"clx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light/small{
dir = 8
},
@@ -60372,7 +54050,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cly" = (
/obj/structure/cable{
d1 = 1;
@@ -60380,28 +54058,31 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"clz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/wall,
-/area/library)
-"clA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/obj/structure/bookcase,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/library)
+/area/maintenance/port)
+"clA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/aft)
"clB" = (
/obj/structure/cable{
d1 = 1;
@@ -60409,11 +54090,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -60454,6 +54132,8 @@
/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -60478,26 +54158,21 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"clI" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/bed,
/obj/item/bedsheet/hop,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/obj/machinery/light_switch{
pixel_x = 26;
@@ -60506,14 +54181,11 @@
/obj/effect/landmark/start{
name = "Head of Personnel"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/command/glass{
name = "Head of Personnel Bedroom";
@@ -60525,8 +54197,7 @@
/area/crew_quarters/heads/hop)
"clL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -60539,45 +54210,36 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clO" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"clP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/ian,
+/obj/item/toy/figure/crew/ian,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
@@ -60591,24 +54253,10 @@
icon_state = "1-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
-"clR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clS" = (
@@ -60618,10 +54266,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clT" = (
@@ -60643,6 +54290,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -60659,8 +54307,8 @@
c_tag = "Central Ring Hallway Center"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clV" = (
@@ -60670,12 +54318,10 @@
icon_state = "1-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"clW" = (
@@ -60683,27 +54329,25 @@
/obj/item/storage/toolbox/emergency,
/obj/item/crowbar,
/obj/item/wrench,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
"clX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/teleporter)
"clY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"clZ" = (
/obj/structure/cable{
@@ -60711,20 +54355,18 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cma" = (
/obj/structure/cable{
@@ -60733,20 +54375,17 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-j2"
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cmb" = (
/obj/structure/cable{
@@ -60760,19 +54399,17 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "pipe-j2"
},
+/turf/simulated/floor/plasteel,
/area/teleporter)
"cmc" = (
/obj/structure/cable{
@@ -60781,11 +54418,11 @@
icon_state = "2-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/east,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cmd" = (
@@ -60793,17 +54430,17 @@
/obj/machinery/status_display{
pixel_x = 32
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/teleporter)
"cme" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -60811,22 +54448,12 @@
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"cmg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cmh" = (
/obj/structure/chair{
dir = 1
@@ -60853,16 +54480,7 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/courtroom)
-"cmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -60882,15 +54500,15 @@
},
/area/crew_quarters/courtroom)
"cmn" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmo" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -60898,74 +54516,36 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cmp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cms" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cmu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
"cmv" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cmw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/security/range)
"cmx" = (
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -32
+ },
/turf/simulated/floor/plating,
/area/turret_protected/aisat)
"cmy" = (
@@ -60973,15 +54553,20 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window{
+ dir = 1;
+ req_access_txt = "63"
+ },
/turf/simulated/floor/plasteel,
/area/security/range)
"cmz" = (
@@ -60996,28 +54581,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/security/range)
-"cmA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/security/range)
-"cmB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/range)
"cmC" = (
/obj/structure/lattice,
/obj/machinery/camera{
@@ -61029,7 +54596,7 @@
/area/engine/engineering)
"cmD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -61039,17 +54606,19 @@
/turf/simulated/floor/plating,
/area/security/range)
"cmF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/item/gun/energy/laser/practice,
/obj/item/gun/energy/laser/practice,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/ears/earmuffs,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/security/range)
"cmG" = (
@@ -61075,7 +54644,6 @@
"cmM" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow,
@@ -61086,7 +54654,6 @@
department = "Engineering";
departmentType = 3;
name = "Engineering Requests Console";
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/closet/secure_closet/engineering_personal,
@@ -61101,7 +54668,7 @@
"cmO" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/engineer,
+/obj/item/toy/figure/crew/engineer,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 6;
@@ -61111,14 +54678,12 @@
"cmP" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/storage/toolbox/mechanical,
/obj/item/flashlight,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -61205,7 +54770,6 @@
dir = 1;
pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cmY" = (
@@ -61246,7 +54810,6 @@
/obj/structure/dispenser,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -61257,20 +54820,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
-"cng" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
"cnh" = (
/obj/structure/cable{
d2 = 4;
@@ -61279,8 +54828,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -61304,6 +54852,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -61327,16 +54876,16 @@
/obj/effect/landmark/start{
name = "Librarian"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/library)
"cnn" = (
/obj/structure/table/wood,
/obj/machinery/computer/library/checkout,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -61346,18 +54895,13 @@
/obj/item/flashlight/lamp/green,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cnp" = (
/obj/structure/closet/secure_closet/hop,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cnq" = (
/obj/structure/cable{
@@ -61368,18 +54912,20 @@
},
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"cnr" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -61392,12 +54938,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
"cnt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light_switch{
pixel_x = -8;
@@ -61407,43 +54957,20 @@
icon_state = "wood"
},
/area/crew_quarters/heads/hop)
-"cnu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+"cnv" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
+"cnw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
-/area/bridge/meeting_room)
-"cnv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
-"cnw" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/bridge/meeting_room)
+/area/hallway/primary/central)
"cnx" = (
/obj/structure/cable{
d1 = 1;
@@ -61451,48 +54978,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cny" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"cnz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cnA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/machinery/camera{
c_tag = "Teleporter";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light_switch{
pixel_x = -8;
@@ -61506,23 +55017,23 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"cnC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"cnD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 1
},
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
@@ -61539,35 +55050,28 @@
/area/teleporter)
"cnF" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
/area/security/range)
"cnG" = (
/obj/machinery/computer/teleporter,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/teleporter)
"cnH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube{
- icon_state = "E-SW-NW";
- tag = "icon-E-SW-NW"
+ icon_state = "E-SW-NW"
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
-"cnI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cnJ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -61619,10 +55123,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -61633,22 +55133,19 @@
"cnP" = (
/turf/simulated/wall,
/area/crew_quarters/locker)
-"cnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/maintenance/starboard)
"cnR" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cnS" = (
/obj/structure/plasticflaps{
opacity = 1
@@ -61672,28 +55169,39 @@
req_access_txt = "1"
},
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/maintenance/starboard2)
"cnU" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/security/range)
"cnV" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/space,
-/area/space/nearstation)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/aft)
"cnW" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
+ },
/area/hallway/primary/central)
"cnX" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/space,
-/area/space/nearstation)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
"cnY" = (
/obj/structure/lattice,
/obj/structure/window/reinforced,
@@ -61728,7 +55236,6 @@
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"coc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -61774,14 +55281,16 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"coi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube{
icon_state = "E-W-Pass"
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"coj" = (
@@ -61794,16 +55303,12 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cok" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"col" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -61813,36 +55318,17 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"com" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"con" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor{
- id_tag = "engstorage";
- name = "Secure Storage Blast Doors"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/engine_smes)
"coo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -61859,31 +55345,21 @@
name = "Teleport Access";
req_access_txt = "17"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter)
"cor" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"cos" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cot" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/machinery/field/generator{
anchored = 1
},
@@ -61904,8 +55380,7 @@
"cow" = (
/obj/structure/bookcase,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -61922,21 +55397,16 @@
},
/area/library)
"coy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/library)
"coz" = (
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/libraryscanner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -61946,7 +55416,7 @@
/obj/structure/cable,
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -61964,7 +55434,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
density = 0;
- icon_state = "pdoor0";
+ icon_state = "open";
id_tag = "hopprivacy";
name = "HoP Privacy Blast Doors";
opacity = 0
@@ -61974,6 +55444,8 @@
req_access = null;
req_access_txt = "57"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -61989,12 +55461,11 @@
"coD" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"coE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -62003,31 +55474,25 @@
},
/area/hallway/primary/central)
"coF" = (
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "teleportershutter";
- name = "Teleporter Shutters"
- },
/obj/machinery/door_control{
id = "teleportershutter";
name = "Teleporter Shutters Access Control";
pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "62"
+ req_access_txt = "17"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/teleporter)
-"coG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/poddoor/shutters{
dir = 2;
id_tag = "teleportershutter";
name = "Teleporter Shutters"
},
-/obj/effect/decal/warning_stripes/north,
-/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/teleporter)
+"coG" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "teleportershutter";
+ name = "Teleporter Shutters"
+ },
/turf/simulated/floor/plasteel,
/area/teleporter)
"coH" = (
@@ -62040,24 +55505,16 @@
/obj/item/storage/fancy/donut_box,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
-"coJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"coK" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -62109,13 +55566,13 @@
},
/area/crew_quarters/courtroom)
"coQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62143,7 +55600,6 @@
},
/area/crew_quarters/locker)
"coU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -62154,18 +55610,7 @@
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/starboard)
-"coV" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"coW" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -62173,7 +55618,6 @@
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -62185,14 +55629,14 @@
tag = ""
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"coY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"coZ" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -62200,12 +55644,13 @@
icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cpa" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/structure/closet/secure_closet/security,
+/obj/item/restraints/handcuffs/pinkcuffs,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cpb" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -62216,21 +55661,24 @@
},
/area/construction/hallway)
"cpc" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/construction/hallway)
+/area/medical/medbay3)
"cpd" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62240,19 +55688,23 @@
/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway)
"cpf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bot"
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cpg" = (
/obj/item/wrench,
@@ -62272,7 +55724,7 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cpj" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/spawner/window/reinforced/plasma,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -62314,13 +55766,9 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cpp" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "Singularity";
- layer = 2.7;
- name = "Singularity Blast Doors";
- opacity = 0
+ name = "Singularity Blast Doors"
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -62336,9 +55784,7 @@
dir = 8;
layer = 4;
name = "Singularity Engine Telescreen";
- network = list("Singularity");
- pixel_x = 0;
- pixel_y = 0
+ network = list("Singularity")
},
/turf/simulated/wall/r_wall,
/area/engine/engineering)
@@ -62358,7 +55804,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cps" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -62367,12 +55812,17 @@
/obj/effect/landmark/start{
name = "Station Engineer"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engineering)
"cpt" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/obj/structure/cable/yellow{
d1 = 4;
@@ -62380,17 +55830,19 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
"cpu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -62401,20 +55853,29 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engineering)
"cpv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cpw" = (
@@ -62424,11 +55885,23 @@
name = "Secure Storage Blast Doors"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cpx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cpy" = (
@@ -62439,27 +55912,32 @@
/area/engine/engine_smes)
"cpz" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engine_smes)
"cpA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engine_smes)
"cpB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -62470,10 +55948,6 @@
},
/area/engine/engine_smes)
"cpC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62481,10 +55955,6 @@
},
/area/engine/engine_smes)
"cpD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 4
},
@@ -62497,75 +55967,44 @@
},
/area/engine/engine_smes)
"cpE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
-/area/engine/engine_smes)
-"cpF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cpG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitepurple"
},
-/area/maintenance/fpmaint2)
+/area/toxins/xenobiology)
"cpH" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/library)
-"cpI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
"cpJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "white"
},
-/area/library)
+/area/medical/chemistry)
"cpK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/structure/table/wood,
+/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 8;
+ icon_state = "neutralcorner"
},
-/area/library)
+/area/medical/medbay3)
"cpL" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -62583,7 +56022,6 @@
/obj/structure/table/wood,
/obj/item/storage/bag/books,
/obj/item/taperecorder,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -62595,8 +56033,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62604,34 +56048,30 @@
},
/area/hallway/primary/central)
"cpO" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"cpP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
+"cpP" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
-"cpQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
"cpR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -62646,6 +56086,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62653,10 +56098,11 @@
/area/bridge/meeting_room)
"cpT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62664,19 +56110,20 @@
/area/bridge/meeting_room)
"cpU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62684,8 +56131,7 @@
/area/bridge/meeting_room)
"cpV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -62693,6 +56139,9 @@
name = "HIGH VOLTAGE";
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62706,8 +56155,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -62716,12 +56167,14 @@
/area/bridge/meeting_room)
"cpX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -62729,8 +56182,10 @@
/area/bridge/meeting_room)
"cpY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -62741,33 +56196,6 @@
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
-"cpZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"cqa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
"cqb" = (
/obj/structure/cable{
d1 = 1;
@@ -62776,36 +56204,40 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cqc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cqd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -62814,12 +56246,14 @@
/area/bridge/meeting_room)
"cqe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62836,8 +56270,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62849,8 +56285,7 @@
/area/bridge/meeting_room)
"cqg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -62858,6 +56293,9 @@
name = "HIGH VOLTAGE";
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62868,6 +56306,10 @@
/area/bridge/meeting_room)
"cqh" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62876,19 +56318,17 @@
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
-"cqi" = (
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
"cqj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62896,14 +56336,15 @@
/area/bridge/meeting_room)
"cqk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -62911,35 +56352,27 @@
/area/bridge/meeting_room)
"cql" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
-"cqm" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cqn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62956,8 +56389,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62969,17 +56404,16 @@
/area/hallway/primary/central)
"cqp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/junction{
dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -62995,18 +56429,15 @@
/area/crew_quarters/courtroom)
"cqr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"cqs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Magistrate's Office";
@@ -63018,8 +56449,7 @@
/area/crew_quarters/courtroom)
"cqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair{
dir = 1
@@ -63029,27 +56459,23 @@
},
/area/crew_quarters/courtroom)
"cqu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"cqv" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -63072,7 +56498,6 @@
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -63081,10 +56506,8 @@
},
/area/crew_quarters/locker)
"cqy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/blue{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63092,9 +56515,8 @@
},
/area/crew_quarters/locker)
"cqz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63102,10 +56524,8 @@
},
/area/crew_quarters/locker)
"cqA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -63113,7 +56533,7 @@
},
/area/crew_quarters/locker)
"cqB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
dir = 9
},
/obj/item/storage/secure/safe{
@@ -63125,35 +56545,33 @@
},
/area/crew_quarters/locker)
"cqC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
/area/maintenance/starboard)
"cqD" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqF" = (
/obj/structure/cable{
d1 = 1;
@@ -63167,11 +56585,10 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqG" = (
/obj/structure/cable{
d1 = 4;
@@ -63179,28 +56596,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cqH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
+/area/maintenance/starboard2)
"cqI" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqJ" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -63209,10 +56613,6 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -63228,9 +56628,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -63248,9 +56645,6 @@
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"cqP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/the_singularitygen/tesla,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -63277,19 +56671,10 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cqV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cqW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -63299,33 +56684,21 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cqX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cqY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/port)
"cqZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cra" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
id_tag = "engstorage";
@@ -63335,20 +56708,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"crb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
-"crc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
"crd" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63365,13 +56727,15 @@
/area/engine/engineering)
"cre" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -63394,33 +56758,11 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
-"cri" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"crj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
"crk" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Library South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -63431,7 +56773,6 @@
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/structure/window/reinforced{
@@ -63467,12 +56808,10 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/clipboard,
-/obj/item/toy/figure/librarian,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/toy/figure/crew/librarian,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -63489,12 +56828,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63508,63 +56843,28 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"crs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Library"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/library)
-"crt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
"cru" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop)
"crv" = (
/obj/structure/cable{
d1 = 4;
@@ -63572,12 +56872,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -63592,13 +56888,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63618,9 +56910,6 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63633,7 +56922,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63646,9 +56934,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -63678,9 +56963,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -63693,9 +56975,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63709,11 +56988,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -63721,27 +56995,12 @@
pixel_x = -32;
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
-"crD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
- },
-/area/bridge/meeting_room)
"crE" = (
/obj/structure/cable{
d1 = 4;
@@ -63749,11 +57008,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair/comfy/black,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crF" = (
@@ -63768,24 +57026,16 @@
icon_state = "2-8";
tag = ""
},
+/obj/item/radio/beacon,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crG" = (
@@ -63795,16 +57045,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start{
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crH" = (
@@ -63814,14 +57061,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"crI" = (
@@ -63832,9 +57076,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -63843,7 +57084,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63854,12 +57094,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63881,43 +57117,7 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"crL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room)
-"crM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63935,11 +57135,8 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63950,15 +57147,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Central Ring Hallway Center";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -63969,22 +57166,22 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"crQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -63997,11 +57194,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -64020,9 +57212,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64030,30 +57221,26 @@
},
/area/hallway/primary/central)
"crT" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"crU" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/crew_quarters/courtroom)
"crV" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atm{
+ pixel_x = -32
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -64073,7 +57260,7 @@
},
/area/crew_quarters/locker)
"crY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/blue,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64081,20 +57268,13 @@
},
/area/crew_quarters/locker)
"crZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"csa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -64119,31 +57299,27 @@
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
+/area/maintenance/starboard2)
"csd" = (
/obj/structure/table,
/obj/item/storage/box/bodybags,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cse" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/table,
/obj/item/clothing/under/rank/security,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csf" = (
/obj/structure/closet/crate,
/obj/item/clothing/shoes/jackboots,
@@ -64152,12 +57328,12 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csg" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csh" = (
/obj/structure/rack,
/obj/item/storage/box/flashes,
@@ -64166,7 +57342,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csi" = (
/turf/simulated/wall,
/area/crew_quarters/fitness)
@@ -64196,8 +57372,7 @@
/area/construction/hallway)
"csm" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
@@ -64235,12 +57410,14 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"csr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube,
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"css" = (
@@ -64293,15 +57470,16 @@
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"csy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"csz" = (
@@ -64325,7 +57503,6 @@
"csB" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/clipboard,
@@ -64347,33 +57524,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/engine/engine_smes)
-"csD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"csE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"csF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/mineral_door/wood,
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"csG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/mineral_door/wood,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -64386,18 +57546,31 @@
/area/library)
"csI" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Private Study";
req_access_txt = "37"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"csJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/library)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/port)
"csK" = (
/turf/simulated/wall/r_wall,
/area/ai_monitored/storage/eva)
@@ -64407,39 +57580,30 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/camera{
+ c_tag = "Captain's Office Nook";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/camera{
- c_tag = "Captain's Office Nook";
- dir = 4;
- network = list("SS13")
- },
/turf/simulated/floor/plasteel,
/area/teleporter)
"csM" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "0-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/security/warden)
+/turf/simulated/floor/plating,
+/area/security/processing)
"csN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -64447,9 +57611,7 @@
/area/bridge/meeting_room)
"csO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
/obj/machinery/light{
dir = 8
@@ -64467,8 +57629,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"csQ" = (
@@ -64491,12 +57653,14 @@
/obj/effect/landmark{
name = "lightsout"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/bridge/meeting_room)
"csS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -64505,28 +57669,24 @@
/area/bridge/meeting_room)
"csT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"csU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -64534,9 +57694,11 @@
/turf/simulated/wall/r_wall,
/area/gateway)
"csW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/gateway)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
"csX" = (
/obj/structure/cable{
d1 = 4;
@@ -64544,13 +57706,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -64567,6 +57725,7 @@
name = "Gateway Access";
req_access_txt = "62"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/gateway)
"csZ" = (
@@ -64580,47 +57739,25 @@
/turf/simulated/floor/plasteel,
/area/bridge/meeting_room)
"ctb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ctc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ctd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cte" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -64630,45 +57767,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/hallway/primary/central)
-"ctg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cth" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cti" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -64678,10 +57792,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -64693,40 +57803,30 @@
/turf/simulated/floor/plasteel,
/area/bridge/meeting_room)
"ctl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"ctm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/locker)
+/area/medical/research)
"ctn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Civilian"
@@ -64737,10 +57837,6 @@
},
/area/crew_quarters/locker)
"cto" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
@@ -64749,46 +57845,38 @@
},
/area/crew_quarters/locker)
"ctp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/camera,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"ctq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table,
/obj/item/camera_film,
/obj/item/camera_film,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"ctr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "whitebluecorner"
},
-/area/crew_quarters/locker)
+/area/medical/medbay)
"cts" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -64801,25 +57889,21 @@
/obj/effect/landmark/start{
name = "Magistrate"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/courtroom)
-"ctu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"ctv" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"ctw" = (
@@ -64892,27 +57976,25 @@
/obj/machinery/door/poddoor/shutters{
density = 0;
dir = 8;
- icon_state = "shutter0";
+ icon_state = "open";
id_tag = "hopqueueshutters";
name = "Queue Shutters";
opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+/obj/machinery/ticket_machine{
+ layer = 4;
+ pixel_y = 32
},
-/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+/obj/effect/turf_decal/loading_area{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ctF" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/item/tank/internals/plasma,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -64922,7 +58004,6 @@
},
/area/engine/engineering)
"ctG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
pixel_x = 32
},
@@ -64936,24 +58017,24 @@
},
/area/library)
"ctI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"ctJ" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/obj/structure/window/reinforced{
dir = 4
@@ -64973,8 +58054,7 @@
/obj/item/storage/fancy/candle_box,
/obj/item/storage/fancy/candle_box,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65002,20 +58082,16 @@
/area/library)
"ctP" = (
/obj/structure/bookcase,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"ctQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -65038,21 +58114,8 @@
icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"ctT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ctU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Library"
@@ -65064,8 +58127,7 @@
"ctV" = (
/obj/machinery/camera{
c_tag = "Courtroom East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -65073,13 +58135,16 @@
},
/area/crew_quarters/courtroom)
"ctW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Library"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -65095,11 +58160,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"ctY" = (
/obj/structure/cable/yellow{
@@ -65153,8 +58218,8 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cuc" = (
@@ -65171,8 +58236,8 @@
name = "Civilian"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cud" = (
@@ -65188,8 +58253,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cue" = (
@@ -65203,8 +58268,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cuf" = (
@@ -65216,8 +58281,8 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
/area/bridge/meeting_room)
"cug" = (
@@ -65229,7 +58294,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -65247,33 +58311,21 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"cui" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"cuk" = (
/obj/structure/closet/secure_closet/exile,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cul" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cum" = (
@@ -65284,18 +58336,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cun" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25;
- pixel_y = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -65303,7 +58359,12 @@
},
/area/hallway/primary/central)
"cuo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65314,51 +58375,37 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
-"cuq" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
-"cur" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/central)
"cus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"cut" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/structure/sign/securearea{
pixel_y = -32
},
/obj/machinery/camera{
c_tag = "Security Firing Range";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plating,
/area/security/range)
"cuu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -65367,6 +58414,12 @@
/area/hallway/primary/central)
"cuv" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65374,6 +58427,12 @@
/area/hallway/primary/central)
"cuw" = (
/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/crew_quarters/locker)
"cux" = (
@@ -65383,6 +58442,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -65391,6 +58456,12 @@
"cuy" = (
/obj/structure/table,
/obj/item/storage/fancy/crayons,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65400,26 +58471,36 @@
/obj/structure/table,
/obj/item/folder,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cuA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/table,
/obj/item/deck/cards,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cuB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65427,96 +58508,98 @@
/area/crew_quarters/locker)
"cuC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cuD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/closet/wardrobe/black,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"cuE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
"cuF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cuG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cuH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cuI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
+/area/maintenance/starboard2)
"cuJ" = (
/obj/structure/cable{
d1 = 1;
@@ -65524,25 +58607,26 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"cuK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -65550,19 +58634,22 @@
},
/area/crew_quarters/fitness)
"cuL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -65576,8 +58663,7 @@
/area/crew_quarters/fitness)
"cuN" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/plasteel{
@@ -65652,11 +58738,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cuV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -65664,8 +58748,7 @@
"cuW" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/storage/toolbox/electrical,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -65680,7 +58763,6 @@
pixel_x = -8;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cuY" = (
@@ -65699,7 +58781,6 @@
/obj/machinery/suit_storage_unit/engine,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/warning_stripes/south,
@@ -65721,17 +58802,7 @@
tag = ""
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cvc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cvd" = (
/obj/structure/cable{
d1 = 4;
@@ -65744,7 +58815,7 @@
dir = 1;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cve" = (
/obj/structure/cable{
d1 = 4;
@@ -65760,17 +58831,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cvf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cvg" = (
/obj/structure/cable{
d1 = 1;
@@ -65789,10 +58850,9 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cvh" = (
/obj/structure/table/wood,
/obj/machinery/ai_status_display{
@@ -65805,51 +58865,54 @@
},
/area/library)
"cvi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cvj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cvk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cvl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/library)
+/area/medical/research)
"cvm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/library)
+/area/medical/research)
"cvn" = (
/obj/structure/table/wood,
/obj/item/storage/briefcase,
@@ -65860,8 +58923,10 @@
"cvo" = (
/obj/structure/cult/archives,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65871,7 +58936,9 @@
/obj/effect/landmark{
name = "revenantspawn"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -65881,20 +58948,22 @@
/obj/effect/landmark/start{
name = "Librarian"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"cvr" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65904,9 +58973,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Central Ring Hallway West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -65937,8 +59007,7 @@
/obj/item/pen,
/obj/machinery/camera{
c_tag = "Courtroom West";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -65952,13 +59021,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvx" = (
/obj/structure/cable{
@@ -65968,28 +59033,26 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvz" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cvA" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cvB" = (
/obj/structure/cable{
@@ -66039,14 +59102,12 @@
/area/bridge/meeting_room)
"cvG" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
"cvH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room)
@@ -66069,7 +59130,6 @@
},
/obj/item/storage/toolbox/emergency,
/obj/item/flashlight,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvK" = (
@@ -66083,22 +59143,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cvL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cvM" = (
/obj/structure/cable{
d1 = 1;
@@ -66112,18 +59156,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cvN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvO" = (
@@ -66162,29 +59196,31 @@
},
/area/gateway)
"cvT" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/lab)
"cvU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "white"
},
-/area/hallway/primary/central)
+/area/medical/chemistry)
"cvV" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
@@ -66194,9 +59230,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66207,13 +59240,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66223,22 +59252,18 @@
"cvY" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cvZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -66248,37 +59273,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"cwb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
"cwc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -66288,11 +59292,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
@@ -66303,141 +59302,84 @@
/area/crew_quarters/locker)
"cwe" = (
/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cwf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/wardrobe/grey,
/obj/machinery/ai_status_display{
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"cwg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cwh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cwi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cwj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cwk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 4;
pixel_y = 8
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cwl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/fitness)
-"cwm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness)
-"cwn" = (
+"cwo" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/fitness)
-"cwo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay)
"cwp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/crew_quarters/fitness)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
"cwq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/item/twohanded/required/kirbyplants,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/fitness)
+/area/medical/research)
"cwr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "whitebluecorner"
},
-/area/crew_quarters/fitness)
+/area/medical/medbay)
"cws" = (
/obj/structure/closet/boxinggloves,
/turf/simulated/floor/plasteel{
@@ -66521,10 +59463,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
-"cwC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/maintenance/fpmaint2)
"cwD" = (
/obj/structure/cable{
d1 = 1;
@@ -66532,32 +59470,29 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cwE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Library Backroom";
+ dir = 4
+ },
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/obj/machinery/camera{
- c_tag = "Library Backroom";
- dir = 4;
- network = list("SS13")
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"cwF" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/chair/office/dark{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -66565,46 +59500,46 @@
},
/area/library)
"cwG" = (
+/obj/structure/table/wood,
+/obj/item/paicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
-/obj/item/paicard,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cwH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/folder,
/obj/item/pen,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cwI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cwJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -66621,8 +59556,7 @@
"cwL" = (
/obj/machinery/photocopier,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -66631,8 +59565,7 @@
"cwM" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
@@ -66646,7 +59579,6 @@
/obj/machinery/status_display{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -66656,7 +59588,6 @@
/obj/machinery/light,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/item/folder,
@@ -66675,7 +59606,6 @@
},
/area/library)
"cwQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -66716,11 +59646,11 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwT" = (
/obj/structure/cable{
@@ -66730,12 +59660,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwU" = (
/obj/structure/cable{
@@ -66749,14 +59678,15 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cwV" = (
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 1;
+ icon_state = "darkblue"
},
/area/ai_monitored/storage/eva)
"cwW" = (
@@ -66769,8 +59699,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cwX" = (
/obj/structure/cable{
@@ -66780,14 +59711,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwY" = (
-/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/suit_storage_unit/mime,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -66814,7 +59746,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Corporate Lounge";
- req_access_txt = "0";
req_one_access_txt = "19"
},
/turf/simulated/floor/plasteel{
@@ -66826,7 +59757,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Corporate Lounge";
- req_access_txt = "0";
req_one_access_txt = "19"
},
/turf/simulated/floor/plasteel{
@@ -66837,9 +59767,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -66849,7 +59776,7 @@
/area/crew_quarters/locker)
"cxe" = (
/obj/structure/bed/roller,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxf" = (
@@ -66864,23 +59791,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/gateway)
-"cxg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cxh" = (
/obj/structure/cable{
d1 = 4;
@@ -66888,8 +59805,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxi" = (
@@ -66932,11 +59847,9 @@
},
/area/gateway)
"cxm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -66948,8 +59861,7 @@
/area/crew_quarters/locker/locker_toilet)
"cxo" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -66974,14 +59886,11 @@
},
/area/crew_quarters/locker)
"cxq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/crew_quarters/locker)
+/area/medical/research)
"cxr" = (
/obj/structure/table,
/obj/item/storage/toolbox/emergency,
@@ -66993,6 +59902,7 @@
"cxs" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -67010,69 +59920,65 @@
},
/area/crew_quarters/locker)
"cxu" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/crew_quarters/locker)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cxv" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cxw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/wardrobe/green,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"cxx" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cxy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
/area/crew_quarters/fitness)
-"cxz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
"cxA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67080,10 +59986,12 @@
/area/crew_quarters/fitness)
"cxB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -67093,18 +60001,29 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cxD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/crew_quarters/fitness)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cxE" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/decal/warning_stripes/yellow,
@@ -67131,8 +60050,7 @@
"cxI" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
@@ -67152,7 +60070,6 @@
/obj/item/paper/pamphlet,
/obj/item/paper/pamphlet,
/obj/item/paper/pamphlet,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cxK" = (
@@ -67167,9 +60084,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"cxL" = (
@@ -67181,28 +60095,27 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cxM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/engine_smes)
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cxN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engine_smes)
"cxO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -67211,7 +60124,7 @@
"cxP" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cxQ" = (
/obj/structure/cable{
d1 = 4;
@@ -67219,15 +60132,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cxR" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
@@ -67243,7 +60156,7 @@
/obj/item/flashlight,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cxT" = (
/obj/structure/table/reinforced,
/obj/structure/sign/nosmoking_2{
@@ -67251,16 +60164,15 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"cxU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/rust,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cxV" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -67269,26 +60181,35 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cxX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cxY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/deck/cards,
/obj/item/deck/cards{
- pixel_x = 0;
pixel_y = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -67297,11 +60218,17 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library)
"cya" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67310,17 +60237,19 @@
"cyb" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"cyc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/library)
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cyd" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -67337,16 +60266,11 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cye" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cyf" = (
/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
/area/ai_monitored/storage/eva)
"cyg" = (
@@ -67360,13 +60284,12 @@
tag = ""
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/assembly/showroom)
"cyi" = (
@@ -67394,9 +60317,7 @@
icon_state = "1-2";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyl" = (
/obj/machinery/ai_status_display{
@@ -67405,25 +60326,13 @@
/obj/machinery/camera{
c_tag = "Showroom"
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "vault"
- },
-/area/assembly/showroom)
-"cym" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "vault"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyn" = (
/obj/machinery/status_display{
pixel_y = 32
},
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "vault"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cyo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -67444,20 +60353,21 @@
},
/obj/structure/showcase,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "wood"
},
/area/assembly/showroom)
"cyq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
/area/ai_monitored/storage/eva)
"cyr" = (
/obj/structure/rack,
/obj/machinery/camera{
c_tag = "Gateway Access";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/structure/closet/medical_wall{
pixel_x = -32
@@ -67472,7 +60382,6 @@
/obj/item/storage/pill_bottle/painkillers,
/obj/item/reagent_containers/food/pill/patch/styptic,
/obj/item/reagent_containers/food/pill/patch/silver_sulf,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cys" = (
@@ -67482,19 +60391,27 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/gateway)
"cyt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cyu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cyv" = (
@@ -67535,18 +60452,15 @@
},
/obj/machinery/camera{
c_tag = "Gateway";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/gateway)
"cyz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -67555,30 +60469,26 @@
},
/area/hallway/primary/central)
"cyA" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cyB" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/crew_quarters/locker/locker_toilet)
"cyC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light/small{
dir = 1
},
@@ -67587,55 +60497,39 @@
},
/area/crew_quarters/locker/locker_toilet)
"cyD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/crew_quarters/locker/locker_toilet)
"cyE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cyF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cyG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cyH" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -67650,17 +60544,12 @@
/obj/structure/dispenser/oxygen,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
-/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cyJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/urinal{
pixel_y = 28
},
@@ -67678,10 +60567,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67695,10 +60580,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -67711,10 +60592,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67728,10 +60605,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/folder,
/obj/item/pen,
@@ -67747,12 +60620,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/paicard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -67765,10 +60637,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -67788,11 +60656,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Civilian"
@@ -67803,17 +60666,15 @@
},
/area/crew_quarters/locker)
"cyR" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -67824,11 +60685,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -67836,7 +60692,6 @@
},
/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -67849,7 +60704,6 @@
"cyU" = (
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/closet/secure_closet/personal/cabinet,
@@ -67883,7 +60737,6 @@
/obj/item/paper_bin,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/item/pen,
@@ -67952,13 +60805,13 @@
},
/area/crew_quarters/fitness)
"czc" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -67967,14 +60820,18 @@
},
/area/crew_quarters/fitness)
"czd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters"
},
-/area/crew_quarters/fitness)
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
"cze" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -67991,19 +60848,18 @@
/area/crew_quarters/fitness)
"czg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"czh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -68063,18 +60919,17 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czo" = (
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/effect/decal/cleanable/cobweb2,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czp" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -68121,10 +60976,15 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"czt" = (
@@ -68142,10 +61002,16 @@
dir = 1;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czu" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -68156,7 +61022,7 @@
dir = 1;
icon_state = "yellow"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -68173,17 +61039,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czy" = (
/obj/structure/table/wood,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/newspaper,
/obj/item/newspaper,
@@ -68191,23 +61055,7 @@
icon_state = "dark"
},
/area/library)
-"czz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library)
"czA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -68216,56 +61064,29 @@
},
/area/library)
"czB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitebluefull"
},
-/area/library)
+/area/medical/medbay)
"czC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
-"czD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"czE" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
"czF" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czG" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czH" = (
/obj/machinery/light/small{
dir = 8
@@ -68278,8 +61099,10 @@
/area/engine/engine_smes)
"czI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
/area/ai_monitored/storage/eva)
"czJ" = (
/obj/structure/cable{
@@ -68300,8 +61123,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68332,23 +61154,15 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -68424,6 +61238,7 @@
},
/obj/structure/table/wood,
/obj/item/paper_bin,
+/obj/item/pen,
/turf/simulated/floor/carpet,
/area/assembly/showroom)
"czR" = (
@@ -68433,9 +61248,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68448,9 +61262,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -68470,7 +61283,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -68478,10 +61290,6 @@
},
/area/assembly/showroom)
"czU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/urinal{
pixel_y = 28
},
@@ -68495,10 +61303,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -68541,42 +61347,14 @@
name = "protective hat";
pixel_y = 8
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"czX" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel,
/area/gateway)
"czY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 4;
- level = 1
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/plating,
-/area/gateway)
-"czZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cAa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
+/area/bridge/meeting_room)
"cAb" = (
/obj/structure/cable{
d1 = 1;
@@ -68584,12 +61362,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -68603,14 +61376,25 @@
name = "Civilian"
},
/obj/item/bikehorn/rubberducky,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/crew_quarters/locker/locker_toilet)
"cAe" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -68618,7 +61402,13 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cAg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cAh" = (
@@ -68628,16 +61418,26 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cAi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cAj" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -68662,17 +61462,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/locker)
"cAm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/wardrobe/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -68686,8 +61483,7 @@
"cAo" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/folder,
/obj/item/razor,
@@ -68734,7 +61530,6 @@
},
/area/crew_quarters/fitness)
"cAv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
@@ -68753,15 +61548,13 @@
"cAx" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
"cAy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall,
/area/crew_quarters/fitness)
@@ -68773,25 +61566,18 @@
/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
"cAA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/power/port_gen/pacman,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cAB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cAC" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 7;
icon_state = "yellow"
@@ -68799,13 +61585,18 @@
/area/engine/engineering)
"cAD" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/status_display{
pixel_x = -32
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cAE" = (
@@ -68815,21 +61606,29 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cAF" = (
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cAG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -68839,7 +61638,7 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAI" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
@@ -68849,32 +61648,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"cAJ" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/engine_smes)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cAL" = (
/obj/structure/cable{
d1 = 4;
@@ -68882,9 +61668,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
@@ -68908,11 +61692,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -68922,18 +61701,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cAP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -68941,12 +61712,8 @@
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -68954,7 +61721,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAR" = (
/obj/structure/cable{
d2 = 8;
@@ -68981,19 +61748,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAT" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
@@ -69001,14 +61762,9 @@
},
/area/library)
"cAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
@@ -69016,10 +61772,6 @@
},
/area/library)
"cAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/status_display{
pixel_y = -32
},
@@ -69034,24 +61786,18 @@
/obj/item/dice/d10,
/obj/item/dice/d20,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/library)
"cAX" = (
+/obj/structure/filingcabinet,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -69060,10 +61806,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -69072,16 +61814,6 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/medical/research)
-"cBa" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cBb" = (
/obj/effect/landmark{
name = "blobstart"
@@ -69091,14 +61823,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
-"cBc" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cBd" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -69109,7 +61834,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cBe" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty{
@@ -69129,10 +61854,6 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cBf" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cBg" = (
/obj/structure/cable{
d1 = 4;
@@ -69140,9 +61861,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69150,15 +61868,11 @@
},
/area/bridge/meeting_room)
"cBh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -69169,48 +61883,44 @@
/obj/machinery/light{
dir = 1
},
-/obj/effect/decal/warning_stripes/northwest,
/obj/machinery/camera{
c_tag = "EVA West"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cBj" = (
/obj/structure/dispenser/oxygen,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "dark"
},
/area/ai_monitored/storage/eva)
"cBk" = (
/obj/machinery/requests_console{
department = "EVA";
name = "EVA Requests Console";
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "EVA Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cBl" = (
/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "darkblue"
},
/area/ai_monitored/storage/eva)
"cBm" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stack/rods{
@@ -69229,15 +61939,11 @@
},
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/dsquad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/obj/item/toy/figure/crew/dsquad,
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBo" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBp" = (
/obj/structure/chair/comfy/black{
@@ -69289,12 +61995,10 @@
},
/obj/structure/table/wood,
/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cBv" = (
-/obj/effect/decal/warning_stripes/northeast,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBw" = (
@@ -69305,16 +62009,6 @@
},
/obj/item/storage/belt,
/obj/item/radio,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBy" = (
@@ -69324,23 +62018,11 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 5
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBA" = (
@@ -69361,27 +62043,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Gateway Access";
req_access_txt = "62"
},
-/turf/simulated/floor/plasteel,
-/area/gateway)
-"cBB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cBC" = (
@@ -69394,7 +62066,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cBD" = (
@@ -69403,39 +62077,33 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cBE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/locker/locker_toilet)
"cBF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/crew_quarters/locker/locker_toilet)
"cBG" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"cBH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/gateway)
+/area/medical/research)
"cBI" = (
/obj/structure/cable{
d1 = 2;
@@ -69444,9 +62112,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cBJ" = (
@@ -69461,9 +62127,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -69474,9 +62137,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cBL" = (
@@ -69486,7 +62146,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cBM" = (
@@ -69496,9 +62158,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -69509,12 +62168,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -69524,27 +62179,18 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"cBP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"cBQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/machinery/status_display{
pixel_y = -32
@@ -69554,11 +62200,7 @@
},
/area/crew_quarters/locker)
"cBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69569,13 +62211,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69584,8 +62220,9 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -69606,8 +62243,7 @@
"cBV" = (
/obj/structure/chair/office/dark,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -69629,8 +62265,7 @@
"cBY" = (
/obj/machinery/cryopod/right,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -69670,15 +62305,22 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cCe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cCf" = (
@@ -69711,18 +62353,15 @@
/area/engine/engineering)
"cCi" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCj" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "engineering_east_airlock";
- pixel_x = 0;
pixel_y = 25;
req_access_txt = "10;13";
tag_airpump = "engineering_east_pump";
@@ -69731,9 +62370,7 @@
tag_interior_door = "engineering_east_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_east_sensor";
- pixel_x = 0;
pixel_y = 33
},
/obj/structure/cable/yellow{
@@ -69746,11 +62383,9 @@
"cCk" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "engineering_east_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/structure/cable/yellow{
@@ -69764,11 +62399,9 @@
"cCl" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "engineering_east_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/structure/cable/yellow{
@@ -69791,11 +62424,17 @@
},
/area/engine/engineering)
"cCn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
+/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cCo" = (
/obj/structure/cable{
d1 = 2;
@@ -69803,15 +62442,12 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -69828,41 +62464,26 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engineering)
"cCq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCr" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"cCs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCt" = (
/turf/simulated/floor/plasteel{
dir = 7;
@@ -69870,9 +62491,8 @@
},
/area/engine/engine_smes)
"cCu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 7;
@@ -69885,7 +62505,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -69902,34 +62521,32 @@
dir = 1;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCx" = (
/turf/simulated/wall/rust,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCy" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCz" = (
/turf/simulated/floor/plasteel{
dir = 7;
icon_state = "yellow"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCB" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cCC" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -69941,52 +62558,37 @@
icon_state = "dark"
},
/area/ai_monitored/storage/eva)
-"cCD" = (
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
"cCE" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cCF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCG" = (
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cCJ" = (
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCK" = (
/obj/structure/table/reinforced,
@@ -70006,16 +62608,12 @@
},
/obj/structure/table/wood,
/obj/item/folder/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCM" = (
/obj/structure/table/wood,
/obj/item/storage/photo_album,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCN" = (
/obj/item/twohanded/required/kirbyplants,
@@ -70024,17 +62622,13 @@
pixel_y = -24
},
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCO" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCP" = (
/obj/structure/cable{
@@ -70044,31 +62638,23 @@
tag = ""
},
/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCQ" = (
/obj/structure/chair/comfy/black{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCR" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCS" = (
/obj/structure/table/wood,
/obj/item/paicard,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
"cCT" = (
/obj/structure/cable{
@@ -70080,56 +62666,38 @@
/obj/structure/table/wood,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
+/turf/simulated/floor/carpet,
/area/assembly/showroom)
-"cCU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
"cCV" = (
/obj/structure/table,
/obj/machinery/recharger,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/light_switch{
pixel_x = 8;
pixel_y = -24
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
"cCY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -70145,12 +62713,11 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cDb" = (
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/gateway)
"cDc" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"cDd" = (
@@ -70172,7 +62739,7 @@
/turf/simulated/wall/rust,
/area/crew_quarters/locker/locker_toilet)
"cDf" = (
-/obj/effect/decal/warning_stripes/southeast,
+/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cDg" = (
@@ -70183,12 +62750,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cDh" = (
/obj/machinery/door/airlock{
- name = "Toilet";
- req_access_txt = "0"
+ name = "Toilet"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -70231,29 +62798,26 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/locker)
"cDo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/locker)
"cDp" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/locker)
"cDq" = (
/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/folder/blue,
/obj/item/lighter/zippo,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -70268,8 +62832,7 @@
"cDs" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
@@ -70341,6 +62904,9 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
@@ -70353,10 +62919,9 @@
"cDA" = (
/obj/structure/sign/vacuum,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/engine/engineering)
"cDB" = (
/obj/structure/rack,
@@ -70369,8 +62934,7 @@
"cDC" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/stack/sheet/plasteel{
amount = 25
@@ -70384,9 +62948,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cDD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/window/reinforced{
dir = 8
},
@@ -70409,12 +62970,13 @@
/area/engine/engineering)
"cDF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/research)
"cDG" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70437,25 +62999,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cDI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
+/area/assembly/chargebay)
"cDJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -70467,8 +63022,7 @@
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -70492,23 +63046,24 @@
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDO" = (
/obj/machinery/ai_status_display{
pixel_y = -32
},
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cDP" = (
/obj/structure/rack,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDQ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDR" = (
/obj/structure/cable{
d1 = 1;
@@ -70516,43 +63071,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cDS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cDT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cDU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
@@ -70560,41 +63084,24 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDW" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- name = "Library Junction";
- sortType = 17
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
-"cDY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDZ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEa" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -70606,7 +63113,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEb" = (
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
@@ -70614,17 +63121,9 @@
name = "Station Intercom (General)";
pixel_y = -29
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"cEd" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEe" = (
/obj/effect/spawner/window/reinforced,
@@ -70635,8 +63134,7 @@
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ name = "HIGH VOLTAGE"
},
/turf/simulated/wall/r_wall,
/area/assembly/showroom)
@@ -70672,10 +63170,8 @@
/turf/simulated/floor/plating,
/area/assembly/showroom)
"cEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -70683,13 +63179,12 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/airlock/command{
name = "Gateway Access";
req_access_txt = "62"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cEl" = (
@@ -70697,7 +63192,6 @@
id = "stationawaygate";
name = "Gateway Shutters Access Control";
pixel_x = -24;
- pixel_y = 0;
req_access_txt = "62"
},
/obj/machinery/door/poddoor/shutters{
@@ -70705,16 +63199,9 @@
id_tag = "stationawaygate";
name = "Gateway Access Shutters"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
-"cEm" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/cobweb,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cEn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
@@ -70732,7 +63219,6 @@
id_tag = "stationawaygate";
name = "Gateway Access Shutters"
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
"cEq" = (
@@ -70744,14 +63230,15 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cEr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEs" = (
/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEt" = (
/obj/machinery/door/airlock/glass{
@@ -70808,9 +63295,6 @@
icon_state = "dark"
},
/area/crew_quarters/fitness)
-"cEz" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
"cEA" = (
/turf/simulated/wall/r_wall/rust,
/area/engine/engineering)
@@ -70824,9 +63308,15 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cEC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/engine/engineering)
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay)
"cED" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/ai_status_display{
@@ -70835,90 +63325,27 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
-"cEE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cEF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille{
- density = 0;
- icon_state = "brokengrille"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cEG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cEH" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cEI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cEJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall,
-/area/maintenance/fpmaint2)
"cEK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark{
- name = "lightsout"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/hallway/primary/central)
+/area/bridge/meeting_room)
"cEL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -70930,23 +63357,25 @@
/obj/machinery/status_display{
pixel_y = -32
},
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEO" = (
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/poddoor/shutters{
dir = 2;
id_tag = "eva-shutters";
name = "E.V.A. Storage Shutters"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cEQ" = (
/obj/machinery/door/poddoor/shutters{
@@ -70955,15 +63384,11 @@
name = "E.V.A. Storage Shutters"
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cER" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor/shutters{
- dir = 2;
- id_tag = "eva-shutters";
- name = "E.V.A. Storage Shutters"
- },
/obj/machinery/door_control{
id = "eva-shutters";
name = "Auxilary E.V.A. Storage";
@@ -70971,13 +63396,16 @@
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "eva-shutters";
+ name = "E.V.A. Storage Shutters"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/ai_monitored/storage/eva)
"cES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -70988,10 +63416,6 @@
},
/area/hallway/primary/central)
"cET" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -71001,12 +63425,7 @@
},
/area/hallway/primary/central)
"cEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -71021,40 +63440,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cEW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/hallway/primary/central)
-"cEX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cEY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -71063,11 +63461,6 @@
},
/area/hallway/primary/central)
"cEZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -71081,7 +63474,6 @@
},
/area/hallway/primary/central)
"cFa" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -71099,37 +63491,26 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker/locker_toilet)
"cFc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East";
- dir = 8
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cFd" = (
-/obj/structure/rack,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
+/obj/item/rack_parts,
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cFe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"cFf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 10
},
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay)
+"cFf" = (
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -71164,7 +63545,6 @@
/obj/machinery/camera{
c_tag = "Laundry Room";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -71178,7 +63558,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -71191,33 +63570,27 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/crew_quarters/sleep)
"cFo" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"cFp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -71232,10 +63605,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -71254,10 +63624,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -71270,31 +63636,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/crew_quarters/sleep)
-"cFt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"cFu" = (
/obj/structure/cable{
d1 = 4;
@@ -71302,10 +63648,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Dorm Hallway Starboard"
},
@@ -71321,10 +63663,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -71337,10 +63675,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
@@ -71353,16 +63687,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
"cFy" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -71375,13 +63706,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -71396,28 +63722,29 @@
},
/area/crew_quarters/fitness)
"cFA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitebluefull"
},
-/area/crew_quarters/fitness)
+/area/medical/medbay)
"cFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/window/reinforced{
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "whitebluefull"
},
-/area/crew_quarters/fitness)
+/area/medical/medbay)
"cFC" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -71425,10 +63752,8 @@
/area/crew_quarters/fitness)
"cFD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -71436,8 +63761,7 @@
/area/crew_quarters/fitness)
"cFE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71446,8 +63770,7 @@
/area/crew_quarters/fitness)
"cFF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -71455,8 +63778,7 @@
/area/crew_quarters/fitness)
"cFG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71465,8 +63787,7 @@
/area/crew_quarters/fitness)
"cFH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -71475,21 +63796,16 @@
/area/crew_quarters/fitness)
"cFI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness)
"cFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
pixel_y = 32
},
/obj/machinery/camera{
@@ -71505,55 +63821,43 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"cFM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
req_access_txt = "12"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/library)
+/area/maintenance/port)
"cFN" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sw_maint_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "sw_maint_pump";
tag_chamber_sensor = "sw_maint_sensor";
tag_exterior_door = "sw_maint_outer";
tag_interior_door = "sw_maint_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sw_maint_sensor";
- pixel_x = 0;
pixel_y = 33
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
frequency = 1379;
id_tag = "sw_maint_pump"
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFP" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -71561,65 +63865,72 @@
master_tag = "sw_maint_airlock";
name = "interior access button";
pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- initialize_directions = 10
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFQ" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFR" = (
/obj/structure/grille{
density = 0;
icon_state = "brokengrille"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFS" = (
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFT" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFV" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFW" = (
/obj/structure/cable{
d1 = 2;
@@ -71630,26 +63941,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cFX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFY" = (
/obj/structure/cable{
d1 = 4;
@@ -71657,43 +63956,15 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cFZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cGa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGb" = (
/obj/structure/table/reinforced,
/obj/item/stack/rods{
@@ -71711,17 +63982,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGd" = (
/obj/structure/cable{
d1 = 4;
@@ -71735,15 +64007,18 @@
icon_state = "2-4";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGe" = (
/obj/structure/cable{
d1 = 4;
@@ -71751,15 +64026,17 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGf" = (
/obj/structure/cable{
d1 = 4;
@@ -71767,19 +64044,21 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGg" = (
/obj/structure/cable{
d1 = 4;
@@ -71787,22 +64066,24 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGh" = (
/obj/structure/cable{
d1 = 4;
@@ -71816,16 +64097,18 @@
icon_state = "2-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGi" = (
/obj/structure/cable{
d1 = 4;
@@ -71833,16 +64116,18 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGj" = (
/obj/structure/cable{
d1 = 4;
@@ -71850,18 +64135,20 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGk" = (
/obj/structure/cable{
d1 = 4;
@@ -71874,16 +64161,18 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGl" = (
/obj/structure/cable{
d1 = 4;
@@ -71891,18 +64180,20 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGm" = (
/obj/structure/cable{
d1 = 4;
@@ -71910,19 +64201,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGn" = (
/obj/structure/cable{
d1 = 4;
@@ -71935,14 +64225,16 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGo" = (
/obj/structure/cable{
d1 = 4;
@@ -71950,13 +64242,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGp" = (
/obj/structure/cable{
d1 = 4;
@@ -71965,11 +64262,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGq" = (
/obj/structure/cable{
d1 = 4;
@@ -71977,15 +64279,20 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGr" = (
/obj/structure/cable{
d1 = 4;
@@ -71993,9 +64300,18 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ name = "Library Junction";
+ sortType = 16
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGs" = (
/obj/structure/cable{
d1 = 4;
@@ -72003,17 +64319,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGt" = (
/obj/structure/cable{
d1 = 4;
@@ -72021,14 +64339,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGu" = (
/obj/structure/cable{
d1 = 4;
@@ -72042,17 +64365,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGv" = (
/obj/structure/cable{
d1 = 4;
@@ -72060,28 +64384,27 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGw" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sw_maint_outer";
locked = 1;
- name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "West Maintenance External Access"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGx" = (
/obj/structure/cable{
d1 = 4;
@@ -72089,14 +64412,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ name = "HoP Junction";
+ sortType = 15
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72122,6 +64447,9 @@
codes_txt = "patrol;next_patrol=hall6";
location = "hall5"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72139,7 +64467,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72169,7 +64496,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall9";
location = "hall8"
@@ -72180,20 +64506,13 @@
},
/area/hallway/primary/central)
"cGC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cGD" = (
@@ -72208,9 +64527,7 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall10";
location = "hall9"
@@ -72227,18 +64544,20 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Medbay Junction";
sortType = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -72249,51 +64568,35 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cGG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cGH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/wood,
/area/maintenance/starboard)
"cGI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGJ" = (
@@ -72301,17 +64604,20 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -72319,10 +64625,6 @@
},
/area/hallway/primary/central)
"cGL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -72332,30 +64634,34 @@
},
/area/hallway/primary/central)
"cGM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72366,6 +64672,9 @@
dir = 10
},
/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGP" = (
@@ -72380,16 +64689,17 @@
},
/area/crew_quarters/sleep)
"cGQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
/area/crew_quarters/sleep)
"cGR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -72398,6 +64708,12 @@
/area/crew_quarters/sleep)
"cGS" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -72405,19 +64721,23 @@
/area/crew_quarters/sleep)
"cGT" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/area/crew_quarters/sleep)
-"cGU" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/sleep)
"cGV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72430,6 +64750,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -72442,19 +64768,20 @@
/obj/machinery/camera{
c_tag = "Rec Room Center";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cGY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Central Ring Hallway South"
},
@@ -72473,7 +64800,6 @@
},
/area/crew_quarters/fitness)
"cHa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -72496,42 +64822,15 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness)
"cHe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
-/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cHf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cHg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHi" = (
/obj/structure/cable{
d1 = 1;
@@ -72539,30 +64838,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/engineering{
name = "Electrical Maintenance";
req_access_txt = "11"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/electrical)
+/area/maintenance/port)
"cHj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHl" = (
/obj/structure/cable{
d1 = 1;
@@ -72575,45 +64865,19 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cHm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cHn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -72622,19 +64886,15 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHq" = (
/obj/structure/cable{
d1 = 1;
@@ -72642,27 +64902,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHs" = (
/obj/structure/cable{
d1 = 1;
@@ -72670,14 +64921,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHt" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -72692,30 +64940,19 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
-"cHv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/starboard2)
"cHw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHy" = (
/obj/structure/cable{
d1 = 1;
@@ -72723,320 +64960,262 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
-"cHz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHB" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cHC" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"cHD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cHE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
name = "Research Junction";
- sortType = 20;
- tag = "icon-pipe-j1s (EAST)"
+ sortType = 20
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/light/small,
/obj/machinery/camera{
c_tag = "Central Ring Hallway South";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/hallway/primary/central)
"cHK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/light/small,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "bluecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central)
-"cHM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHO" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "CMO's Junction";
- sortType = 20;
- tag = "icon-pipe-j1s (EAST)"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "CMO's Junction";
+ sortType = 20
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/central)
"cHP" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"cHQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"cHR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/starboard)
-"cHS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cHT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+"cHV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitebluecorner"
},
-/area/maintenance/starboard)
-"cHU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cHV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/medical/medbay)
"cHW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cHX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/wall/r_wall,
-/area/medical/medbay2)
+/area/medical/research)
"cHY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/effect/decal/warning_stripes/yellow,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/medical/research)
"cHZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cIa" = (
@@ -73050,19 +65229,12 @@
},
/area/crew_quarters/sleep)
"cIc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"cId" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -73073,31 +65245,16 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
-"cIf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cIg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73108,7 +65265,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
@@ -73120,22 +65276,17 @@
},
/area/crew_quarters/sleep)
"cIi" = (
-/obj/structure/cable,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Dorm Hallway Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73146,9 +65297,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -73157,11 +65305,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -73169,12 +65313,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -73182,9 +65322,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
@@ -73194,67 +65331,69 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
"cIo" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cIp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"cIq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
-"cIr" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
-"cIs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"cIq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
+"cIr" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness)
+"cIs" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -73270,27 +65409,23 @@
"cIu" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sw_maint_inner";
locked = 1;
name = "West Maintenance External Access";
- req_access = null;
req_access_txt = "10;13"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/girder,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIw" = (
/turf/simulated/wall/rust,
/area/maintenance/electrical)
@@ -73308,14 +65443,20 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
@@ -73333,23 +65474,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
-"cIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cIF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cIG" = (
/obj/structure/cable{
d1 = 1;
@@ -73357,14 +65481,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIH" = (
/turf/simulated/wall/r_wall,
/area/toxins/xenobiology)
@@ -73425,24 +65548,16 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cIR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cIT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -73450,10 +65565,6 @@
},
/area/hallway/primary/central)
"cIU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -73469,8 +65580,8 @@
/turf/simulated/floor/plating,
/area/medical/research)
"cIX" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/research)
"cIY" = (
@@ -73506,9 +65617,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73578,8 +65686,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker/locker_toilet)
+/area/maintenance/starboard)
"cJm" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -73590,7 +65699,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cJo" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73602,45 +65711,44 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cJq" = (
-/turf/simulated/wall/r_wall,
-/area/medical/medbay2)
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
"cJr" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJs" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJt" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJu" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
-/obj/structure/closet/wardrobe/medical_white,
-/obj/item/storage/backpack/satchel_med,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJv" = (
@@ -73648,16 +65756,13 @@
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJw" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -73666,9 +65771,9 @@
"cJx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cJy" = (
@@ -73708,13 +65813,10 @@
},
/area/crew_quarters/fitness)
"cJD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -73774,12 +65876,12 @@
"cJK" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cJL" = (
/obj/machinery/shieldgen,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cJM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/atmos{
@@ -73788,41 +65890,19 @@
},
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
-"cJN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cJO" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cJP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"cJQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cJR" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/plasteel,
@@ -73840,7 +65920,7 @@
"cJU" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -73865,16 +65945,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cJY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/electrical)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
"cJZ" = (
/obj/machinery/light/small{
dir = 1
@@ -73903,68 +65985,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cKd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cKf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cKg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/rack,
/obj/item/book/manual/engineering_guide,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"cKh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cKi" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cKj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -73987,7 +66038,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cKl" = (
/obj/structure/window/reinforced,
@@ -74006,10 +66059,11 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 8;
- icon_state = "map"
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cKn" = (
/mob/living/simple_animal/slime,
@@ -74019,13 +66073,7 @@
/turf/simulated/floor/greengrid,
/area/toxins/xenobiology)
"cKp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- on = 1;
- pressure_checks = 0;
- pressure_checks_default = 0
- },
+/obj/machinery/atmospherics/unary/vent_pump/siphon/on,
/turf/simulated/floor/bluegrid{
nitrogen = 500;
oxygen = 0;
@@ -74043,21 +66091,33 @@
/turf/simulated/wall/r_wall,
/area/medical/research)
"cKs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/medical/research)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/engine,
+/area/toxins/explab)
"cKt" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cKu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/medical/research)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/engine,
+/area/toxins/explab)
"cKv" = (
-/turf/simulated/wall/r_wall,
-/area/security/checkpoint/science)
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id_tag = "rdprivacy";
+ name = "Research Director Office Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/hor)
"cKw" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -74170,25 +66230,9 @@
/obj/structure/sign/science,
/turf/simulated/wall,
/area/medical/research)
-"cKJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
-"cKK" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/aft)
"cKL" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
@@ -74198,8 +66242,7 @@
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKN" = (
@@ -74209,23 +66252,20 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKO" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKQ" = (
@@ -74233,19 +66273,17 @@
/obj/item/stack/medical/bruise_pack/advanced,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKR" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 1
},
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cKS" = (
@@ -74253,8 +66291,7 @@
/obj/item/stack/medical/ointment/advanced,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKT" = (
@@ -74264,68 +66301,58 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKU" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKV" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKW" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKX" = (
/obj/structure/table,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/storage/firstaid/regular,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cKY" = (
/turf/simulated/wall,
/area/medical/medbay)
"cKZ" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plasteel,
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical,
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cLa" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/reagent_containers/glass/bucket,
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cLb" = (
-/obj/structure/closet/firecloset,
+/obj/structure/table_frame,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cLc" = (
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"cLd" = (
/obj/structure/cable{
d2 = 4;
@@ -74334,8 +66361,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
c_tag = "Medbay Storage Room";
@@ -74343,8 +66369,7 @@
network = list("SS13","Medical")
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cLe" = (
@@ -74360,13 +66385,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cLf" = (
@@ -74376,46 +66397,35 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cLg" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/medical/medbay2)
-"cLh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay2)
+"cLh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
@@ -74424,6 +66434,10 @@
/turf/simulated/floor/plasteel,
/area/medical/medbay2)
"cLi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -74435,32 +66449,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
-"cLj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cLk" = (
/obj/structure/cable{
d1 = 4;
@@ -74469,10 +66460,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cLl" = (
@@ -74482,42 +66475,46 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cLm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cLn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/obj/effect/decal/cleanable/cobweb2,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cLo" = (
@@ -74575,12 +66572,12 @@
},
/area/crew_quarters/fitness)
"cLv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/area/crew_quarters/fitness)
+/turf/simulated/floor/plasteel,
+/area/assembly/chargebay)
"cLw" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -74600,23 +66597,26 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/closet/secure_closet/scientist,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"cLz" = (
/obj/effect/spawner/random_spawners/wall_rusted_probably,
/turf/simulated/wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cLA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cLB" = (
/obj/structure/cable{
d1 = 1;
@@ -74637,7 +66637,7 @@
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cLD" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
@@ -74685,21 +66685,21 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cLL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/maintenance/electrical)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
"cLM" = (
/obj/structure/cable{
d1 = 4;
@@ -74740,19 +66740,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cLQ" = (
/obj/effect/decal/warning_stripes/northeast,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 9;
level = 2
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cLR" = (
/obj/structure/disposalpipe/trunk,
@@ -74776,8 +66777,7 @@
/area/toxins/xenobiology)
"cLT" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark";
@@ -74788,8 +66788,7 @@
/area/toxins/xenobiology)
"cLU" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark";
@@ -74801,15 +66800,15 @@
"cLV" = (
/obj/structure/closet/wardrobe/white,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"cLW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/medical/research)
+"cLW" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
"cLX" = (
/obj/structure/cable{
d1 = 1;
@@ -74823,16 +66822,10 @@
},
/area/medical/research)
"cLY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
+/turf/simulated/floor/plating,
/area/medical/research)
-"cLZ" = (
-/turf/simulated/wall,
-/area/security/checkpoint/science)
"cMa" = (
/obj/machinery/ai_status_display{
pixel_y = 32
@@ -74841,49 +66834,36 @@
pixel_x = -28;
pixel_y = 30
},
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 4
- },
-/obj/structure/closet/secure_closet/security/science,
+/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cMb" = (
-/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cMc" = (
-/obj/structure/table/reinforced,
/obj/machinery/status_display{
pixel_y = 32
},
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32
- },
-/obj/item/book/manual/security_space_law,
-/obj/item/radio,
+/obj/structure/chair/comfy/purp,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cMd" = (
/obj/structure/table,
/obj/item/folder/white,
@@ -74901,8 +66881,14 @@
/area/medical/research)
"cMf" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/medical/research)
"cMg" = (
@@ -74914,14 +66900,6 @@
icon_state = "white"
},
/area/medical/research)
-"cMh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
"cMi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -74936,7 +66914,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cMk" = (
@@ -74949,8 +66927,16 @@
},
/area/medical/research)
"cMl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cMm" = (
@@ -74969,14 +66955,12 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMp" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"cMq" = (
@@ -74987,36 +66971,27 @@
"cMr" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cMs" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cMt" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMu" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/door_control{
- id = "medbayfoyer";
- name = "Medbay Front Doors";
- pixel_x = -25;
- pixel_y = 25
- },
+/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cMv" = (
@@ -75024,8 +66999,7 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cMw" = (
@@ -75033,28 +67007,19 @@
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"cMx" = (
-/turf/simulated/wall,
-/area/security/checkpoint/medical)
-"cMy" = (
-/turf/simulated/wall/r_wall,
-/area/security/checkpoint/medical)
"cMz" = (
/turf/simulated/wall,
/area/medical/medbay2)
"cMA" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cMB" = (
@@ -75077,13 +67042,12 @@
/area/medical/medbay2)
"cMD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "white"
},
-/area/medical/medbay2)
+/area/toxins/mixing)
"cME" = (
/obj/structure/cable{
d1 = 2;
@@ -75091,79 +67055,37 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cMF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/plasticflaps,
/turf/simulated/floor/plasteel,
/area/medical/medbay2)
"cMG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cMH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cMI" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cMJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/maintenance/starboard)
-"cMK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/maintenance/starboard)
"cML" = (
@@ -75181,8 +67103,7 @@
"cMN" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/storage/briefcase,
/obj/item/cane,
@@ -75196,8 +67117,7 @@
/area/crew_quarters/sleep)
"cMP" = (
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/cryopod/right,
/turf/simulated/floor/plasteel{
@@ -75213,35 +67133,23 @@
},
/area/crew_quarters/fitness)
"cMR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
"cMS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cMT" = (
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cMU" = (
/obj/machinery/atmospherics/binary/valve,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
@@ -75249,8 +67157,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -75265,8 +67172,7 @@
"cMX" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -75280,22 +67186,8 @@
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cNa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/electrical)
-"cNb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/electrical)
"cNc" = (
/obj/structure/cable{
d1 = 1;
@@ -75303,41 +67195,25 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/electrical)
-"cNd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/maintenance/electrical)
"cNe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/maintenance/electrical)
"cNf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/maintenance/electrical)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/mixing)
"cNg" = (
/obj/structure/cable{
d1 = 1;
@@ -75345,20 +67221,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cNh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cNi" = (
/obj/effect/decal/cleanable/blood/xeno,
/turf/simulated/floor/plasteel{
@@ -75397,7 +67271,9 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cNm" = (
/obj/structure/cable{
@@ -75407,7 +67283,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cNn" = (
/obj/structure/cable/yellow{
@@ -75441,7 +67319,9 @@
req_access_txt = "47"
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cNp" = (
/obj/effect/spawner/window/reinforced,
@@ -75464,12 +67344,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno4";
- name = "Creature Cell #4";
- opacity = 0
+ name = "Creature Cell #4"
},
/obj/machinery/door/window/brigdoor{
dir = 1;
@@ -75481,12 +67358,12 @@
},
/area/toxins/xenobiology)
"cNr" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
"cNs" = (
@@ -75502,12 +67379,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno5";
- name = "Creature Cell #5";
- opacity = 0
+ name = "Creature Cell #5"
},
/obj/machinery/door/window/brigdoor{
dir = 1;
@@ -75531,12 +67405,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno6";
- name = "Creature Cell #6";
- opacity = 0
+ name = "Creature Cell #6"
},
/obj/machinery/door/window/brigdoor{
dir = 1;
@@ -75572,7 +67443,6 @@
/obj/machinery/door/airlock/research/glass{
autoclose = 0;
frequency = null;
- glass = 1;
icon_state = "door_locked";
id_tag = "tox_airlock_exterior";
locked = 1;
@@ -75599,50 +67469,31 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cNy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"cNz" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
"cNA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 24
- },
+/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cNB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/security/checkpoint/science)
-"cNC" = (
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint/science)
+/area/medical/research)
"cND" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -75655,10 +67506,14 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNF" = (
@@ -75667,71 +67522,82 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNJ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/medical/research)
"cNL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -75739,31 +67605,32 @@
},
/area/medical/research)
"cNM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"cNN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/aft)
"cNO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -75771,36 +67638,45 @@
/area/hallway/primary/aft)
"cNP" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
"cNQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/medbay)
"cNR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75808,75 +67684,83 @@
/area/medical/medbay)
"cNT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 9;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cNU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay)
"cNV" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay)
"cNW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = "medbayfoyer";
name = "Medbay Entrance";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cNY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"cNZ" = (
@@ -75894,57 +67778,38 @@
/turf/space,
/area/space/nearstation)
"cOa" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/security_space_law,
-/obj/item/radio,
-/obj/machinery/status_display{
- pixel_y = 32
+/obj/structure/chair/comfy/lime{
+ dir = 4
},
/obj/machinery/door_control{
- id = "medbayfoyer";
- name = "Medbay Front Doors";
- pixel_x = -25;
- pixel_y = 25
+ id = "psychoffice";
+ name = "Privacy Shutters Control";
+ pixel_x = -25
},
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/carpet,
+/area/medical/psych)
"cOb" = (
-/obj/structure/table/reinforced,
/obj/machinery/light{
dir = 1
},
-/obj/machinery/recharger,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 25
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/carpet,
+/area/medical/psych)
"cOc" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/obj/structure/closet/secure_closet/security/med,
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
/obj/structure/extinguisher_cabinet{
pixel_x = 28;
pixel_y = 30
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/obj/structure/bed/psych,
+/turf/simulated/floor/carpet,
+/area/medical/psych)
"cOd" = (
/obj/structure/table,
/obj/machinery/newscaster{
@@ -75955,36 +67820,25 @@
pixel_y = 5
},
/obj/item/storage/box/masks,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"cOe" = (
-/obj/structure/table,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = 25
- },
+/obj/item/storage/box/beakers,
/obj/item/storage/box/gloves{
pixel_x = 5;
pixel_y = 5
},
-/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"cOf" = (
-/obj/structure/closet/walllocker/emerglocker/north,
+"cOe" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 25
+ },
+/obj/structure/closet/secure_closet/medical1,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cOg" = (
@@ -76006,22 +67860,29 @@
pixel_x = -3;
pixel_y = -3
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cOi" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/medbay2)
"cOj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -76030,12 +67891,10 @@
"cOk" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/storage/firstaid/toxin{
@@ -76051,15 +67910,20 @@
pixel_x = -3;
pixel_y = -3
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cOl" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/medbay)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cOm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -76070,10 +67934,6 @@
/turf/space,
/area/space/nearstation)
"cOn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -76084,15 +67944,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cOp" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/paper_bin,
/obj/item/pen,
@@ -76145,8 +68002,7 @@
"cOw" = (
/obj/machinery/camera{
c_tag = "Holodeck Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/engine{
name = "Holodeck Projector Floor"
@@ -76170,8 +68026,7 @@
"cOz" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -76195,6 +68050,9 @@
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cOD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -76209,6 +68067,12 @@
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -76261,12 +68125,12 @@
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cOM" = (
/obj/structure/cable{
@@ -76275,24 +68139,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cON" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cOO" = (
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cOP" = (
/obj/structure/sign/science{
@@ -76307,19 +68174,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cOR" = (
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xeno6";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -76330,27 +68197,22 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cOS" = (
/obj/machinery/monkey_recycler,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cOT" = (
/obj/structure/sign/electricshock,
/turf/simulated/wall,
/area/toxins/xenobiology)
-"cOU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
"cOV" = (
/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
dir = 1
@@ -76360,7 +68222,10 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cOW" = (
/obj/structure/sign/science{
@@ -76376,7 +68241,10 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cOY" = (
/obj/structure/sign/biohazard,
@@ -76385,7 +68253,10 @@
"cOZ" = (
/obj/machinery/chem_master,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cPa" = (
/obj/machinery/chem_dispenser,
@@ -76399,7 +68270,10 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cPb" = (
/obj/structure/table/reinforced,
@@ -76407,7 +68281,10 @@
/obj/item/storage/box/syringes,
/obj/item/extinguisher/mini,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cPc" = (
/obj/structure/cable{
@@ -76416,22 +68293,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cPd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitepurple"
},
-/obj/effect/decal/warning_stripes/east,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cPe" = (
/obj/structure/chair/office/light{
@@ -76442,25 +68308,22 @@
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cPf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
+/turf/simulated/floor/engine,
+/area/toxins/explab)
"cPg" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -76474,10 +68337,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -76489,72 +68353,44 @@
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cPj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cPk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cPl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/computer/security,
+/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
-"cPm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
+/area/medical/research)
"cPn" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76563,104 +68399,70 @@
/area/medical/research)
"cPo" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research)
-"cPp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurplefull"
},
/area/medical/research)
"cPq" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cPr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cPs" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cPt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cPu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitepurplefull"
},
/area/medical/research)
"cPv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cPw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/medical/research)
-"cPx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
"cPy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -76669,16 +68471,10 @@
"cPz" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Chemistry Junction";
sortType = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
@@ -76686,60 +68482,31 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/medical/medbay)
-"cPB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/medbay)
"cPC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
+/turf/simulated/wall/r_wall,
+/area/maintenance/starboardsolar)
"cPD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 10;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cPE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay)
"cPF" = (
@@ -76747,36 +68514,16 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"cPG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cPH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cPI" = (
@@ -76784,30 +68531,19 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay)
"cPJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPK" = (
@@ -76828,13 +68564,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cPM" = (
@@ -76842,88 +68574,45 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"cPN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
"cPO" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "open";
+ id_tag = "psychoffice";
+ name = "Privacy Shutters";
+ opacity = 0
},
/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cPP" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/area/medical/psych)
"cPQ" = (
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"cPR" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/medical/psych)
+"cPS" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"cPT" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/medical)
-"cPR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cPS" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cPT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cPU" = (
/obj/structure/table/glass,
/obj/item/storage/firstaid/brute{
@@ -76940,29 +68629,23 @@
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cPV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay2)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cPW" = (
/obj/structure/table/glass,
/obj/machinery/requests_console{
department = "Medbay";
departmentType = 1;
name = "Medbay Requests Console";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
+ pixel_x = 30
},
/obj/item/storage/firstaid/o2{
pixel_x = 6;
@@ -76978,8 +68661,7 @@
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cPX" = (
@@ -76998,53 +68680,53 @@
master_tag = "sw_maint_airlock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"cPZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/medbay3)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/greengrid,
+/area/medical/research)
"cQa" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
req_access_txt = "5"
},
/turf/simulated/floor/plasteel,
-/area/medical/medbay3)
+/area/maintenance/starboard)
"cQb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = "medbayfoyer";
name = "Medbay Entrance";
req_access_txt = "5"
},
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cQc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/obj/structure/toilet{
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/landmark{
@@ -77063,6 +68745,7 @@
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cQe" = (
@@ -77108,8 +68791,7 @@
},
/obj/machinery/camera{
c_tag = "Cryodorms Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -77151,24 +68833,20 @@
},
/area/crew_quarters/fitness)
"cQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
"cQp" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plating,
/area/crew_quarters/fitness)
@@ -77193,31 +68871,19 @@
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"cQt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cQu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cQv" = (
/obj/machinery/space_heater,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cQw" = (
/obj/structure/cable{
d1 = 4;
@@ -77225,28 +68891,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/science)
+/obj/machinery/door/airlock/research{
+ name = "Research Break Room";
+ req_access_txt = "47"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cQx" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -77286,6 +68942,8 @@
"cQB" = (
/obj/structure/cable,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"cQC" = (
@@ -77325,15 +68983,15 @@
/obj/machinery/door_control{
id = "xeno4";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cQG" = (
/obj/structure/cable{
@@ -77348,15 +69006,15 @@
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cQH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cQI" = (
/obj/structure/disposalpipe/trunk{
@@ -77367,20 +69025,20 @@
dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cQJ" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/stack/sheet/mineral/plasma,
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/dropper,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -77409,31 +69067,30 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cQL" = (
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xeno5";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cQN" = (
@@ -77443,13 +69100,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQO" = (
@@ -77458,23 +69112,15 @@
dir = 1;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQQ" = (
@@ -77487,16 +69133,14 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cQR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cQS" = (
@@ -77506,24 +69150,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology)
-"cQT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- layer = 2.4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cQU" = (
@@ -77537,75 +69165,70 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
-"cQW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
"cQX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"cQY" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
-"cQZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint/science)
-"cRa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/security/checkpoint/science)
-"cRb" = (
-/obj/machinery/computer/mecha,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+/area/medical/research)
+"cQY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/security/checkpoint/science)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/maintenance/port)
+"cQZ" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
+"cRa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
+"cRb" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
"cRc" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
+/area/medical/research)
"cRd" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -77615,22 +69238,28 @@
/area/medical/research)
"cRe" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cRf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
},
-/area/medical/research)
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
"cRg" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -77638,17 +69267,15 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
"cRi" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/medbay)
"cRj" = (
@@ -77658,8 +69285,7 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRk" = (
@@ -77676,114 +69302,67 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cRm" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door_control{
+ id = "medbayfoyer";
+ layer = 3.3;
+ name = "Medbay Foyer Doors";
+ normaldoorcontrol = 1;
+ pixel_x = -25
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cRp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4";
+ d2 = 8;
+ icon_state = "2-8";
tag = ""
},
-/obj/machinery/computer/security{
- network = list("Medical")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/security/checkpoint/medical)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cRq" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cRr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/closet/secure_closet/psychiatrist,
+/obj/item/clipboard{
+ pixel_x = -5
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cRs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cRt" = (
/obj/structure/table/glass,
/obj/item/storage/box/beakers{
@@ -77796,8 +69375,7 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cRu" = (
@@ -77807,15 +69385,15 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cRv" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay2)
"cRw" = (
@@ -77828,40 +69406,39 @@
/obj/item/clothing/glasses/hud/health,
/obj/item/reagent_containers/spray/cleaner,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cRx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
- name = "Medbay Toilet";
- req_access_txt = "0"
+ name = "Medbay Toilet"
},
/turf/simulated/floor/plasteel,
/area/medical/medbay3)
"cRy" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"cRz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cRA" = (
@@ -77872,8 +69449,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -77881,6 +69457,7 @@
},
/area/crew_quarters/fitness)
"cRB" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -77892,7 +69469,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -77901,24 +69477,28 @@
},
/area/crew_quarters/fitness)
"cRC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/crew_quarters/fitness)
+/obj/machinery/power/smes,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
"cRD" = (
/obj/structure/rack,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cRE" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -77946,6 +69526,8 @@
/area/maintenance/electrical)
"cRJ" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/electrical)
"cRK" = (
@@ -77969,7 +69551,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "blobstart"
},
@@ -77977,7 +69558,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cRO" = (
/obj/structure/cable{
d1 = 1;
@@ -77986,7 +69567,9 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cRP" = (
/obj/structure/cable{
@@ -78000,19 +69583,16 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "xenosecure";
- name = "Secure Creature Cell";
- opacity = 0
- },
/obj/machinery/door/window/brigdoor{
dir = 8;
id = null;
name = "Creature Pen";
req_access_txt = "47"
},
+/obj/machinery/door/poddoor/preopen{
+ id_tag = "xenosecure";
+ name = "Secure Creature Cell"
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78023,12 +69603,13 @@
/obj/machinery/door_control{
id = "xenosecure";
name = "Containment Control";
- pixel_x = 0;
pixel_y = -3;
req_access_txt = "55"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cRR" = (
/obj/structure/cable{
@@ -78038,7 +69619,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cRS" = (
/obj/structure/cable{
@@ -78047,47 +69630,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark/start{
name = "Scientist"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRU" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cRW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -78099,19 +69650,15 @@
icon_state = "4-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/toxins/xenobiology)
-"cRY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology)
"cRZ" = (
@@ -78140,43 +69687,32 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/xenobiology)
-"cSa" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology)
"cSb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cSc" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology)
+"cSc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplefull"
+ },
+/area/toxins/xenobiology)
"cSd" = (
/obj/structure/cable{
d1 = 4;
@@ -78184,10 +69720,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cSe" = (
@@ -78205,13 +69745,15 @@
/obj/effect/landmark/start{
name = "Scientist"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/area/toxins/xenobiology)
-"cSf" = (
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology)
"cSg" = (
@@ -78224,10 +69766,9 @@
"cSh" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cSi" = (
/obj/machinery/light/small{
@@ -78242,48 +69783,14 @@
},
/area/toxins/xenobiology)
"cSj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
+/turf/simulated/floor/plasteel{
dir = 8;
- name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ icon_state = "whitepurple"
},
-/obj/machinery/door_timer{
- dir = 10;
- id = "scicell";
- name = "Science Cell Timer";
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/checkpoint/science)
-"cSk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
- },
-/area/security/checkpoint/science)
+/area/medical/research)
"cSl" = (
/obj/machinery/light/small{
dir = 1
@@ -78309,15 +69816,8 @@
/area/medical/research)
"cSn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"cSo" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
@@ -78351,7 +69851,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -78361,20 +69860,17 @@
},
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cSt" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"cSu" = (
/obj/machinery/autolathe,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -78388,18 +69884,9 @@
},
/obj/item/stack/packageWrap,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"cSw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
"cSx" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -78407,8 +69894,7 @@
/obj/machinery/light,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSy" = (
@@ -78416,8 +69902,7 @@
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSz" = (
@@ -78427,15 +69912,13 @@
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSA" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSB" = (
@@ -78443,8 +69926,7 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSC" = (
@@ -78465,12 +69947,10 @@
"cSD" = (
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cSE" = (
-/obj/structure/bed/roller,
/obj/machinery/light,
/obj/structure/sign/chemistry{
pixel_y = -32
@@ -78480,17 +69960,14 @@
dir = 1;
network = list("Medical","SS13")
},
+/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSF" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSG" = (
@@ -78498,86 +69975,84 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cSH" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"cSI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"cSJ" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"cSK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"cSL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"cSM" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cSJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/medical)
-"cSK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cSL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
+/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cSM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
+/area/maintenance/starboardsolar)
"cSN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"cSO" = (
/obj/structure/sign/greencross,
/turf/simulated/wall,
@@ -78599,15 +70074,15 @@
name = "Medical Supplies";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cSR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/urinal{
pixel_y = 28
@@ -78619,11 +70094,8 @@
},
/area/medical/medbay3)
"cSS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -78633,9 +70105,7 @@
"cST" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 10;
- pixel_y = 0
+ pixel_x = 10
},
/obj/effect/decal/cleanable/vomit,
/obj/effect/decal/cleanable/dirt,
@@ -78651,8 +70121,6 @@
},
/area/medical/medbay3)
"cSU" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Toilet";
req_access_txt = "5"
@@ -78666,8 +70134,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cSW" = (
@@ -78729,16 +70196,14 @@
},
/area/maintenance/starboard)
"cTe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cTf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -78747,7 +70212,7 @@
"cTg" = (
/obj/effect/spawner/random_spawners/wall_rusted_probably,
/turf/simulated/wall/rust,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cTh" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
@@ -78759,7 +70224,7 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cTj" = (
/obj/structure/closet/secure_closet/engineering_welding,
/turf/simulated/floor/plating,
@@ -78801,7 +70266,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 8
},
@@ -78809,7 +70273,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cTp" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -78822,6 +70286,9 @@
},
/area/toxins/xenobiology)
"cTq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
@@ -78830,9 +70297,6 @@
tag = ""
},
/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
"cTr" = (
@@ -78842,12 +70306,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cTs" = (
/obj/structure/cable{
@@ -78857,13 +70320,14 @@
tag = ""
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
id = null;
name = "Creature Pen";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTt" = (
/obj/structure/cable{
@@ -78889,7 +70353,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTu" = (
/obj/structure/cable{
@@ -78898,9 +70364,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTv" = (
/obj/structure/cable{
@@ -78923,7 +70396,9 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTw" = (
/obj/machinery/door/firedoor,
@@ -78935,33 +70410,26 @@
},
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cTx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cTy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cTz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cTA" = (
@@ -78971,28 +70439,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitehall"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cTB" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Division Access";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cTC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Division Access";
@@ -79002,13 +70469,11 @@
/turf/simulated/floor/plasteel,
/area/medical/research)
"cTD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cTE" = (
@@ -79018,13 +70483,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cTF" = (
@@ -79036,52 +70506,52 @@
req_access_txt = "7"
},
/obj/machinery/door/window/northleft,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Research Desk Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/lab)
"cTG" = (
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xeno2";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTH" = (
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xeno3";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cTI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -79089,62 +70559,37 @@
},
/area/medical/research)
"cTJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/chair/comfy/purp,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
-"cTK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "scicell";
- name = "Science Cell";
- req_access_txt = "150"
+/area/medical/research)
+"cTL" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light_switch{
+ pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
-"cTL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
+/area/medical/research)
"cTM" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
name = "Slime Processor"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cTN" = (
-/obj/structure/sign/science,
-/turf/simulated/wall/r_wall,
-/area/medical/research)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"cTO" = (
/obj/structure/chair/office/light{
dir = 4
@@ -79153,69 +70598,65 @@
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cTP" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/medical/research)
+/obj/machinery/door/poddoor/shutters/preopen{
+ id_tag = "robodesk";
+ name = "Robotics Desk Shutters"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
"cTQ" = (
/obj/structure/sign/science,
/turf/simulated/wall,
/area/toxins/lab)
"cTR" = (
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/toxins/lab)
"cTS" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Research Desk Shutters"
},
/turf/simulated/floor/plating,
/area/toxins/lab)
"cTT" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "researchdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Research Desk Shutters"
},
/turf/simulated/floor/plating,
/area/toxins/lab)
"cTU" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cTV" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/aft)
"cTW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -79224,13 +70665,10 @@
/area/medical/medbay)
"cTY" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "chemdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/turf/simulated/floor/plating,
/area/medical/medbay)
@@ -79250,29 +70688,21 @@
name = "Chemistry Desk";
req_access_txt = "5; 33"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "chemdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/medbay)
"cUb" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "chemdesk1";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/turf/simulated/floor/plating,
/area/medical/medbay)
@@ -79303,24 +70733,19 @@
},
/area/medical/medbay)
"cUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Medbay Entrance Hall";
dir = 8;
@@ -79328,98 +70753,61 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/camera{
- c_tag = "Medbay Security Checkpoint";
+ c_tag = "Psychiatrist's Office";
dir = 4;
network = list("Medical","SS13","Security")
},
-/obj/machinery/door_timer{
- dir = 10;
- id = "medcell";
- name = "Medical Cell Timer";
- pixel_x = -32;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/obj/structure/cable,
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cUh" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cUi" = (
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cUk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"cUl" = (
@@ -79431,8 +70819,8 @@
},
/area/medical/medbay3)
"cUm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
+/obj/structure/closet/wardrobe/medical_white,
+/obj/item/storage/backpack/satchel_med,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -79441,11 +70829,14 @@
"cUn" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cUo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -79453,10 +70844,8 @@
/area/medical/medbay3)
"cUp" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -79486,30 +70875,22 @@
pixel_x = -5;
pixel_y = 3
},
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cUt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+"cUu" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
+ dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cUu" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -79522,32 +70903,28 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cUv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79557,18 +70934,17 @@
},
/area/maintenance/starboard)
"cUw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79577,18 +70953,17 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cUx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79597,18 +70972,17 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cUy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79618,59 +70992,36 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"cUz" = (
+"cUA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cUA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cUB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79678,18 +71029,17 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cUC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79701,40 +71051,36 @@
},
/area/maintenance/starboard)
"cUD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
+/area/maintenance/starboard)
"cUE" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79745,15 +71091,15 @@
},
/area/crew_quarters/fitness)
"cUF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -79763,8 +71109,7 @@
/area/crew_quarters/fitness)
"cUG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair/stool,
@@ -79775,8 +71120,7 @@
/area/crew_quarters/fitness)
"cUH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79789,8 +71133,7 @@
/area/crew_quarters/fitness)
"cUI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79805,8 +71148,7 @@
/area/crew_quarters/fitness)
"cUJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -79831,11 +71173,10 @@
/area/crew_quarters/fitness)
"cUL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -79843,14 +71184,10 @@
},
/area/crew_quarters/fitness)
"cUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "neutral"
},
-/area/crew_quarters/fitness)
+/area/maintenance/starboard)
"cUN" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -79869,11 +71206,11 @@
/obj/structure/mopbucket,
/obj/item/mop,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cUQ" = (
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cUR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/securearea,
@@ -79885,6 +71222,8 @@
req_access_txt = "11"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cUT" = (
@@ -79916,7 +71255,16 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cUV" = (
/obj/machinery/disposal,
@@ -79928,68 +71276,59 @@
layer = 2.9
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cUW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cUX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cUY" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cUZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/medical/research)
-"cVa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
"cVb" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cVc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cVd" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cVe" = (
/obj/structure/disposalpipe/trunk{
@@ -79997,13 +71336,14 @@
},
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"cVf" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cVg" = (
@@ -80013,12 +71353,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Scientist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology)
"cVh" = (
@@ -80030,80 +71372,36 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
-"cVi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
"cVj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair{
- dir = 4
- },
+/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
+ dir = 8;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
-"cVk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/science)
+/area/medical/research)
"cVl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/closet/secure_closet/brig{
- id = "scicell"
+/obj/structure/table/wood,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -1
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cVm" = (
/obj/machinery/smartfridge/secure/extract,
/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cVn" = (
/obj/structure/cable{
@@ -80127,42 +71425,28 @@
},
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/folder/white,
/obj/item/pen,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
-"cVp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security/glass{
- id_tag = "scicell";
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/science)
"cVq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cVr" = (
/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/toxins/lab)
"cVs" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cVt" = (
@@ -80190,6 +71474,7 @@
},
/area/toxins/lab)
"cVv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
@@ -80230,55 +71515,25 @@
/area/toxins/lab)
"cVz" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "researchdesk2";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Research Desk Shutters"
},
/turf/simulated/floor/plating,
/area/toxins/lab)
"cVA" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
-"cVB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/aft)
-"cVC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "orangecorner"
- },
-/area/hallway/primary/aft)
"cVD" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "chemdesk2";
- name = "Chemistry Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/turf/simulated/floor/plating,
/area/medical/chemistry)
@@ -80299,17 +71554,17 @@
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 9;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cVF" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/chemist,
+/obj/item/toy/figure/crew/chemist,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cVG" = (
@@ -80330,20 +71585,15 @@
/obj/effect/landmark/start{
name = "Chemist"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cVI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/chem_dispenser,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cVJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Research Hallway North";
dir = 8;
@@ -80357,20 +71607,25 @@
"cVK" = (
/obj/structure/closet/wardrobe/chemistry_white,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/reagent_dispensers/fueltank/chem{
+ pixel_x = 32
},
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cVL" = (
-/obj/machinery/ai_status_display,
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
"cVM" = (
/obj/machinery/computer/med_data,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVN" = (
@@ -80379,73 +71634,47 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVO" = (
/obj/structure/chair/office/light{
dir = 1
},
+/obj/machinery/door_control{
+ id = "medbayfoyer";
+ layer = 3.3;
+ name = "Medbay Foyer Doors";
+ normaldoorcontrol = 1;
+ pixel_x = 28;
+ pixel_y = 27
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVP" = (
/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/door_control{
- id = "medbayfoyer";
- name = "Medbay Front Doors";
- pixel_x = 25;
- pixel_y = 25
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cVQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_y = 5
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- id = "medcell";
- name = "Medical Cell";
- req_access_txt = "150"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/checkpoint/medical)
+/obj/item/pen/multi,
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cVR" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/storage/briefcase,
+/turf/simulated/floor/wood,
+/area/medical/psych)
"cVS" = (
/obj/structure/cable{
d1 = 1;
@@ -80453,10 +71682,11 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVT" = (
@@ -80466,6 +71696,11 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -80473,58 +71708,43 @@
"cVU" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVV" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 30
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
-"cVX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redbluefull"
- },
-/area/medical/medbay3)
"cVY" = (
-/turf/simulated/floor/plasteel{
- icon_state = "redbluefull"
- },
-/area/medical/medbay3)
-"cVZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
/area/medical/medbay3)
"cWa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplefull"
+ },
+/area/assembly/robotics)
"cWb" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -80532,6 +71752,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cWc" = (
@@ -80571,7 +71792,6 @@
/area/crew_quarters/fitness)
"cWh" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -80594,35 +71814,23 @@
/obj/item/bikehorn/rubberducky,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -80630,58 +71838,64 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light/small{
dir = 1
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWs" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWt" = (
/obj/structure/cable{
d1 = 4;
@@ -80689,36 +71903,35 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWu" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
/obj/machinery/camera{
- c_tag = "Research Security Checkpoint";
+ c_tag = "Research Break Room";
dir = 8;
network = list("Research","SS13","Security")
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+ dir = 4;
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cWv" = (
/obj/structure/cable{
d1 = 2;
@@ -80726,22 +71939,26 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWx" = (
/obj/structure/cable{
d1 = 1;
@@ -80749,14 +71966,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWy" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -80764,7 +71982,6 @@
},
/area/toxins/xenobiology)
"cWz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -80773,11 +71990,10 @@
},
/area/medical/research)
"cWA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cWB" = (
/obj/structure/cable{
@@ -80786,25 +72002,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cWC" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cWD" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
"cWE" = (
@@ -80818,12 +72036,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno1";
- name = "Creature Cell #1";
- opacity = 0
+ name = "Creature Cell #1"
},
/obj/machinery/door/window/brigdoor{
dir = 2;
@@ -80845,12 +72060,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno2";
- name = "Creature Cell #4";
- opacity = 0
+ name = "Creature Cell #2"
},
/obj/machinery/door/window/brigdoor{
dir = 2;
@@ -80872,12 +72084,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "xeno3";
- name = "Creature Cell #3";
- opacity = 0
+ name = "Creature Cell #3"
},
/obj/machinery/door/window/brigdoor{
dir = 2;
@@ -80890,16 +72099,13 @@
/area/toxins/xenobiology)
"cWH" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cWI" = (
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology)
"cWJ" = (
@@ -80914,13 +72120,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cWK" = (
@@ -80930,12 +72133,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cWL" = (
@@ -80948,11 +72147,9 @@
/obj/machinery/camera{
c_tag = "Research Lobby";
dir = 1;
- network = list("Research","SS13");
- pixel_x = 0
+ network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/medical/research)
@@ -80960,8 +72157,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/item/stock_parts/matter_bin{
pixel_x = 3;
@@ -80970,35 +72166,37 @@
/obj/item/stock_parts/matter_bin,
/obj/item/stock_parts/micro_laser,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"cWN" = (
-/obj/structure/chair{
- dir = 4
+/obj/structure/chair/comfy/purp{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cWO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cWP" = (
+/obj/structure/table/wood,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "red"
+ icon_state = "whitepurple"
},
-/area/security/checkpoint/science)
+/area/medical/research)
"cWQ" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/decal/warning_stripes/northwest,
@@ -81014,8 +72212,7 @@
},
/obj/machinery/r_n_d/protolathe,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -81028,20 +72225,26 @@
/obj/item/storage/bag/bio,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cWU" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cWV" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cWW" = (
/obj/structure/filingcabinet/chestdrawer,
@@ -81049,30 +72252,16 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology)
-"cWX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurple"
},
-/area/toxins/lab)
+/area/toxins/xenobiology)
"cWY" = (
/obj/effect/landmark/start{
name = "Scientist"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/toxins/lab)
-"cWZ" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
/area/toxins/lab)
"cXa" = (
@@ -81085,7 +72274,9 @@
pixel_y = -29
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
/area/toxins/xenobiology)
"cXb" = (
/obj/structure/closet/emcloset,
@@ -81095,23 +72286,27 @@
pixel_y = -29
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cXc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cXd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Central Hallway South";
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -81125,8 +72320,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cXg" = (
@@ -81136,9 +72330,7 @@
/area/medical/chemistry)
"cXh" = (
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cXi" = (
/obj/structure/disposalpipe/trunk{
@@ -81146,22 +72338,17 @@
},
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cXj" = (
/obj/structure/window/reinforced,
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cXk" = (
/obj/structure/cable{
@@ -81170,6 +72357,12 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81177,28 +72370,30 @@
"cXl" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cXm" = (
/obj/machinery/computer/crew,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81208,31 +72403,35 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"cXp" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXq" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/medbay3)
-"cXr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay3)
+"cXr" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Reception";
@@ -81240,84 +72439,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/medbay)
-"cXs" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cXt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/chair{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cXu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cXv" = (
-/obj/structure/closet/secure_closet/brig{
- id = "medcell"
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cXw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cXx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cXy" = (
@@ -81332,6 +72454,8 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81346,20 +72470,23 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay3)
"cXA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81384,8 +72511,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cXC" = (
@@ -81396,33 +72522,19 @@
},
/area/medical/medbay3)
"cXD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/crate,
/obj/item/retractor,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"cXE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redbluefull"
- },
-/area/medical/medbay3)
"cXF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
/area/medical/medbay3)
"cXG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -81439,19 +72551,10 @@
/area/medical/medbay3)
"cXI" = (
/turf/simulated/wall/rust,
-/area/medical/surgery1)
+/area/medical/surgery)
"cXJ" = (
/turf/simulated/wall,
/area/medical/surgery1)
-"cXK" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/medbay3)
"cXL" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
@@ -81468,8 +72571,7 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Rec Room Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -81478,7 +72580,6 @@
"cXO" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness)
@@ -81502,7 +72603,7 @@
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cXS" = (
/obj/structure/cable{
d1 = 4;
@@ -81510,49 +72611,28 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cXT" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cXU" = (
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cXV" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cXW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cXX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cXY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -81561,31 +72641,11 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cXZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cYa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYc" = (
/obj/structure/cable{
d1 = 4;
@@ -81593,13 +72653,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYd" = (
/obj/structure/cable{
d1 = 4;
@@ -81607,13 +72663,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYe" = (
/obj/structure/cable{
d1 = 4;
@@ -81621,11 +72674,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYf" = (
/obj/structure/cable{
d1 = 1;
@@ -81638,35 +72688,24 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cYh" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/closet/wardrobe/yellow{
- icon_state = "yellow"
- },
+/obj/structure/closet/wardrobe/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -81680,34 +72719,26 @@
},
/area/toxins/xenobiology)
"cYj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cYk" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cYl" = (
/obj/structure/closet/l3closet/scientist,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cYm" = (
/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/item/stack/cable_coil/random,
@@ -81717,7 +72748,10 @@
/obj/item/stock_parts/manipulator,
/obj/item/stock_parts/manipulator,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"cYn" = (
/obj/machinery/computer/rdconsole/core,
@@ -81725,7 +72759,6 @@
/turf/simulated/floor/plasteel,
/area/toxins/lab)
"cYo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
@@ -81734,21 +72767,6 @@
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"cYp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/science)
"cYq" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -81760,7 +72778,6 @@
/turf/simulated/floor/plasteel,
/area/toxins/lab)
"cYs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
/obj/effect/decal/warning_stripes/north,
@@ -81773,12 +72790,13 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cYu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
/obj/effect/decal/warning_stripes/north,
@@ -81795,27 +72813,15 @@
},
/obj/item/storage/box/gloves,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"cYw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralfull"
+ icon_state = "whitepurplefull"
},
-/area/toxins/lab)
-"cYx" = (
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
- },
-/area/toxins/lab)
+/area/medical/research)
"cYy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "white"
},
/area/toxins/lab)
"cYz" = (
@@ -81824,29 +72830,34 @@
/obj/item/wrench,
/obj/item/clothing/mask/gas,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplefull"
+ },
/area/medical/research)
"cYA" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplefull"
+ },
/area/medical/research)
"cYB" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Division Access";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"cYC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -81856,30 +72867,40 @@
/obj/item/clothing/glasses/science,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ dir = 10;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cYE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellowcorner"
},
/area/medical/chemistry)
"cYF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "white"
},
/area/medical/chemistry)
"cYG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "white"
},
/area/medical/chemistry)
"cYH" = (
@@ -81887,9 +72908,12 @@
/obj/machinery/reagentgrinder,
/obj/item/reagent_containers/glass/beaker/large,
/obj/item/reagent_containers/glass/beaker/large,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cYI" = (
@@ -81900,7 +72924,7 @@
/obj/structure/table/glass,
/obj/machinery/light/small,
/obj/item/clipboard,
-/obj/item/toy/figure/md,
+/obj/item/toy/figure/crew/md,
/obj/machinery/camera{
c_tag = "Medbay Front Desk";
dir = 1;
@@ -81908,121 +72932,69 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/medbay)
-"cYK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYL" = (
/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cYM" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cYN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/structure/closet/wardrobe/coroner,
+/obj/item/reagent_containers/glass/bottle/reagent/formaldehyde,
+/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/medbay)
+/area/medical/morgue)
"cYO" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"cYP" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cYQ" = (
-/obj/structure/chair{
- dir = 4
+/turf/simulated/wall,
+/area/medical/psych)
+"cYR" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "red"
+ icon_state = "freezerfloor"
},
-/area/security/checkpoint/medical)
-"cYR" = (
+/area/medical/medbay)
+"cYS" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower,
+/turf/simulated/floor/noslip,
+/area/medical/medbay)
+"cYU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cYS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
-"cYT" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
-"cYU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"cYV" = (
/obj/structure/cable{
d1 = 1;
@@ -82031,8 +73003,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay3)
"cYW" = (
@@ -82040,29 +73011,32 @@
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cYX" = (
/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
"cYY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
/area/medical/medbay3)
"cYZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
@@ -82078,8 +73052,10 @@
dir = 8;
network = list("SS13","Medical")
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82089,18 +73065,15 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/clothing/accessory/stethoscope,
@@ -82110,6 +73083,7 @@
},
/area/maintenance/starboard)
"cZd" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -82120,6 +73094,7 @@
/obj/structure/sign/examroom{
pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cZe" = (
@@ -82129,15 +73104,14 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZf" = (
/obj/machinery/iv_drip,
/obj/structure/bed/roller,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"cZg" = (
/obj/structure/table/glass,
/obj/structure/sign/nosmoking_2{
@@ -82150,20 +73124,18 @@
/obj/item/stack/medical/ointment,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZh" = (
/obj/machinery/iv_drip,
/obj/structure/bed/roller,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZi" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
@@ -82172,10 +73144,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZj" = (
/obj/machinery/constructable_frame/machine_frame,
/obj/effect/decal/cleanable/cobweb2,
@@ -82183,10 +73154,9 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"cZk" = (
/obj/structure/cable{
d1 = 1;
@@ -82199,19 +73169,15 @@
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cZl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Gambling Den"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cZm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -82219,32 +73185,18 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cZn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/rack,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cZo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cZp" = (
/obj/machinery/sleeper{
dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZq" = (
@@ -82257,7 +73209,6 @@
/area/maintenance/electrical)
"cZr" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Division Access";
@@ -82275,8 +73226,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/folder/white,
/obj/item/stock_parts/cell/high,
@@ -82284,16 +73234,15 @@
/obj/item/stack/sheet/glass,
/obj/item/stack/sheet/glass,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/toxins/lab)
"cZt" = (
/turf/simulated/wall,
/area/medical/research)
"cZu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -82303,28 +73252,25 @@
},
/area/medical/research)
"cZv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/folder,
/obj/item/pen,
-/obj/machinery/door/window/westleft{
- name = "interior door";
- req_access_txt = "0"
- },
+/obj/machinery/door/window/westleft,
/obj/machinery/door/window/eastleft{
name = "Research Lab Desk";
req_access_txt = "7"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/lab)
"cZw" = (
/obj/machinery/constructable_frame/machine_frame,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cZx" = (
/obj/structure/sign/securearea,
@@ -82337,23 +73283,16 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
-"cZz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/toxins/lab)
"cZA" = (
/obj/structure/cable{
d1 = 4;
@@ -82362,9 +73301,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/toxins/lab)
"cZB" = (
@@ -82377,10 +73314,9 @@
/obj/machinery/hologram/holopad{
pixel_x = -16
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "white"
},
/area/toxins/lab)
"cZC" = (
@@ -82394,8 +73330,7 @@
department = "Xenobiology";
departmentType = 2;
name = "Xenobiology Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/obj/machinery/reagentgrinder,
/obj/effect/decal/warning_stripes/yellow,
@@ -82403,8 +73338,7 @@
/area/toxins/xenobiology)
"cZD" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/door_control{
id = "chemdesk2";
@@ -82420,7 +73354,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cZE" = (
@@ -82429,21 +73363,18 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"cZF" = (
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cZG" = (
@@ -82454,13 +73385,27 @@
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"cZH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/medbay)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cZI" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -82470,60 +73415,39 @@
req_access_txt = "5"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"cZJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = -28
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"cZK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
- },
-/area/security/checkpoint/medical)
"cZL" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/checkpoint/medical)
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/medical/medbay)
"cZM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cZN" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -82536,42 +73460,40 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cZP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
"cZQ" = (
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZR" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/area/medical/medbay3)
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
"cZS" = (
/obj/machinery/sleeper,
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 6;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZT" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -82586,17 +73508,16 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/maintenance/starboard)
"cZU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -82604,14 +73525,15 @@
},
/area/medical/medbay3)
"cZV" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/medical/medbay3)
"cZW" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82620,7 +73542,6 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/medical/medbay3)
@@ -82628,34 +73549,28 @@
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
-"cZZ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay3)
+/area/medical/surgery)
"daa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"dab" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dac" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dad" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
@@ -82688,7 +73603,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/wood,
@@ -82721,9 +73635,17 @@
},
/area/maintenance/gambling_den)
"dak" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/maintenance/starboardsolar)
"dal" = (
/obj/structure/cable{
d1 = 1;
@@ -82734,29 +73656,20 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dam" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/door/window/westleft{
+ name = "Robotics Desk";
+ req_access_txt = "29"
},
-/area/maintenance/gambling_den)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/assembly/robotics)
"dan" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
-"dao" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"dap" = (
/obj/structure/cable{
d1 = 4;
@@ -82764,14 +73677,16 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"daq" = (
/obj/structure/cable{
d1 = 4;
@@ -82779,15 +73694,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dar" = (
/obj/structure/cable{
d1 = 4;
@@ -82795,11 +73712,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"das" = (
/obj/structure/cable{
d1 = 2;
@@ -82807,24 +73727,26 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dat" = (
/obj/machinery/chem_heater,
/obj/effect/decal/warning_stripes/southwest,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dau" = (
/turf/simulated/floor/plasteel{
@@ -82833,19 +73755,12 @@
},
/area/medical/research)
"dav" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
-/area/medical/research)
+/area/assembly/robotics)
"daw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -82855,45 +73770,58 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
"day" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/research)
+/area/medical/morgue)
"daz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
},
-/area/medical/research)
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"daA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
"daB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = 32;
pixel_y = 32
@@ -82904,88 +73832,89 @@
},
/area/medical/research)
"daC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
},
-/area/medical/research)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"daD" = (
/turf/simulated/wall/rust,
/area/toxins/xenobiology)
"daE" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"daF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light{
dir = 1;
on = 1
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/medical/research)
-"daG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
},
/area/medical/research)
+"daG" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"daH" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
name = "Research and Development";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/lab)
"daI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
"daJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
/area/toxins/lab)
"daK" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/toy/figure/scientist,
+/obj/item/toy/figure/crew/scientist,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "white"
},
/area/toxins/lab)
"daL" = (
@@ -83005,16 +73934,14 @@
/obj/item/disk/tech_disk{
pixel_y = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "white"
},
/area/toxins/lab)
"daM" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -83022,6 +73949,7 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/hallway/primary/aft)
@@ -83029,13 +73957,11 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/chemistry{
pixel_x = 32;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangecorner"
},
/area/hallway/primary/aft)
@@ -83046,22 +73972,18 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
"daQ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "chemdesk2";
- name = "Chemistry Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/turf/simulated/floor/plating,
/area/medical/chemistry)
@@ -83069,30 +73991,38 @@
/obj/item/crowbar,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"daS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"daT" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
},
-/area/medical/chemistry)
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"daU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "white"
},
/area/medical/chemistry)
"daV" = (
@@ -83102,216 +74032,148 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
"daW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ dir = 4;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"daX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/folder/white,
/obj/machinery/door/firedoor,
/obj/item/pen,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
/obj/machinery/door/window/westleft{
name = "Chemistry Desk";
req_access_txt = "5; 33"
},
-/obj/machinery/door/window/eastleft,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
"daY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellowcorner"
},
/area/medical/medbay)
"daZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dba" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/medical/medbay)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/cmo)
"dbb" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dbc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
},
-/area/medical/medbay)
+/area/maintenance/starboardsolar)
"dbd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/chem_dispenser,
/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/medical/chemistry)
+"dbg" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/assembly/robotics)
+"dbh" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/chemistry)
-"dbe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/area/toxins/mixing)
+"dbi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay)
-"dbf" = (
+"dbj" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
+"dbk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dbg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/medbay)
-"dbh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dbi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"dbj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"dbk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"dbl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbm" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"dbn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/medical/medbay)
-"dbp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/apmaint)
+"dbp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dbq" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -83323,6 +74185,7 @@
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -83331,7 +74194,7 @@
"dbr" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/medical/surgery1)
+/area/medical/surgery)
"dbs" = (
/obj/structure/sign/examroom,
/turf/simulated/wall,
@@ -83346,18 +74209,14 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"dbu" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"dbv" = (
@@ -83368,12 +74227,9 @@
/turf/simulated/floor/plating,
/area/medical/medbay3)
"dbw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/medical/medbay3)
+/turf/simulated/wall/r_wall,
+/area/maintenance/apmaint)
"dbx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 8
},
@@ -83401,23 +74257,35 @@
},
/obj/structure/table/tray,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dbB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"dbC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dbD" = (
/obj/structure/cable{
d1 = 1;
@@ -83430,10 +74298,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dbE" = (
@@ -83443,30 +74307,23 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/maintenance/gambling_den)
"dbF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Observation Room"
},
-/obj/item/surgicaldrill,
-/obj/item/circular_saw,
-/obj/item/FixOVein,
-/obj/structure/table/tray,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dbG" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
@@ -83475,24 +74332,37 @@
},
/area/maintenance/gambling_den)
"dbH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/area/maintenance/gambling_den)
-"dbI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 5
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/maintenance/gambling_den)
+/area/medical/medbay)
+"dbI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"dbJ" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/poster/contraband/random{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -83508,40 +74378,33 @@
"dbM" = (
/turf/simulated/wall/rust,
/area/medical/research)
-"dbN" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"dbO" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/research)
"dbP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
"dbQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"dbR" = (
@@ -83549,6 +74412,12 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -83558,15 +74427,8 @@
dir = 4
},
/obj/item/radio/beacon,
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
-"dbT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -83580,24 +74442,28 @@
/obj/machinery/door/window/eastleft,
/obj/item/folder,
/obj/item/pen,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "researchdesk2";
- name = "Research Desk Shutters";
- opacity = 0
+ name = "Research Desk Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplefull"
+ },
/area/toxins/lab)
"dbV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"dbW" = (
@@ -83605,9 +74471,10 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"dbX" = (
@@ -83615,16 +74482,26 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"dbY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/research)
"dbZ" = (
@@ -83636,9 +74513,17 @@
/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/item/reagent_containers/dropper,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dca" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
@@ -83651,13 +74536,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/landmark/start{
name = "Scientist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
/area/toxins/lab)
"dcc" = (
@@ -83665,7 +74554,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -83678,16 +74566,18 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dce" = (
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/hallway/primary/aft)
"dcf" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
@@ -83697,9 +74587,7 @@
},
/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dch" = (
/obj/structure/chair/office/light{
@@ -83708,47 +74596,44 @@
/obj/effect/landmark/start{
name = "Chemist"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dci" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dcj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/medical/chemistry)
+/area/hallway/primary/aft)
"dck" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ dir = 4;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"dcl" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
/obj/item/pen,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "chemdesk2";
- name = "Chemistry Desk Shutters";
- opacity = 0
+ name = "Chemistry Desk Shutters"
},
/obj/machinery/door/window/westleft,
/obj/machinery/door/window/eastleft{
@@ -83756,9 +74641,7 @@
req_access_txt = "5; 33"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dcm" = (
/obj/structure/cable{
@@ -83767,10 +74650,15 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/medbay)
"dcn" = (
@@ -83780,10 +74668,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dco" = (
@@ -83793,36 +74683,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"dcp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
-"dcq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
"dcr" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -83835,20 +74703,18 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcs" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dct" = (
/obj/structure/cable{
@@ -83857,27 +74723,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
-"dcu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
+ dir = 1;
icon_state = "white"
},
/area/medical/medbay)
@@ -83894,9 +74748,15 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dcw" = (
@@ -83911,6 +74771,12 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -83922,60 +74788,82 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dcy" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"dcz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dcA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/medical/medbay)
+/area/maintenance/apmaint)
"dcB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dcC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -83987,28 +74875,34 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/maintenance/starboard)
"dcD" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/medbay3)
"dcE" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "white"
},
/area/medical/medbay3)
"dcF" = (
@@ -84019,18 +74913,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance{
- icon_state = "door_locked";
locked = 1;
- name = "Maintenance Access";
- req_access_txt = "0"
+ name = "Maintenance Access"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dcG" = (
/obj/structure/cable{
d1 = 2;
@@ -84039,35 +74930,30 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dcJ" = (
/obj/structure/dresser,
/obj/effect/decal/cleanable/cobweb,
@@ -84100,17 +74986,16 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dcN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/gambling_den)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -84121,25 +75006,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/maintenance/gambling_den)
"dcQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ dir = 4;
+ icon_state = "neutral"
},
-/area/maintenance/gambling_den)
+/area/maintenance/apmaint)
"dcR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/wood,
/turf/simulated/floor/wood{
broken = 1;
@@ -84148,13 +75025,17 @@
/area/maintenance/gambling_den)
"dcS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
-/obj/structure/chair/wood,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/aft)
"dcT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/chair/wood,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -84167,28 +75048,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/wood/poker,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/maintenance/gambling_den)
"dcV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/table/wood/poker,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/aft)
"dcW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -84208,20 +75083,27 @@
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dda" = (
/obj/structure/table,
/obj/item/flashlight/lamp,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"ddb" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
/obj/item/flashlight,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"ddc" = (
/obj/item/twohanded/required/kirbyplants,
@@ -84231,16 +75113,16 @@
/turf/simulated/floor/plating,
/area/medical/research)
"ddd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/chair{
+ dir = 8
},
-/area/maintenance/gambling_den)
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
"dde" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -84256,37 +75138,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ddg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ddh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ddi" = (
/turf/simulated/wall/r_wall,
/area/toxins/explab)
"ddj" = (
/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -84294,31 +75163,33 @@
/obj/machinery/cell_charger,
/obj/machinery/light,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"ddk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ddl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -84341,7 +75212,10 @@
"ddo" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"ddp" = (
/obj/machinery/atmospherics/unary/portables_connector,
@@ -84353,7 +75227,10 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"ddq" = (
/obj/machinery/atmospherics/unary/portables_connector,
@@ -84361,7 +75238,10 @@
pixel_y = 24
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"ddr" = (
/obj/machinery/camera{
@@ -84373,11 +75253,9 @@
department = "Science";
departmentType = 2;
name = "Research Request Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
@@ -84385,109 +75263,98 @@
/turf/simulated/wall,
/area/toxins/explab)
"ddt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"ddu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"ddu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
/area/medical/research)
"ddv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"ddw" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "whitepurplecorner"
},
/area/medical/research)
"ddx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"ddy" = (
+/turf/simulated/wall,
+/area/maintenance/apmaint)
+"ddz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "wood"
},
-/area/medical/research)
-"ddy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"ddz" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
+/area/library/abandoned)
"ddA" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"ddB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "wood"
},
-/area/medical/research)
+/area/library/abandoned)
"ddC" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/toxins/lab)
"ddD" = (
/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"ddE" = (
/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/item/storage/toolbox/mechanical,
@@ -84495,12 +75362,14 @@
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"ddF" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/folder/white,
@@ -84509,7 +75378,9 @@
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/dropper,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"ddG" = (
/obj/structure/cable{
@@ -84518,12 +75389,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"ddH" = (
@@ -84544,7 +75414,9 @@
pixel_y = -26
},
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/lab)
"ddI" = (
/obj/structure/table/reinforced,
@@ -84552,23 +75424,36 @@
/obj/item/disk/tech_disk,
/obj/item/assembly/timer,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"ddJ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/hallway/primary/aft)
"ddK" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/hallway/primary/aft)
"ddL" = (
-/obj/machinery/smartfridge/secure/chemistry,
+/obj/machinery/smartfridge/medbay,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -84582,14 +75467,17 @@
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"ddN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/reagent_dispensers/fueltank/chem{
pixel_y = -32
},
@@ -84601,22 +75489,19 @@
name = "Chemistry Cleaner"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddP" = (
@@ -84625,10 +75510,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/radio/intercom{
dir = 1;
name = "Station Intercom (General)";
@@ -84639,12 +75520,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddQ" = (
@@ -84654,67 +75533,45 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light_switch{
pixel_x = 4;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ dir = 6;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"ddS" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/medbay)
-"ddT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whiteyellowcorner"
},
/area/medical/medbay)
"ddU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"ddV" = (
/obj/structure/table/glass,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Chemistry";
@@ -84732,51 +75589,58 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreencorner"
+ dir = 4;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/medbay)
-"ddX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/apmaint)
+"ddX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"ddY" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/area/medical/medbay)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
"ddZ" = (
/obj/machinery/chem_master,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/structure/sign/nosmoking_2{
@@ -84784,18 +75648,11 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dea" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"deb" = (
@@ -84805,14 +75662,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dec" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -84823,8 +75681,14 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/medical/medbay)
+/area/maintenance/starboard)
"ded" = (
/obj/structure/cable{
d1 = 1;
@@ -84832,85 +75696,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
-"dee" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"def" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"deg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"deh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dei" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/turf/simulated/wall,
-/area/medical/medbay)
-"dek" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/virology)
+"dek" = (
/obj/structure/rack,
/obj/item/roller,
/obj/item/reagent_containers/iv_bag,
@@ -84926,46 +75742,35 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dem" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
-"den" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
+/area/medical/surgery)
"deo" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dep" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"deq" = (
/obj/machinery/door/airlock/maintenance{
- icon_state = "door_locked";
locked = 1;
- name = "Maintenance Access";
- req_access_txt = "0"
+ name = "Maintenance Access"
},
/obj/structure/barricade/wooden,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"der" = (
/obj/structure/cable{
d1 = 1;
@@ -84974,47 +75779,39 @@
tag = ""
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"des" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
/area/medical/medbay3)
"det" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"deu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dev" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dew" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -85043,9 +75840,14 @@
},
/area/maintenance/starboard)
"dez" = (
+/obj/structure/bookcase,
+/obj/effect/decal/cleanable/cobweb,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/library/abandoned)
"deA" = (
/obj/structure/cable{
d1 = 2;
@@ -85063,8 +75865,7 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -85142,8 +75943,7 @@
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -85152,15 +75952,23 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"deF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood/poker,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/apmaint)
"deG" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -85180,11 +75988,13 @@
"deK" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/status_display{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"deL" = (
/obj/structure/chair/office/light{
@@ -85197,7 +76007,9 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"deN" = (
/obj/structure/cable{
@@ -85205,12 +76017,14 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"deO" = (
/obj/structure/cable{
d1 = 4;
@@ -85218,12 +76032,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"deP" = (
/obj/structure/cable{
d1 = 2;
@@ -85231,32 +76048,38 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"deQ" = (
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/item/crowbar,
/obj/item/clothing/mask/gas,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"deR" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"deS" = (
@@ -85264,8 +76087,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"deT" = (
@@ -85273,47 +76095,52 @@
dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"deU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/library/abandoned)
+"deV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitegreen"
+ },
+/area/medical/virology)
+"deW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
+ dir = 8;
+ icon_state = "neutral"
},
-/area/toxins/explab)
-"deV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/explab)
-"deW" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/explab)
+/area/maintenance/apmaint)
"deX" = (
/obj/structure/closet/l3closet/scientist,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"deY" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/medical/research)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/apmaint)
"deZ" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -85323,10 +76150,21 @@
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"dfa" = (
-/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/research)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
"dfb" = (
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
@@ -85363,13 +76201,10 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -85383,13 +76218,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -85405,13 +76237,10 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -85427,36 +76256,36 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
-"dfl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
"dfm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dfn" = (
-/turf/simulated/wall,
-/area/assembly/chargebay)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/exit)
"dfo" = (
/turf/simulated/wall/r_wall,
/area/assembly/chargebay)
@@ -85470,31 +76299,20 @@
department = "Medbay";
departmentType = 1;
name = "Chemistry Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
+ pixel_y = -30
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dfr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/ai_status_display{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dfs" = (
@@ -85507,14 +76325,14 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dft" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -85535,10 +76353,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -85566,41 +76380,72 @@
"dfB" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/aft)
"dfC" = (
-/obj/structure/sign/greencross,
-/turf/simulated/wall,
-/area/medical/surgery)
-"dfD" = (
-/turf/simulated/wall,
-/area/medical/surgery)
-"dfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
+/obj/machinery/iv_drip,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dfD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Patient Room";
+ req_access_txt = "5"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dfE" = (
/obj/machinery/status_display{
pixel_y = -32
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dfF" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/surgery)
-"dfG" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Patient Room";
+ req_access_txt = "5"
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "cmo"
},
/area/medical/medbay)
+"dfG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/secondary/exit)
"dfH" = (
/obj/structure/cable{
d1 = 1;
@@ -85609,6 +76454,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -85627,10 +76473,9 @@
/area/maintenance/starboard)
"dfL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/gambling_den)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dfM" = (
/obj/structure/cable{
d1 = 1;
@@ -85664,13 +76509,11 @@
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dfP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/wood{
dir = 8
},
@@ -85680,14 +76523,13 @@
},
/area/maintenance/gambling_den)
"dfQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/l3closet/virology,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "whitegreencorner"
},
-/area/maintenance/gambling_den)
+/area/medical/virology)
"dfR" = (
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -85696,24 +76538,10 @@
/obj/machinery/constructable_frame/machine_frame,
/obj/item/stack/cable_coil/random,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"dfT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/maintenance/gambling_den)
+/area/medical/research)
"dfU" = (
/obj/structure/cable{
d1 = 4;
@@ -85721,11 +76549,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -85747,11 +76570,6 @@
/obj/item/multitool,
/turf/simulated/floor/plating,
/area/medical/research)
-"dfY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"dfZ" = (
/obj/structure/cable{
d1 = 1;
@@ -85759,21 +76577,23 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dga" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/toxins/explab)
-"dgb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
+ },
+/area/toxins/explab)
+"dgb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
/area/toxins/explab)
"dgc" = (
@@ -85781,11 +76601,6 @@
icon_state = "white"
},
/area/toxins/explab)
-"dgd" = (
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/explab)
"dge" = (
/obj/structure/cable{
d1 = 1;
@@ -85798,16 +76613,14 @@
},
/area/toxins/explab)
"dgf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/toxins/explab)
"dgg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "white"
},
/area/toxins/explab)
"dgh" = (
@@ -85817,21 +76630,30 @@
},
/obj/structure/closet/bombcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dgi" = (
/obj/structure/table/reinforced,
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dgj" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dgk" = (
/obj/machinery/firealarm{
@@ -85839,38 +76661,39 @@
pixel_x = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
/area/toxins/explab)
"dgl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dgm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
},
-/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"dgn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/turf/simulated/floor/plasteel{
dir = 8;
- initialize_directions = 11;
- level = 1
+ icon_state = "neutral"
},
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
+/area/maintenance/apmaint)
+"dgn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dgo" = (
/obj/structure/cable{
d1 = 1;
@@ -85891,8 +76714,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/firealarm{
dir = 8;
@@ -85903,6 +76725,7 @@
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
"dgq" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -85915,7 +76738,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
@@ -85931,21 +76753,21 @@
req_access_txt = "47"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dgs" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/structure/table/reinforced,
/obj/item/paicard,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"dgt" = (
/obj/structure/cable{
@@ -85957,38 +76779,16 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
-"dgu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/hor)
"dgv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dgw" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/firealarm{
dir = 4;
@@ -85996,54 +76796,40 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"dgx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgy" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"dgz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dgA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
+"dgA" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/library/abandoned)
"dgB" = (
/obj/structure/cable{
d1 = 1;
@@ -86053,16 +76839,16 @@
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"dgC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86073,7 +76859,6 @@
/turf/simulated/wall/r_wall,
/area/medical/paramedic)
"dgE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Chemistry Maintenance";
req_access_txt = "5; 33"
@@ -86084,14 +76869,15 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dgF" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 9;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgG" = (
@@ -86101,15 +76887,13 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgH" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 4;
@@ -86117,13 +76901,11 @@
pixel_x = 24
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgI" = (
@@ -86147,6 +76929,7 @@
/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -86154,13 +76937,12 @@
/area/medical/genetics_cloning)
"dgK" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/dna_scannernew,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgL" = (
@@ -86171,13 +76953,9 @@
},
/area/medical/genetics_cloning)
"dgM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgN" = (
@@ -86188,6 +76966,7 @@
},
/obj/item/storage/box/bodybags,
/obj/item/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -86201,7 +76980,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/table/glass,
@@ -86209,60 +76987,52 @@
/obj/item/book/manual/medical_cloning,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dgP" = (
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/medbay)
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dgQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"dgR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/medical/medbay)
+/area/maintenance/apmaint)
"dgS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dgT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dgU" = (
@@ -86288,15 +77058,12 @@
},
/area/medical/medbay)
"dgW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dgX" = (
@@ -86306,76 +77073,60 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"dgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"dgZ" = (
+/obj/machinery/camera{
+ c_tag = "Patient Room West";
+ dir = 4;
+ network = list("Medical","SS13")
+ },
+/obj/structure/closet/wardrobe/pjs,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 8;
+ icon_state = "cmo"
},
/area/medical/medbay)
-"dgZ" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dha" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhb" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
"dhc" = (
-/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhe" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
-"dhf" = (
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = -32
},
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
+"dhd" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dhe" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dhf" = (
+/obj/machinery/camera{
+ c_tag = "Patient Room East";
+ dir = 8;
+ network = list("Medical","SS13")
+ },
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
"dhg" = (
/obj/structure/cable{
d1 = 2;
@@ -86383,7 +77134,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dhh" = (
@@ -86393,6 +77143,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -86455,7 +77206,6 @@
},
/area/hallway/secondary/construction)
"dhq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
@@ -86469,11 +77219,8 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dhs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -86487,8 +77234,7 @@
dir = 8
},
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -86509,22 +77255,25 @@
},
/area/maintenance/gambling_den)
"dhx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood{
- dir = 8
+/obj/effect/landmark{
+ name = "blobstart"
},
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/maintenance/apmaint)
"dhy" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/random,
/obj/item/stock_parts/scanning_module,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhz" = (
/obj/structure/girder,
@@ -86539,7 +77288,7 @@
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dhA" = (
/obj/structure/cable{
d1 = 4;
@@ -86547,22 +77296,26 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance{
name = "Experimentor Maintenance";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/toxins/explab)
+/area/maintenance/port)
"dhB" = (
/obj/machinery/constructable_frame/machine_frame,
/obj/item/stack/cable_coil/random,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhC" = (
/obj/structure/cable{
@@ -86576,10 +77329,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -86593,9 +77342,7 @@
/obj/machinery/door_control{
id = "maintrobotics";
name = "Decrepit Control";
- pixel_x = 26;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 26
},
/turf/simulated/floor/plating,
/area/medical/research)
@@ -86607,17 +77354,18 @@
tag = ""
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"dhG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dhH" = (
/obj/structure/cable{
d1 = 1;
@@ -86630,17 +77378,20 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dhI" = (
/obj/structure/cable{
d1 = 4;
@@ -86648,11 +77399,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"dhJ" = (
@@ -86666,53 +77419,54 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"dhL" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/explab)
-"dhM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
+ },
+/area/toxins/explab)
+"dhM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
/area/toxins/explab)
"dhN" = (
@@ -86725,7 +77479,6 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
"dhO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
@@ -86734,41 +77487,43 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"dhQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"dhR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/taperecorder,
/obj/item/stack/sheet/mineral/plasma,
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/explab)
"dhS" = (
@@ -86787,63 +77542,80 @@
name = "Xenobiology Lab";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dhT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/structure/chair/office/light,
/obj/effect/landmark/start{
name = "Scientist"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"dhU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/item/folder/white,
/obj/item/pen,
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"dhV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dhW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhX" = (
/obj/machinery/door/firedoor,
@@ -86851,33 +77623,41 @@
name = "Research Division";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"dhZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"dia" = (
@@ -86885,9 +77665,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
@@ -86895,7 +77672,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/medical/research)
@@ -86903,29 +77679,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
"did" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -86935,7 +77702,9 @@
/obj/item/aicard,
/obj/item/circuitboard/aicore,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"dif" = (
/obj/structure/cable{
@@ -86959,24 +77728,15 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
"dih" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86986,10 +77746,11 @@
"dii" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Robotics Junction";
sortType = 13
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -86999,53 +77760,43 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dik" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
+/area/maintenance/apmaint)
"dil" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dim" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"din" = (
/obj/structure/cable{
@@ -87097,7 +77848,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/northeast,
@@ -87108,97 +77858,66 @@
/obj/item/paper_bin,
/obj/item/pen,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"diu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Brig Security Equipment Lockers";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
-"div" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/recharge_station,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
"diw" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"dix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Paramedic Office";
- req_access_txt = "66";
- req_one_access_txt = "0"
+ req_access_txt = "66"
},
+/turf/simulated/floor/plasteel,
+/area/medical/paramedic)
+"diy" = (
+/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"diy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/paramedic)
"diz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"diA" = (
@@ -87206,8 +77925,7 @@
pixel_x = -27
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower"
+ dir = 4
},
/obj/machinery/door/window/eastleft,
/turf/simulated/floor/plasteel{
@@ -87215,10 +77933,10 @@
},
/area/medical/genetics_cloning)
"diB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"diC" = (
@@ -87227,20 +77945,25 @@
},
/area/medical/genetics_cloning)
"diD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 0;
+ icon_state = "blue"
},
-/area/medical/genetics_cloning)
+/area/maintenance/apmaint)
"diE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -87251,10 +77974,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -87274,10 +77993,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -87290,6 +78005,7 @@
},
/area/medical/genetics_cloning)
"diI" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -87302,14 +78018,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"diJ" = (
@@ -87319,11 +78031,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -87350,36 +78057,39 @@
},
/area/medical/medbay)
"diM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"diN" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
- },
+/obj/structure/bed,
+/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"diO" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/vending/wallmed{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = 28
},
-/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"diP" = (
/obj/structure/cable{
d1 = 1;
@@ -87387,7 +78097,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -87426,7 +78135,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -87473,7 +78181,6 @@
},
/area/maintenance/gambling_den)
"dja" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/wood{
dir = 8
},
@@ -87497,13 +78204,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"djd" = (
@@ -87513,10 +78222,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/girder,
/obj/structure/grille,
/obj/machinery/door/poddoor{
@@ -87528,8 +78233,14 @@
},
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dje" = (
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
@@ -87541,12 +78252,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djg" = (
/obj/structure/cable{
@@ -87555,26 +78271,23 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/medical/research)
"djh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 9
},
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dji" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
/obj/effect/decal/warning_stripes/east,
@@ -87588,16 +78301,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"djk" = (
/obj/structure/cable{
d1 = 1;
@@ -87610,22 +78324,21 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"djl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"djm" = (
/obj/structure/cable{
d1 = 4;
@@ -87633,163 +78346,147 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"djn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djp" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
"djq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
"djr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"djs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/white,
/obj/item/clothing/gloves/color/white,
/obj/item/clothing/glasses/science,
/obj/item/clothing/glasses/science,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/book/manual/experimentor,
/obj/item/healthanalyzer,
/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
/area/toxins/explab)
"dju" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/computer/rdconsole/experiment,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea,
/turf/simulated/wall,
/area/toxins/explab)
"djw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/machinery/light,
/obj/item/paper_bin,
/obj/item/pen,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"djA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/turf/simulated/wall/r_wall,
-/area/medical/research)
+/area/maintenance/apmaint)
"djB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"djC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"djC" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/research)
"djD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/medical/research)
"djE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/light_switch{
pixel_x = -26;
@@ -87811,13 +78508,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
"djG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87830,15 +78527,15 @@
icon_state = "1-4";
tag = "90Curve"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
"djH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87851,53 +78548,56 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"djI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
"djJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
"djK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87909,102 +78609,60 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
req_access = null;
req_access_txt = "30"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"djL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"djM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- level = 1
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
-"djN" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/medical/research)
-"djO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"djP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/assembly/chargebay)
"djQ" = (
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
@@ -88013,7 +78671,7 @@
dir = 8
},
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
"djS" = (
/obj/effect/decal/warning_stripes/east,
@@ -88022,27 +78680,15 @@
"djT" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
-"djU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
+/area/assembly/chargebay)
"djV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
@@ -88050,19 +78696,28 @@
req_access_txt = "66"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"djW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"djX" = (
@@ -88075,19 +78730,24 @@
},
/area/medical/genetics_cloning)
"djY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/genetics_cloning)
"djZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/area/medical/genetics_cloning)
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dka" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -88097,20 +78757,22 @@
},
/area/medical/genetics_cloning)
"dkb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics_cloning)
"dkc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -88119,10 +78781,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dke" = (
@@ -88135,50 +78798,56 @@
},
/area/medical/medbay)
"dkf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dkg" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
"dkh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/medical/medbay)
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"dki" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Medbay Cloning";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/genetics_cloning)
"dkj" = (
@@ -88189,8 +78858,7 @@
/area/medical/medbay)
"dkk" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel{
@@ -88198,15 +78866,10 @@
},
/area/medical/medbay)
"dkl" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dkm" = (
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
@@ -88231,9 +78894,9 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dko" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
"dkp" = (
/obj/structure/table,
/obj/item/folder/white,
@@ -88242,12 +78905,14 @@
/turf/simulated/floor/plating,
/area/medical/research)
"dkq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
-/area/maintenance/gambling_den)
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
"dkr" = (
/obj/structure/chair/wood{
dir = 4
@@ -88272,24 +78937,18 @@
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dku" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/maintenance/gambling_den)
+/turf/simulated/wall/rust,
+/area/maintenance/apmaint)
"dkv" = (
/obj/structure/table/wood,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -88299,30 +78958,33 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/item/stock_parts/matter_bin,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dkx" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dky" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dkz" = (
/obj/effect/decal/cleanable/dirt,
@@ -88341,36 +79003,33 @@
"dkB" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dkC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/toxins/explab)
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/suit/fire/firefighter,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dkD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door_control{
id = "experimentor";
name = "Experimentor Control";
- pixel_x = -26;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -26
},
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ name = "Experimentor Blast Door"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dkE" = (
/obj/structure/sign/securearea,
@@ -88380,27 +79039,12 @@
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
/area/toxins/explab)
-"dkG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
- id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/toxins/explab)
"dkH" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "pdoor0";
+/obj/machinery/door/poddoor/preopen{
id_tag = "experimentor";
- name = "Experimentor Blast Door";
- opacity = 0
+ name = "Experimentor Blast Door"
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/toxins/explab)
"dkI" = (
@@ -88415,17 +79059,15 @@
/turf/simulated/floor/plating,
/area/toxins/mixing)
"dkL" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -88433,19 +79075,15 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dkM" = (
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/toxins/mixing)
-"dkN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/toxins/misc_lab)
"dkO" = (
/obj/structure/cable{
d1 = 1;
@@ -88453,37 +79091,43 @@
icon_state = "1-2";
tag = ""
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dkP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dkQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/crew_quarters/hor)
"dkR" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dkS" = (
@@ -88493,21 +79137,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/hor)
"dkT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dkU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -88519,26 +79174,25 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
req_access = null;
req_access_txt = "30"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"dkV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -88552,33 +79206,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
"dkX" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dkY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 8;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dkZ" = (
@@ -88598,52 +79256,47 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dla" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dlb" = (
/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
name = "Roboticist"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dlc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dld" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dle" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -88652,8 +79305,7 @@
name = "Paramedic"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/paramedic)
"dlg" = (
@@ -88662,7 +79314,6 @@
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -88670,10 +79321,6 @@
},
/area/medical/genetics_cloning)
"dlh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Medbay West Hallway";
@@ -88682,8 +79329,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dli" = (
@@ -88696,8 +79342,7 @@
"dlj" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dlk" = (
@@ -88710,65 +79355,35 @@
},
/area/medical/medbay)
"dll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
"dlm" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Medbay Psych Office Corridor East";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics_cloning)
-"dln" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/medbay)
-"dlo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/medbay)
"dlp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/door_control{
- id = "medbayfoyer";
- name = "Medbay Front Doors";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
"dlq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -88806,92 +79421,67 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"dlu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dlv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
-/area/medical/surgery)
+/area/medical/medbay)
"dlw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/surgery)
-"dlx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
- },
-/area/medical/surgery)
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
"dly" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = null;
+ name = "Observation Room"
},
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dlz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/wall,
/area/medical/surgery)
"dlA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/latex/nitrile,
-/obj/item/clothing/mask/surgical,
-/obj/item/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
- name = "Surgery Cleaner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "redbluefull"
},
-/area/medical/surgery)
+/area/medical/medbay3)
"dlB" = (
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dlC" = (
/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
+ dir = 4
},
/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
@@ -88900,34 +79490,25 @@
},
/area/crew_quarters/fitness)
"dlD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/scalpel,
-/obj/item/cautery,
-/obj/item/bonegel,
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ initialize_directions = 11
},
-/area/medical/surgery)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
"dlE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/mirror{
- pixel_x = 32
- },
-/obj/structure/table/reinforced,
-/obj/machinery/computer/med_data/laptop,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dlF" = (
/obj/structure/cable{
d1 = 1;
@@ -88935,11 +79516,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -88969,11 +79545,9 @@
},
/area/maintenance/gambling_den)
"dlJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/maintenance/gambling_den)
+/obj/effect/decal/cleanable/fungus,
+/turf/simulated/wall,
+/area/maintenance/apmaint)
"dlK" = (
/obj/structure/table/wood,
/turf/simulated/floor/plating,
@@ -88981,35 +79555,29 @@
"dlL" = (
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"dlM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dlN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/toxins/explab)
+/area/medical/research)
+"dlM" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/port)
"dlO" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dlP" = (
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/explab)
-"dlQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dlR" = (
/obj/machinery/door/firedoor,
@@ -89017,7 +79585,11 @@
name = "Toxin Mixing";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dlS" = (
/turf/simulated/floor/plasteel{
@@ -89026,6 +79598,8 @@
},
/area/toxins/mixing)
"dlT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
@@ -89043,25 +79617,27 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dlW" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "white"
},
/area/medical/chemistry)
"dlX" = (
@@ -89072,17 +79648,19 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dlY" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/structure/closet/bombcloset,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dlZ" = (
/obj/structure/closet/bombcloset,
@@ -89091,7 +79669,10 @@
pixel_y = 26
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dma" = (
/obj/structure/cable{
@@ -89101,9 +79682,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dmb" = (
@@ -89118,7 +79697,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "rdprivacy";
@@ -89126,59 +79704,40 @@
pixel_x = -6;
pixel_y = -2
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/hor)
"dmc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/folder/white,
/obj/item/stamp/rd,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dmd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
-"dme" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
"dmf" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dmg" = (
/turf/simulated/floor/greengrid,
/area/assembly/chargebay)
"dmh" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -89196,77 +79755,64 @@
},
/area/medical/medbay)
"dmk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 4;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dml" = (
-/turf/simulated/wall/r_wall,
-/area/medical/genetics)
-"dmm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/genetics)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/office)
"dmn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/aft)
-"dmo" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/medical/genetics)
"dmp" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dmq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dmr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dms" = (
@@ -89281,81 +79827,70 @@
/turf/simulated/floor/plating,
/area/medical/cmo)
"dmv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dmw" = (
-/obj/structure/bed/roller,
-/obj/machinery/iv_drip,
+/obj/machinery/camera{
+ c_tag = "Medbay Observation Room";
+ dir = 4;
+ network = list("Medical","SS13")
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
-"dmx" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmy" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dmz" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmC" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/machinery/vending/medical,
+/obj/machinery/light{
+ dir = 1;
+ on = 1
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 5;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dmD" = (
/obj/structure/cable{
d1 = 1;
@@ -89363,54 +79898,39 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dmE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/construction)
"dmF" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dmG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -89424,8 +79944,7 @@
/area/hallway/secondary/construction)
"dmL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
@@ -89475,8 +79994,7 @@
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 1;
@@ -89485,7 +80003,6 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dmQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -89497,7 +80014,9 @@
pixel_x = 26
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dmS" = (
/obj/machinery/light/small{
@@ -89521,7 +80040,9 @@
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dmW" = (
/obj/structure/rack,
@@ -89529,7 +80050,9 @@
/obj/item/storage/belt/utility,
/obj/item/reagent_containers/glass/beaker/large,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dmX" = (
/obj/machinery/light/small{
@@ -89537,23 +80060,26 @@
},
/obj/machinery/mecha_part_fabricator,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dmY" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal,
/obj/item/stack/sheet/glass,
/obj/item/flash,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dmZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dna" = (
/obj/structure/cable{
d1 = 1;
@@ -89561,117 +80087,89 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"dnb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/toxins/explab)
+/area/maintenance/port)
"dnc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dnd" = (
/mob/living/simple_animal/pet/dog/pug,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dne" = (
/obj/effect/landmark{
name = "revenantspawn"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dnf" = (
/obj/machinery/r_n_d/experimentor,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dng" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dnh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dni" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dnj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/mixing)
"dnk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/crew_quarters/hor)
"dnl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/sign/securearea{
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dnm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dnn" = (
/obj/machinery/ai_status_display{
@@ -89679,16 +80177,9 @@
},
/obj/machinery/computer/card/minor/rd,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/hor)
-"dno" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ dir = 4;
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dnp" = (
@@ -89703,11 +80194,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/computer/aifixer,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -89720,7 +80208,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/light{
dir = 1;
pixel_y = 3
@@ -89729,18 +80216,23 @@
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dnr" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/scientist,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dns" = (
/obj/effect/spawner/window/reinforced,
@@ -89748,63 +80240,12 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
-"dnt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"dnu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research)
-"dnv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"dnw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
"dnx" = (
/obj/structure/cable{
d1 = 1;
@@ -89817,14 +80258,13 @@
/area/assembly/chargebay)
"dny" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dnz" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dnA" = (
/obj/machinery/computer/mech_bay_power_console,
@@ -89832,42 +80272,33 @@
/area/assembly/chargebay)
"dnB" = (
/obj/machinery/door/poddoor/shutters{
- dir = 4;
id_tag = "roboticsshutters";
name = "Mech Bay Shutters"
},
/obj/machinery/door_control{
- dir = 2;
id = "roboticsshutters";
name = "Mech Bay Door Control";
- pixel_x = 0;
pixel_y = 24;
req_access_txt = "29"
},
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dnC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dnD" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dnE" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -89875,14 +80306,20 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"dnG" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plasteel{
@@ -89908,8 +80345,7 @@
"dnJ" = (
/obj/effect/decal/warning_stripes/northwestsouth,
/obj/vehicle/ambulance{
- dir = 8;
- icon_state = "docwagon2"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Paramedic's Office";
@@ -89917,20 +80353,17 @@
network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "white"
},
/area/medical/paramedic)
"dnK" = (
/obj/machinery/status_display,
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/medical/genetics)
"dnL" = (
/obj/structure/table/reinforced,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/item/storage/box/disks{
@@ -89943,20 +80376,9 @@
},
/area/medical/genetics)
"dnM" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/medical/glass{
id_tag = "GeneticsDoor";
name = "Genetics";
@@ -89973,42 +80395,23 @@
},
/obj/machinery/computer/scan_consolenew,
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/genetics)
"dnO" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/genetics)
-"dnP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 12
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dnR" = (
@@ -90022,15 +80425,7 @@
dir = 8
},
/mob/living/carbon/human/monkey,
-/turf/simulated/floor/plasteel,
-/area/medical/genetics)
-"dnS" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/grass,
/area/medical/genetics)
"dnT" = (
/obj/effect/spawner/window/reinforced,
@@ -90045,7 +80440,9 @@
/obj/machinery/firealarm{
pixel_y = 24
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dnV" = (
/obj/structure/table/glass,
@@ -90083,7 +80480,9 @@
pixel_y = 28
},
/obj/item/clothing/glasses/hud/health,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dnZ" = (
/obj/structure/cable{
@@ -90098,13 +80497,16 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"doa" = (
@@ -90113,78 +80515,25 @@
pixel_y = 24
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/genetics)
-"dob" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
-"doc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/surgery)
-"dod" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery)
"doe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dof" = (
/obj/structure/cable{
d1 = 4;
@@ -90193,144 +80542,104 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+ name = "Observation Room"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "dark"
},
-/area/medical/surgery)
-"dog" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access_txt = "45"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/computer/operating,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doi" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/obj/structure/cable{
d1 = 2;
d2 = 8;
- icon_state = "2-8";
- tag = ""
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/optable,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"doj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dok" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/firealarm{
dir = 4;
- level = 1
+ pixel_x = 24;
+ pixel_y = -1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dol" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dom" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
"don" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
-/area/maintenance/starboard)
+/area/medical/medbay)
"doo" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -90347,7 +80656,6 @@
},
/area/hallway/secondary/construction)
"doq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -90355,11 +80663,8 @@
},
/area/maintenance/starboard)
"dor" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -90390,22 +80695,18 @@
/obj/structure/computerframe,
/obj/effect/decal/warning_stripes/southwest,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"dow" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "wood"
+ icon_state = "white"
},
-/area/maintenance/gambling_den)
+/area/medical/research)
"dox" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass,
/obj/item/stock_parts/micro_laser,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"doy" = (
/obj/machinery/light_switch{
@@ -90413,13 +80714,23 @@
pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"doz" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/item/pen,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"doA" = (
/obj/structure/cable{
@@ -90428,7 +80739,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark{
name = "blobstart"
},
@@ -90436,33 +80746,30 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"doB" = (
/obj/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
+/turf/simulated/floor/engine,
/area/toxins/explab)
"doC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "white"
},
/area/medical/chemistry)
"doD" = (
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
+/turf/simulated/floor/engine,
/area/toxins/explab)
"doE" = (
/obj/structure/cable{
@@ -90484,28 +80791,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/genetics_cloning)
-"doG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/mixing)
-"doH" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/mixing)
"doI" = (
/obj/item/radio/intercom{
dir = 4;
@@ -90514,7 +80802,14 @@
pixel_y = 22
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/scientist,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"doJ" = (
/obj/structure/table/reinforced,
@@ -90527,9 +80822,12 @@
pixel_y = -2
},
/obj/item/clipboard,
-/obj/item/toy/figure/rd,
+/obj/item/toy/figure/crew/rd,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"doK" = (
/obj/structure/cable{
@@ -90540,7 +80838,9 @@
},
/obj/machinery/computer/mecha,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"doL" = (
/obj/structure/cable{
@@ -90567,15 +80867,13 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"doN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -90584,20 +80882,11 @@
dir = 8
},
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"doP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ dir = 4;
+ icon_state = "whitepurplecorner"
},
-/area/medical/research)
+/area/toxins/mixing)
"doQ" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -90611,18 +80900,21 @@
/area/toxins/xenobiology)
"doR" = (
/obj/machinery/door/poddoor/shutters{
- dir = 4;
id_tag = "roboticsshutters";
name = "Mech Bay Shutters"
},
/obj/effect/decal/warning_stripes/east,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"doS" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"doT" = (
@@ -90630,16 +80922,16 @@
pixel_x = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"doU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/recharge_station,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"doV" = (
/obj/structure/cable{
@@ -90648,10 +80940,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/effect/landmark/start{
name = "Cyborg"
},
@@ -90659,41 +80947,29 @@
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"doW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/effect/landmark/start{
name = "Cyborg"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"doX" = (
/obj/machinery/mech_bay_recharge_port{
dir = 8
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/greengrid,
/area/assembly/chargebay)
"doY" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"doZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -90702,16 +80978,10 @@
"dpa" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
name = "Genetics Junction";
sortType = 13
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -90721,24 +80991,27 @@
pixel_y = -22
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dpc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dpd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -90746,20 +81019,18 @@
},
/area/medical/genetics)
"dpe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -90767,13 +81038,11 @@
"dpf" = (
/obj/effect/decal/warning_stripes/northeastsouth,
/obj/structure/bed/amb_trolley{
- dir = 4;
- icon_state = "ambulance"
+ dir = 4
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "white"
},
/area/medical/paramedic)
"dpg" = (
@@ -90783,21 +81052,11 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 6;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
-"dph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/medical/genetics)
"dpi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/machinery/camera{
c_tag = "Medbay Genetics";
@@ -90810,9 +81069,6 @@
},
/area/medical/genetics)
"dpj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/office/light{
dir = 8
},
@@ -90821,54 +81077,32 @@
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (NORTHWEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dpk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (NORTH)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dpl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"dpm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics)
"dpn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dpo" = (
@@ -90878,34 +81112,10 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/grass,
/area/medical/genetics)
-"dpp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/medical/genetics)
-"dpq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/medbay)
"dpr" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -90918,10 +81128,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -90934,34 +81147,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dpt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/surgery)
+/turf/simulated/wall,
+/area/medical/surgeryobs)
"dpu" = (
/obj/structure/cable{
d1 = 4;
@@ -90970,10 +81168,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dpv" = (
/obj/structure/cable{
@@ -90989,7 +81191,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -91003,6 +81208,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -91015,9 +81227,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -91030,11 +81239,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dpz" = (
/obj/structure/cable{
@@ -91059,10 +81266,14 @@
req_access_txt = "40"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dpA" = (
/obj/structure/cable{
@@ -91071,15 +81282,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dpB" = (
@@ -91095,112 +81300,74 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"dpC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/medbay)
-"dpD" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
-"dpE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
- },
-/area/medical/surgery)
"dpF" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
- },
-/area/medical/surgery)
-"dpG" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
-"dpH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
-"dpI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- tag = ""
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgeryobs)
+"dpG" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
+"dpH" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgeryobs)
+"dpI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgeryobs)
"dpJ" = (
+/obj/structure/chair,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dpK" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/radio/intercom{
- dir = 4;
- name = "station intercom (General)";
- pixel_x = 28
+/obj/structure/chair,
+/obj/machinery/newscaster{
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dpL" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -91233,13 +81400,6 @@
icon_state = "yellowcorner"
},
/area/hallway/secondary/construction)
-"dpO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"dpP" = (
/obj/machinery/light/small,
/obj/machinery/camera{
@@ -91265,7 +81425,6 @@
},
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28;
pixel_y = -28
},
@@ -91273,7 +81432,10 @@
department = "Research Director's Office"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dpR" = (
/obj/structure/chair/wood{
@@ -91291,7 +81453,9 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dpU" = (
/turf/simulated/floor/greengrid,
@@ -91303,31 +81467,31 @@
"dpW" = (
/obj/machinery/recharge_station,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dpX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dpY" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/portable_atmospherics/scrubber,
/obj/structure/sign/nosmoking_2{
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "escape"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
"dpZ" = (
@@ -91343,49 +81507,28 @@
/area/toxins/xenobiology)
"dqa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/mixing)
-"dqb" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/mixing)
"dqc" = (
/obj/machinery/light,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/computer/robotics,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
-"dqd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/toxins/misc_lab)
-"dqe" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/toxins/misc_lab)
"dqf" = (
/turf/simulated/wall,
/area/crew_quarters/hor)
"dqg" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -91395,7 +81538,10 @@
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dqh" = (
/obj/effect/spawner/window/reinforced,
@@ -91403,14 +81549,10 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
@@ -91426,8 +81568,7 @@
"dqj" = (
/obj/structure/table,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -28
@@ -91435,7 +81576,9 @@
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
"dqk" = (
/obj/structure/cable{
@@ -91451,19 +81594,16 @@
/area/assembly/robotics)
"dqm" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "robodesk";
- name = "Robotics Desk Shutters";
- opacity = 0
+ name = "Robotics Desk Shutters"
},
/turf/simulated/floor/plating,
/area/assembly/robotics)
"dqn" = (
/obj/structure/sign/science,
-/turf/simulated/wall,
+/turf/simulated/wall/r_wall,
/area/assembly/robotics)
"dqo" = (
/obj/structure/cable{
@@ -91479,10 +81619,6 @@
/turf/simulated/wall/r_wall,
/area/assembly/robotics)
"dqq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Research West Hallway";
network = list("Research","SS13")
@@ -91496,12 +81632,10 @@
/obj/structure/table/glass,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Medbay Genetics Office";
@@ -91509,10 +81643,12 @@
network = list("Medical","SS13")
},
/obj/item/storage/box/disks,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dqs" = (
@@ -91522,29 +81658,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics)
"dqt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dqu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Genetics Desk Maintenance";
req_access_txt = "9"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dqv" = (
@@ -91565,107 +81696,59 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/command/glass{
name = "Chief Medical Officer";
req_access_txt = "40"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dqw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/genetics)
"dqx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
- },
-/area/medical/genetics)
-"dqy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dqz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics)
"dqA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/machinery/hologram/holopad,
/obj/effect/landmark/start{
name = "Geneticist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -91676,12 +81759,11 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dqC" = (
@@ -91692,64 +81774,26 @@
name = "Monkey Pen";
req_access_txt = "9"
},
-/turf/simulated/floor/plasteel,
-/area/medical/genetics)
-"dqD" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/grass,
/area/medical/genetics)
"dqE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/medical/medbay)
"dqF" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dqG" = (
@@ -91759,7 +81803,9 @@
/area/medical/cmo)
"dqH" = (
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dqI" = (
/obj/structure/cable{
@@ -91768,91 +81814,43 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/cmo)
-"dqJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/cmo)
-"dqK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/cmo)
-"dqL" = (
-/obj/structure/table,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
- },
-/area/medical/surgery)
"dqM" = (
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
- },
-/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
- },
-/area/medical/surgery)
-"dqN" = (
-/obj/machinery/ai_status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "open";
+ id_tag = "surgeryobs1";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgery1)
+"dqN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/holosign/surgery{
+ id = "surgery1"
},
-/area/medical/surgery)
-"dqO" = (
-/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery)
-"dqP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/structure/closet/secure_closet/medical3,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
+/area/medical/surgery1)
"dqQ" = (
/obj/machinery/camera{
c_tag = "Singularity SouthEast";
@@ -91862,28 +81860,18 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
-"dqR" = (
-/obj/machinery/ai_status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
"dqS" = (
-/obj/machinery/vending/wallmed{
- layer = 3.3;
- name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "surgeryobs2";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/obj/machinery/bodyscanner,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/surgery)
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
"dqT" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -91895,7 +81883,6 @@
},
/area/hallway/secondary/construction)
"dqU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -91909,7 +81896,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -91920,28 +81906,21 @@
/area/hallway/secondary/construction)
"dqW" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
+ d1 = 4;
d2 = 8;
- icon_state = "2-8";
+ icon_state = "4-8";
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "white"
},
-/area/maintenance/starboard)
+/area/medical/medbay)
"dqX" = (
/obj/structure/table,
/obj/item/flashlight/lamp,
@@ -91998,8 +81977,7 @@
"drf" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -92008,15 +81986,17 @@
pixel_x = 26
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"drh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/mech_bay_recharge_floor,
/area/medical/research)
"dri" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -92027,16 +82007,6 @@
icon_state = "neutralfull"
},
/area/medical/research)
-"drj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/research)
"drk" = (
/obj/structure/chair/office/light,
/obj/effect/decal/warning_stripes/south,
@@ -92058,28 +82028,25 @@
pixel_y = -6
},
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/toxins/mixing)
"drn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dro" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"drp" = (
/obj/structure/cable{
d1 = 2;
@@ -92087,61 +82054,32 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"drq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"drr" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "arrival"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
"drs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/structure/grille{
density = 0;
icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"drt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/toxins/mixing)
-"dru" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurplefull"
},
/area/toxins/mixing)
"drv" = (
@@ -92161,14 +82099,17 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Quarters";
req_access = null;
req_access_txt = "30"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/crew_quarters/hor)
"drw" = (
/obj/machinery/atmospherics/unary/portables_connector{
@@ -92178,20 +82119,26 @@
pixel_x = 32
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"drx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dry" = (
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"drz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
+ dir = 1;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -92202,14 +82149,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"drB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -92217,6 +82170,9 @@
/area/crew_quarters/hor)
"drC" = (
/obj/structure/dresser,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -92238,8 +82194,7 @@
/area/assembly/chargebay)
"drF" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/firealarm{
@@ -92248,34 +82203,18 @@
pixel_y = -4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/chargebay)
-"drG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Genetics Office";
- req_access_txt = "9"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/genetics)
"drH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/medical/genetics)
"drI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = -32
@@ -92288,13 +82227,9 @@
/area/medical/research)
"drJ" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "robodesk";
- name = "Robotics Desk Shutters";
- opacity = 0
+ name = "Robotics Desk Shutters"
},
/turf/simulated/floor/plating,
/area/assembly/robotics)
@@ -92303,12 +82238,12 @@
/obj/item/paper_bin,
/obj/item/pen,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/hallway/primary/aft)
"drL" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/science{
pixel_x = -32;
pixel_y = 32
@@ -92320,13 +82255,11 @@
/area/hallway/primary/aft)
"drM" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/science{
pixel_x = 32;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -92337,17 +82270,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
"drO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/chair/office/light{
dir = 8
},
@@ -92363,20 +82294,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
-"drQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -92384,19 +82301,15 @@
"drR" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"drS" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "geneticsdesk";
- name = "Genetics Desk Shutters";
- opacity = 0
+ name = "Genetics Desk Shutters"
},
/turf/simulated/floor/plating,
/area/medical/genetics)
@@ -92418,18 +82331,12 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"drV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"drW" = (
@@ -92447,8 +82354,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"drZ" = (
@@ -92460,55 +82366,40 @@
dir = 8
},
/mob/living/carbon/human/monkey,
-/turf/simulated/floor/plasteel,
-/area/medical/genetics)
-"dsa" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/grass,
/area/medical/genetics)
"dsb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dsc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Medbay South Central Hall";
dir = 8;
network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dsd" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/bed/dogbed{
name = "kitty basket"
},
/mob/living/simple_animal/pet/cat/Runtime,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dse" = (
/obj/structure/cable{
@@ -92518,7 +82409,6 @@
tag = ""
},
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -92526,6 +82416,8 @@
/area/medical/cmo)
"dsf" = (
/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -92538,7 +82430,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -92557,27 +82448,27 @@
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Chief Medical Officer's Office";
dir = 8;
network = list("Medical","SS13")
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dsi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dsj" = (
@@ -92587,7 +82478,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 8
},
@@ -92609,8 +82499,7 @@
"dsm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -92621,48 +82510,34 @@
/turf/simulated/floor/plating,
/area/medical/research)
"dso" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dsp" = (
/obj/machinery/mech_bay_recharge_port{
dir = 1
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/greengrid,
/area/medical/research)
"dsq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dsr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dss" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dst" = (
/obj/structure/cable{
d1 = 1;
@@ -92670,28 +82545,28 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dsu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dsv" = (
/obj/structure/closet/secure_closet/RD,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dsw" = (
/obj/structure/cable{
@@ -92701,19 +82576,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/mixing)
-"dsx" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/mixing)
"dsy" = (
/obj/structure/cable{
d1 = 4;
@@ -92721,14 +82591,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dsz" = (
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dsA" = (
/obj/machinery/atmospherics/unary/portables_connector{
@@ -92736,11 +82607,14 @@
},
/obj/machinery/portable_atmospherics/canister,
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dsB" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dsC" = (
/obj/structure/cable{
@@ -92751,17 +82625,8 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
-"dsD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/hor)
"dsE" = (
/obj/structure/cable{
d1 = 1;
@@ -92769,40 +82634,30 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/landmark/start{
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/crew_quarters/hor)
"dsF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/hor)
"dsG" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/bed,
/obj/item/bedsheet/rd,
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dsH" = (
@@ -92817,15 +82672,15 @@
name = "Robotics Lab";
req_access_txt = "29"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dsI" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -92852,7 +82707,9 @@
pixel_y = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dsK" = (
/obj/structure/table/reinforced,
@@ -92862,12 +82719,20 @@
/obj/item/assembly/prox_sensor,
/obj/item/assembly/prox_sensor,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dsL" = (
/obj/machinery/mecha_part_fabricator,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dsM" = (
/obj/structure/rack,
@@ -92881,31 +82746,20 @@
/obj/item/circuitboard/mecha/ripley/main,
/obj/item/circuitboard/mecha/ripley/peripherals,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dsN" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "geneticsdesk";
- name = "Genetics Desk Shutters";
- opacity = 0
+ name = "Genetics Desk Shutters"
},
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/genetics)
"dsO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/filingcabinet/chestdrawer,
/obj/structure/noticeboard{
pixel_y = -32
@@ -92928,13 +82782,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
@@ -92947,19 +82794,17 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"dsR" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/genetics)
"dsS" = (
/obj/machinery/ai_status_display,
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/medical/genetics)
"dsT" = (
/obj/structure/table/reinforced,
@@ -92967,9 +82812,7 @@
department = "Medbay";
departmentType = 1;
name = "Genetics Requests Console";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
+ pixel_y = -30
},
/obj/item/storage/box/bodybags,
/turf/simulated/floor/plasteel{
@@ -92977,19 +82820,9 @@
},
/area/medical/genetics)
"dsU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Genetics Office";
@@ -93001,21 +82834,17 @@
/obj/machinery/light,
/obj/machinery/computer/scan_consolenew,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/genetics)
"dsW" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whiteblue";
- tag = "icon-whiteblue (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dsX" = (
@@ -93038,28 +82867,22 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteblue";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteblue"
},
/area/medical/genetics)
"dsZ" = (
/obj/machinery/dna_scannernew,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/genetics)
"dta" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
/area/medical/genetics)
"dtb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/electricshock{
pixel_x = -32;
pixel_y = -32
@@ -93070,46 +82893,36 @@
},
/area/medical/medbay)
"dtc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dtd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dte" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ pixel_y = -24
},
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -93132,11 +82945,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -93155,12 +82963,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/glass,
/obj/item/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -93178,11 +82984,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/glass,
/obj/item/folder/white,
/obj/item/folder/blue{
@@ -93203,7 +83004,9 @@
},
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dtk" = (
/obj/effect/spawner/window/reinforced,
@@ -93214,131 +83017,123 @@
/turf/simulated/floor/plating,
/area/medical/cmo)
"dtl" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
-/area/medical/medbay)
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dtm" = (
-/obj/machinery/iv_drip,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/area/medical/medbay)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dtn" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/medical/medbay)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
"dto" = (
/obj/structure/sign/science{
icon_state = "xenobio2"
},
/turf/simulated/wall/r_wall,
/area/medical/research)
-"dtp" = (
-/obj/structure/table,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+"dtq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"dtr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
-"dtq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/area/medical/surgery2)
+"dts" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"dtu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dtr" = (
+"dtv" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"dts" = (
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"dtt" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtx" = (
/obj/structure/cable{
@@ -93347,13 +83142,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dty" = (
/obj/structure/cable{
@@ -93362,55 +83151,37 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dtz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dtA" = (
+"dtz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtB" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction)
"dtC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -93418,8 +83189,24 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"dtD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/door/airlock/engineering{
name = "Aft Starboard Solar Access";
@@ -93429,21 +83216,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
-"dtD" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
- },
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dtE" = (
/obj/structure/cable{
d1 = 2;
@@ -93520,15 +83293,15 @@
/obj/item/clothing/mask/gas,
/obj/item/radio/intercom{
dir = 0;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plating,
/area/medical/research)
"dtN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dtO" = (
/obj/structure/rack,
@@ -93537,59 +83310,45 @@
/turf/simulated/floor/plating,
/area/medical/research)
"dtP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dtQ" = (
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dtR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (WEST)"
+ icon_state = "white"
},
/area/toxins/mixing)
"dtS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Research Hallway";
network = list("Research","SS13")
},
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/plasteel{
- dir = 1;
+ dir = 4;
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"dtT" = (
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
- },
-/area/toxins/mixing)
"dtU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/structure/grille{
density = 0;
icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dtV" = (
/obj/structure/cable{
d1 = 1;
@@ -93597,29 +83356,36 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/toxins/mixing)
"dtW" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/structure/closet/secure_closet/scientist,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
/area/toxins/mixing)
"dtX" = (
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dtY" = (
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 8;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93630,12 +83396,11 @@
icon_state = "1-4"
},
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dua" = (
@@ -93646,7 +83411,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -93657,35 +83421,19 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
"duc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"dud" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
"due" = (
/obj/structure/cable{
d1 = 1;
@@ -93694,12 +83442,14 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"duf" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
-/obj/item/toy/figure/roboticist,
+/obj/item/toy/figure/crew/roboticist,
/obj/machinery/door_control{
id = "robodesk";
name = "Robotics Desk Shutters";
@@ -93710,19 +83460,18 @@
pixel_x = 24;
pixel_y = 34
},
-/turf/simulated/floor/plasteel,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dug" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/item/robot_parts/robot_suit,
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"duh" = (
/obj/structure/table/reinforced,
@@ -93732,30 +83481,25 @@
req_access_txt = "9"
},
/obj/machinery/door/window/westleft,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
- icon_state = "shutter0";
id_tag = "geneticsdesk";
- name = "Genetics Desk Shutters";
- opacity = 0
+ name = "Genetics Desk Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/medical/genetics)
"dui" = (
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"duj" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/firealarm{
dir = 8;
@@ -93768,44 +83512,41 @@
/obj/item/wrench,
/obj/item/clothing/glasses/welding,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/clothing/glasses/hud/diagnostic{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/hud/diagnostic{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"duk" = (
/turf/simulated/wall,
/area/medical/morgue)
"dul" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dum" = (
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall,
/area/medical/morgue)
-"dun" = (
-/turf/simulated/wall/r_wall,
-/area/medical/morgue)
-"duo" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall/r_wall,
-/area/medical/morgue)
-"dup" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/medical/morgue)
"duq" = (
/obj/structure/cable{
d1 = 1;
@@ -93818,23 +83559,26 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dur" = (
/obj/structure/table/glass,
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/clipboard,
-/obj/item/toy/figure/cmo,
-/turf/simulated/floor/plasteel,
+/obj/item/toy/figure/crew/cmo,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dus" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -93848,8 +83592,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -93857,13 +83606,15 @@
},
/area/medical/cmo)
"duu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/office/light{
dir = 1
},
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -93874,14 +83625,14 @@
pixel_x = 32
},
/obj/machinery/computer/card/minor/cmo,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"duw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Mini Satellite Access";
dir = 4;
@@ -93889,126 +83640,114 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dux" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"duy" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"duz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/alarm{
dir = 4;
- level = 1
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"duA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 4;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"duB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
-"duC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 0
+ pixel_x = 11
},
-/obj/machinery/vending/wallmed{
- layer = 3.3;
- name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "cmo"
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"duD" = (
+/obj/machinery/optable,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgery2)
+"duE" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"duG" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"duD" = (
+"duH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"duE" = (
+"duJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/closet/crate,
-/obj/item/flashlight,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"duG" = (
+"duK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -94019,59 +83758,17 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"duH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"duI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"duK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"duL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plating,
/area/maintenance/starboard)
"duM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"duN" = (
/obj/structure/cable{
@@ -94082,11 +83779,12 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"duO" = (
/obj/structure/cable{
@@ -94100,21 +83798,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"duP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Engine Room South";
dir = 1;
@@ -94144,7 +83831,9 @@
/obj/item/clipboard,
/obj/item/folder/white,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"duT" = (
/obj/structure/table/wood/poker,
@@ -94162,8 +83851,7 @@
/obj/machinery/light/small,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/medical/research)
@@ -94186,7 +83874,10 @@
},
/obj/item/assembly/prox_sensor,
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"duX" = (
/obj/structure/table,
@@ -94197,7 +83888,7 @@
/obj/machinery/light/small,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"duZ" = (
/obj/structure/cable{
@@ -94206,14 +83897,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Robotics Maintenance";
req_access_txt = "29"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
+/area/maintenance/fpmaint2)
"dva" = (
/obj/structure/cable{
d1 = 1;
@@ -94222,24 +83912,25 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/mixing)
"dvb" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dvc" = (
/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dvd" = (
/obj/structure/sign/fire,
@@ -94247,12 +83938,10 @@
/area/toxins/misc_lab)
"dve" = (
/obj/machinery/atmospherics/pipe/simple/hidden/purple{
- dir = 10;
- icon_state = "intact"
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dvf" = (
@@ -94261,29 +83950,19 @@
"dvg" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
+/obj/machinery/door/poddoor/shutters/preopen{
dir = 2;
- icon_state = "shutter0";
id_tag = "rdprivacy";
- name = "Research Director Office Shutters";
- opacity = 0
+ name = "Research Director Office Shutters"
},
/turf/simulated/floor/plating,
/area/crew_quarters/hor)
"dvh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -94291,32 +83970,18 @@
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"dvi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research)
"dvj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
@@ -94353,42 +84018,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dvo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/assembly/robotics)
-"dvp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/landmark/start{
name = "Roboticist"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"dvp" = (
+/obj/structure/window/reinforced/polarized,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/computer/rdconsole/robotics,
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dvq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/obj/structure/window/reinforced/polarized,
+/obj/effect/decal/warning_stripes/southeast,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dvr" = (
/obj/structure/chair/office/light{
@@ -94419,13 +84070,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
"dvv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light/small{
dir = 1
},
@@ -94458,6 +84108,7 @@
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plating,
/area/medical/morgue)
"dvz" = (
@@ -94478,7 +84129,6 @@
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dvC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
@@ -94492,6 +84142,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/medical/morgue)
"dvE" = (
@@ -94503,21 +84154,19 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 0;
- pixel_y = -32;
- req_access_txt = "0"
+ pixel_y = -32
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/photocopier/faxmachine{
department = "Chief Medical Officer's Office"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dvG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -94530,13 +84179,14 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/cmo)
"dvI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = -26
@@ -94557,41 +84207,54 @@
department = "Chief Medical Officer's Desk";
departmentType = 5;
name = "Chief Medical Officer Requests Console";
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dvK" = (
-/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/medical/medbay)
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
"dvL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -5
+ },
+/obj/machinery/holosign_switch{
+ id = "surgery1";
+ pixel_x = -23;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery1)
+"dvM" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/structure/dresser,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "darkblue"
},
-/area/medical/medbay)
-"dvM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/mirror{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
+/area/medical/surgery1)
"dvN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -94600,55 +84263,32 @@
},
/turf/simulated/floor/plating,
/area/medical/research)
-"dvO" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
-"dvP" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
"dvQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "blobstart"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ dir = 10;
+ icon_state = "darkblue"
},
-/area/maintenance/starboard)
+/area/medical/surgery2)
"dvR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dvS" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/crew_quarters/theatre)
-"dvS" = (
+"dvT" = (
/obj/structure/barricade/wooden,
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dvT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance,
-/obj/structure/barricade/wooden,
-/turf/simulated/floor/plasteel,
-/area/security/detectives_office)
"dvU" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating/airless,
@@ -94659,7 +84299,7 @@
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dvW" = (
/obj/structure/cable{
d1 = 1;
@@ -94667,27 +84307,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dvX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dvY" = (
/obj/structure/table/reinforced,
/obj/machinery/requests_console{
department = "Science";
departmentType = 2;
name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/obj/item/transfer_valve{
pixel_x = -5
@@ -94704,10 +84341,12 @@
pixel_x = 5
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dvZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/assembly/timer{
pixel_x = 5;
@@ -94724,23 +84363,7 @@
/obj/item/assembly/timer,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/mixing)
-"dwa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/toxins/mixing)
"dwb" = (
@@ -94748,8 +84371,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dwc" = (
@@ -94757,7 +84379,9 @@
dir = 8
},
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dwd" = (
/obj/structure/cable{
@@ -94775,27 +84399,19 @@
/area/toxins/misc_lab)
"dwe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
- dir = 4;
- icon_state = "map"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dwf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/chair/office/light{
dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dwg" = (
@@ -94803,7 +84419,9 @@
dir = 8
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dwh" = (
/obj/structure/filingcabinet/chestdrawer,
@@ -94818,41 +84436,27 @@
/turf/simulated/wall/r_wall,
/area/toxins/server)
"dwj" = (
-/obj/structure/table,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
-/obj/item/clipboard,
-/obj/item/wrench,
+/obj/machinery/computer/rdservercontrol,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/toxins/server)
"dwk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/toxins/server)
"dwl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
- on = 1
- },
+/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/toxins/server)
"dwm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/toxins/server)
@@ -94869,33 +84473,32 @@
req_access_txt = "29"
},
/obj/machinery/door/window/eastleft,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- dir = 4;
- icon_state = "shutter0";
+/obj/machinery/door/poddoor/shutters/preopen{
id_tag = "robodesk";
- name = "Robotics Desk Shutters";
- opacity = 0
+ name = "Robotics Desk Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dwp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/vending/wallmed{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/random,
/obj/item/flash,
@@ -94905,7 +84508,11 @@
pixel_y = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/robotanalyzer,
+/obj/item/mmi/robotic_brain,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dwr" = (
/obj/structure/cable{
@@ -94914,28 +84521,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dws" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dwt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -94943,17 +84546,14 @@
/area/hallway/primary/aft)
"dwu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -94978,13 +84578,6 @@
icon_state = "neutralfull"
},
/area/medical/morgue)
-"dwy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/morgue)
"dwz" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -94992,13 +84585,11 @@
},
/area/medical/morgue)
"dwA" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -95015,7 +84606,6 @@
},
/area/medical/morgue)
"dwD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -95028,6 +84618,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/medical/morgue)
"dwF" = (
@@ -95040,12 +84631,11 @@
/turf/simulated/wall,
/area/medical/cmo)
"dwH" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/cmo)
"dwI" = (
@@ -95063,37 +84653,71 @@
name = "CMO's Office";
req_access_txt = "40"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/cmo)
"dwJ" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/cmo)
"dwK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dwL" = (
+/obj/structure/table/glass,
+/obj/item/hemostat{
+ pixel_x = 6
+ },
+/obj/item/retractor{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery East";
+ dir = 1;
+ network = list("Medical","SS13")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"dwN" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dwO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -95102,26 +84726,38 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dwM" = (
+"dwP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dwQ" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
/obj/item/clothing/under/maid,
-/obj/item/clothing/head/kitty,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwN" = (
+"dwR" = (
/obj/machinery/vending/autodrobe,
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwO" = (
+"dwS" = (
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
@@ -95129,12 +84765,11 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dwP" = (
+"dwT" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -95142,31 +84777,28 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dwQ" = (
+"dwU" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dwR" = (
+"dwV" = (
/obj/machinery/door/window{
- base_state = "left";
dir = 8;
- icon_state = "left";
- name = "Abandoned Theater";
- req_access_txt = "0"
+ name = "Abandoned Theater"
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dwS" = (
+"dwW" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwT" = (
+"dwX" = (
/obj/structure/dresser,
/obj/machinery/light/small{
dir = 1
@@ -95176,7 +84808,7 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwU" = (
+"dwY" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/structure/table/wood,
/obj/item/instrument/guitar,
@@ -95185,59 +84817,17 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dwV" = (
+"dwZ" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/security/detectives_office)
-"dwW" = (
+"dxa" = (
/obj/machinery/photocopier,
/obj/item/newspaper,
/obj/item/newspaper,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dwX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/security/detectives_office)
-"dwY" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dwZ" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
-"dxa" = (
-/obj/structure/table/wood,
-/obj/item/crowbar/red,
-/obj/item/book/manual/security_space_law,
-/obj/item/book/manual/detective,
-/obj/item/camera{
- desc = "A one use - polaroid camera. 30 photos left.";
- name = "detectives camera";
- pictures_left = 30;
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
"dxb" = (
/obj/structure/chair/office/dark{
dir = 8
@@ -95247,11 +84837,15 @@
pixel_y = 26
},
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxc" = (
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxd" = (
/obj/structure/table/reinforced,
@@ -95260,19 +84854,24 @@
/obj/item/clothing/mask/gas,
/obj/machinery/camera{
c_tag = "Research Outpost Temporary Storage";
- dir = 2;
network = list("Research Outpost")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disaster_counter/toxins{
pixel_y = 32
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxe" = (
/obj/machinery/atmospherics/unary/portables_connector,
-/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxf" = (
/obj/machinery/atmospherics/unary/portables_connector,
@@ -95281,21 +84880,23 @@
on = 1
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxg" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxh" = (
/turf/simulated/wall/rust,
@@ -95321,11 +84922,10 @@
pixel_y = -2
},
/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
-"dxj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dxk" = (
/obj/structure/cable{
@@ -95344,12 +84944,12 @@
dir = 4;
layer = 4;
name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_x = 0;
- pixel_y = 0
+ network = list("Toxins")
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dxm" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
@@ -95357,14 +84957,13 @@
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dxn" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/alarm{
- pixel_y = 22
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -95373,7 +84972,6 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -95393,14 +84991,12 @@
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dxq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/item/screwdriver,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dxr" = (
@@ -95411,7 +85007,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -95419,7 +85014,10 @@
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
/area/toxins/explab)
"dxs" = (
/obj/structure/cable{
@@ -95429,10 +85027,12 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
-/obj/machinery/computer/rdservercontrol,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -95450,9 +85050,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -95465,11 +85064,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -95481,10 +85078,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/command{
name = "Server Room";
req_access = null;
@@ -95501,11 +85094,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
@@ -95524,66 +85112,62 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
-"dxy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
"dxz" = (
-/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dxA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "cmo"
},
-/area/medical/surgery)
+/area/medical/medbay)
"dxB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
name = "Robotics Lab";
req_access_txt = "29"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dxC" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dxD" = (
/obj/structure/cable{
@@ -95592,39 +85176,31 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dxE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/machinery/camera{
c_tag = "Research Secure Entrance";
dir = 8;
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dxF" = (
/obj/structure/disposalpipe/junction{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -95635,7 +85211,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
id_tag = null;
@@ -95652,21 +85227,10 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
-"dxI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/morgue)
"dxJ" = (
/obj/structure/cable{
d1 = 1;
@@ -95680,27 +85244,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/medical/morgue)
-"dxK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -95714,8 +85262,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -95726,10 +85276,9 @@
/obj/machinery/optable,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dxN" = (
/obj/structure/cable{
d1 = 4;
@@ -95738,6 +85287,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -95751,8 +85303,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -95760,13 +85314,11 @@
/area/medical/morgue)
"dxP" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -95779,8 +85331,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/morgue)
@@ -95792,13 +85346,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/medical/morgue)
"dxS" = (
@@ -95809,11 +85365,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/medical/morgue)
"dxT" = (
@@ -95831,10 +85388,13 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -95861,13 +85421,14 @@
},
/area/hallway/primary/central)
"dxW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/cmo)
"dxX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
@@ -95893,19 +85454,33 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dya" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dyb" = (
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"dyc" = (
/obj/structure/rack,
/obj/effect/landmark/costume/random,
/obj/effect/landmark/costume/random,
@@ -95914,15 +85489,30 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dyb" = (
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dyc" = (
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
"dyd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"dye" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay)
+"dyg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -95931,7 +85521,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dye" = (
+"dyh" = (
/obj/structure/table/wood,
/obj/item/newspaper,
/obj/item/clothing/head/bowlerhat,
@@ -95939,20 +85529,7 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dyf" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dyg" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dyh" = (
+"dyj" = (
/obj/structure/table/wood,
/obj/item/tape,
/turf/simulated/floor/wood{
@@ -95960,37 +85537,43 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dyi" = (
+"dyk" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/machinery/status_display{
+ pixel_x = -31
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dyl" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/machinery/light/small{
dir = 8
},
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dyj" = (
+"dym" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/security/detectives_office)
-"dyk" = (
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dyl" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/suit/browntrenchcoat,
-/obj/item/clothing/suit/browntrenchcoat,
-/obj/item/clothing/head/fedora,
-/obj/item/clothing/head/fedora,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
-"dym" = (
-/obj/effect/spawner/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dyn" = (
/turf/simulated/wall/r_wall,
/area/toxins/test_area)
@@ -96000,16 +85583,16 @@
/area/toxins/test_area)
"dyp" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dyq" = (
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dyr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -96025,8 +85608,9 @@
},
/area/toxins/mixing)
"dyt" = (
-/obj/machinery/atmospherics/trinary/filter{
- dir = 8
+/obj/machinery/atmospherics/trinary/mixer{
+ dir = 8;
+ req_access = null
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -96047,7 +85631,6 @@
},
/area/toxins/mixing)
"dyv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
@@ -96058,7 +85641,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -96067,7 +85649,10 @@
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/toxin,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dyy" = (
/obj/machinery/driver_button{
@@ -96078,13 +85663,13 @@
dir = 8
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dyz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dyA" = (
@@ -96095,8 +85680,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "whitepurplefull"
},
/area/toxins/mixing)
"dyB" = (
@@ -96104,19 +85690,15 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dyC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plasteel,
+/obj/machinery/computer/area_atmos,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dyD" = (
/obj/structure/cable{
@@ -96125,22 +85707,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dyE" = (
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dyF" = (
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dyG" = (
/obj/machinery/portable_atmospherics/canister,
@@ -96148,7 +85730,9 @@
dir = 8
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dyH" = (
/obj/structure/cable{
@@ -96157,9 +85741,11 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dyI" = (
/obj/effect/spawner/window/reinforced,
@@ -96185,9 +85771,7 @@
name = "Server Room";
req_access_txt = "30"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -96198,10 +85782,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
/turf/simulated/floor/plating,
/area/toxins/server)
"dyL" = (
@@ -96211,12 +85791,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"dyM" = (
@@ -96226,7 +85804,9 @@
/obj/item/storage/firstaid,
/obj/item/paicard,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dyN" = (
/obj/structure/cable{
@@ -96235,21 +85815,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dyO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/robot_parts/robot_suit,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
+/obj/effect/decal/warning_stripes/southeastcorner,
+/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dyP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=1";
location = "Robotics"
@@ -96258,15 +85834,10 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"dyQ" = (
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
"dyR" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/assembly/robotics)
"dyS" = (
@@ -96274,13 +85845,14 @@
name = "Roboticist"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/assembly/robotics)
"dyT" = (
-/obj/machinery/computer/rdconsole/robotics,
-/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/window/reinforced/polarized,
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/item/reagent_containers/glass/beaker/sulphuric,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dyU" = (
@@ -96294,16 +85866,6 @@
icon_state = "vault"
},
/area/medical/morgue)
-"dyV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/morgue)
"dyW" = (
/obj/structure/cable{
d1 = 1;
@@ -96311,59 +85873,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/morgue)
-"dyX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/morgue)
-"dyY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
- },
-/area/medical/morgue)
-"dyZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/medical/morgue)
"dza" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/medical/morgue)
"dzb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
@@ -96371,41 +85894,15 @@
icon_state = "vault"
},
/area/medical/morgue)
-"dzc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/medical/morgue)
-"dzd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/medical/morgue)
"dze" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/medical/morgue)
-"dzf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/morgue)
"dzg" = (
/obj/structure/cable{
d1 = 1;
@@ -96414,6 +85911,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -96427,28 +85925,29 @@
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dzi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dzj" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -96456,9 +85955,8 @@
},
/area/medical/cmo)
"dzk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -96469,22 +85967,29 @@
/obj/structure/bed,
/obj/item/bedsheet/cmo,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/cmo)
"dzm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dzo" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/landmark/costume/random,
@@ -96494,7 +85999,16 @@
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dzn" = (
+"dzp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dzq" = (
/obj/machinery/light_switch{
pixel_x = -26
},
@@ -96502,24 +86016,7 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dzo" = (
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/crew_quarters/theatre)
-"dzp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
-"dzq" = (
+"dzr" = (
/obj/structure/chair/wood{
dir = 4
},
@@ -96528,13 +86025,7 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dzr" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/candle_box,
-/obj/item/storage/fancy/candle_box,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dzs" = (
+"dzu" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -96542,65 +86033,51 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plating,
/area/security/detectives_office)
-"dzt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/security/detectives_office)
-"dzu" = (
-/obj/structure/filingcabinet,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dzv" = (
/obj/item/target,
/obj/structure/window/reinforced,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dzw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
/area/toxins/mixing)
"dzx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
/area/toxins/mixing)
"dzy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/research{
name = "Toxin Test Firing Range";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzz" = (
@@ -96615,18 +86092,25 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/item/radio/beacon,
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -96640,15 +86124,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/research{
name = "Toxin Mixing";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzC" = (
@@ -96659,10 +86145,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -96675,27 +86162,35 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light_switch{
pixel_x = -26;
pixel_y = -26
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dzE" = (
/obj/machinery/doppler_array{
- dir = 4
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -32;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dzF" = (
/obj/structure/cable{
@@ -96705,13 +86200,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dzG" = (
@@ -96733,6 +86228,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -96744,13 +86240,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dzI" = (
@@ -96759,35 +86256,33 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dzJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dzK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dzL" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dzM" = (
/obj/structure/cable{
@@ -96796,12 +86291,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dzN" = (
/obj/structure/cable{
@@ -96810,15 +86309,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Toxins Storage";
req_access_txt = "8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
"dzO" = (
@@ -96833,20 +86334,18 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dzP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- name = "server vent";
- on = 1;
- pressure_checks = 0
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -96857,7 +86356,9 @@
},
/area/toxins/server)
"dzQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
/turf/simulated/floor/bluegrid{
icon_state = "dark";
name = "Mainframe Floor";
@@ -96908,22 +86409,21 @@
pixel_y = 6
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/area/crew_quarters/hor)
"dzT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/cable{
- d1 = 2;
d2 = 4;
- icon_state = "2-4";
- tag = ""
+ icon_state = "1-4";
+ tag = "90Curve"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -96933,34 +86433,33 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dzV" = (
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/structure/disposalpipe/trunk{
dir = 1
},
/obj/machinery/disposal,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dzW" = (
/obj/structure/cable{
@@ -96975,7 +86474,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
@@ -96991,8 +86489,7 @@
name = "Robotics Operating Computer"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/assembly/robotics)
"dzZ" = (
@@ -97002,17 +86499,13 @@
/obj/machinery/status_display{
pixel_y = -32
},
+/obj/item/storage/firstaid/machine,
+/obj/item/storage/firstaid/machine,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/assembly/robotics)
"dAa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dAb" = (
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
@@ -97038,11 +86531,13 @@
"dAe" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/machinery/optable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/medical/morgue)
"dAf" = (
@@ -97055,27 +86550,19 @@
},
/area/medical/morgue)
"dAg" = (
-/obj/structure/bed,
-/obj/item/bedsheet/medical,
-/obj/machinery/camera{
- c_tag = "Surgery Prep Room";
- dir = 8;
- network = list("SS13","Medical")
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgeryobs)
"dAh" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -97097,11 +86584,6 @@
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plating,
/area/medical/morgue)
-"dAm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/medical/morgue)
"dAn" = (
/obj/structure/cable{
d1 = 1;
@@ -97110,6 +86592,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dAo" = (
@@ -97120,8 +86603,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -97130,6 +86612,9 @@
opacity = 1;
req_access_txt = "6"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -97137,7 +86622,6 @@
"dAp" = (
/obj/structure/table/glass,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/computer/med_data/laptop,
@@ -97147,23 +86631,14 @@
},
/area/medical/cmo)
"dAq" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
- },
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay Exam Room Two";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ dir = 6;
+ icon_state = "darkblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dAr" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
@@ -97187,19 +86662,62 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"dAu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/effect/landmark/costume/random,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-y"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
"dAv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery East Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dAw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/iv_drip,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"dAx" = (
+/turf/simulated/wall,
+/area/medical/surgery2)
+"dAy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -97214,15 +86732,15 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dAw" = (
+"dAz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -97230,8 +86748,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
@@ -97239,7 +86756,7 @@
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAx" = (
+"dAB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -97247,75 +86764,36 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAy" = (
+"dAC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dAz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/crew_quarters/theatre)
-"dAA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/wood{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/theatre)
-"dAB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
-"dAC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/crew_quarters/theatre)
"dAD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/theatre)
+"dAE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -97323,19 +86801,10 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dAE" = (
-/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/security/detectives_office)
"dAF" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
},
/area/security/detectives_office)
"dAG" = (
@@ -97345,13 +86814,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dAH" = (
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dAI" = (
/obj/structure/cable{
@@ -97360,71 +86831,60 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
-"dAJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/storage)
+"dAJ" = (
/obj/structure/sign/vacuum{
pixel_y = -32
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dAK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dAL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table,
/obj/item/clothing/gloves/color/white,
/obj/item/clothing/glasses/science,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dAM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/mixing)
"dAN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/toxins/mixing)
-"dAO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing)
"dAP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -97436,10 +86896,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -97448,23 +86904,27 @@
"dAR" = (
/obj/structure/dispenser,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -30
},
/obj/item/clothing/suit/fire/firefighter,
/obj/item/clothing/head/hardhat/red,
/obj/item/clothing/mask/gas,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dAT" = (
/obj/structure/cable{
@@ -97473,13 +86933,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurple"
+ },
/area/toxins/mixing)
"dAU" = (
/obj/machinery/door/window/southright{
@@ -97489,8 +86946,7 @@
},
/obj/machinery/door/window/southright{
name = "Toxins Launcher";
- req_access_txt = "7";
- req_one_access_txt = "0"
+ req_access_txt = "7"
},
/obj/effect/decal/warning_stripes/arrow,
/obj/effect/decal/warning_stripes/yellow/partial,
@@ -97504,6 +86960,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dAW" = (
@@ -97514,27 +86973,27 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dAX" = (
/obj/structure/computerframe,
/obj/item/circuitboard/operating,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dAY" = (
/obj/structure/chair,
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dAZ" = (
/obj/structure/chair,
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dBa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/radio/intercom{
dir = 1;
name = "Station Intercom (General)";
@@ -97542,12 +87001,11 @@
},
/obj/structure/closet/secure_closet/scientist,
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dBb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical{
pixel_x = -6;
@@ -97558,12 +87016,14 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dBc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table,
/obj/item/paper_bin,
/obj/item/pen,
@@ -97578,9 +87038,8 @@
/area/toxins/storage)
"dBd" = (
/obj/machinery/r_n_d/server/core,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -97592,7 +87051,9 @@
/area/toxins/server)
"dBe" = (
/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
/turf/simulated/floor/bluegrid{
icon_state = "dark";
name = "Mainframe Floor";
@@ -97603,9 +87064,8 @@
/area/toxins/server)
"dBf" = (
/obj/machinery/r_n_d/server/robotics,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -97615,47 +87075,26 @@
temperature = 80
},
/area/toxins/server)
-"dBg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
"dBh" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Science Break Room";
+/obj/machinery/door/airlock/maintenance{
+ name = "Science Maintenance";
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/medical/research)
-"dBi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
"dBj" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -97667,7 +87106,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -97675,11 +87113,6 @@
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
/area/medical/morgue)
-"dBl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/wall,
-/area/medical/morgue)
"dBm" = (
/obj/structure/cable{
d1 = 1;
@@ -97689,13 +87122,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/morgue)
-"dBn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sign/greencross,
-/turf/simulated/wall,
-/area/medical/medbay)
"dBo" = (
/obj/structure/cable{
d1 = 1;
@@ -97707,23 +87136,25 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/medbay)
"dBp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/obj/machinery/iv_drip,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
+/area/medical/medbay)
+"dBq" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dBq" = (
+"dBr" = (
/obj/structure/chair/wood{
dir = 4
},
@@ -97731,7 +87162,17 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dBr" = (
+"dBt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
+"dBu" = (
/obj/structure/table/wood,
/obj/item/clothing/under/jester,
/turf/simulated/floor/wood{
@@ -97739,58 +87180,18 @@
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dBs" = (
+"dBv" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"dBt" = (
-/obj/structure/table/wood,
-/obj/item/folder/white,
-/obj/item/folder/red,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dBu" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dBv" = (
-/obj/structure/table/wood,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/detectives_office)
"dBw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
-"dBx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
"dBy" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -97815,11 +87216,11 @@
/turf/simulated/wall,
/area/toxins/mixing)
"dBC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dBD" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -97832,43 +87233,35 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
name = "Research Division";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/misc_lab)
"dBE" = (
/obj/structure/chair{
dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dBF" = (
/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dBG" = (
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dBH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"dBI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
"dBJ" = (
/obj/structure/cable{
d1 = 4;
@@ -97876,19 +87269,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"dBK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
"dBL" = (
/obj/structure/cable{
d1 = 4;
@@ -97896,37 +87279,22 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
-"dBM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dBN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/hallway/primary/aft)
"dBO" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/machinery/r_n_d/circuit_imprinter,
-/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/structure/table/reinforced,
+/obj/item/robotanalyzer,
+/obj/item/bonegel,
+/obj/item/FixOVein,
+/obj/item/surgicaldrill,
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dBP" = (
/obj/structure/cable{
@@ -97935,26 +87303,21 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/aft)
"dBQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -97962,7 +87325,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -97980,20 +87342,19 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dBS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
id_tag = null;
@@ -98013,12 +87374,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dBU" = (
/obj/structure/cable{
d1 = 4;
@@ -98026,9 +87389,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dBV" = (
@@ -98038,27 +87398,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/aft)
-"dBW" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/aft)
"dBX" = (
/obj/structure/cable{
d1 = 4;
@@ -98072,9 +87414,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dBY" = (
@@ -98084,9 +87423,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -98100,9 +87436,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/spawner/random_spawners/oil_maybe,
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -98113,15 +87446,9 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dCb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -98132,9 +87459,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -98148,7 +87472,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -98167,9 +87490,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dCf" = (
@@ -98179,25 +87500,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dCg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dCh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -98211,47 +87522,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
},
/area/medical/medbay)
"dCj" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
},
/area/medical/medbay)
-"dCk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
-"dCl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"dCm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -98262,36 +87547,61 @@
},
/area/maintenance/starboard)
"dCn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/bodyscanner,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -28
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/machinery/status_display{
+ pixel_x = 31
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/medbay)
"dCo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/medical/surgeryobs)
"dCp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"dCq" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
},
/area/crew_quarters/theatre)
-"dCq" = (
+"dCr" = (
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/bonesetter{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/surgicaldrill,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"dCs" = (
/obj/structure/table/wood,
/obj/item/clothing/head/papersack/smiley,
/obj/item/pen,
@@ -98299,16 +87609,18 @@
icon_state = "dark"
},
/area/crew_quarters/theatre)
-"dCr" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/twohanded/required/kirbyplants,
+"dCt" = (
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/theatre)
-"dCs" = (
+"dCu" = (
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/crew_quarters/theatre)
+"dCv" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/cardborg,
/obj/item/clothing/head/cardborg,
@@ -98317,43 +87629,19 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dCt" = (
+"dCw" = (
/obj/structure/computerframe,
/obj/item/circuitboard/secure_data,
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/status_display{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
-"dCu" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dCv" = (
-/obj/structure/table/wood,
-/obj/item/storage/fancy/cigarettes/cigpack_uplift,
-/obj/item/storage/fancy/cigarettes/cigpack_carp,
-/obj/item/lighter/zippo,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
-"dCw" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase,
-/obj/item/storage/secure/briefcase,
-/turf/simulated/floor/plating,
-/area/security/detectives_office)
"dCx" = (
/obj/structure/grille,
/obj/structure/cable/yellow{
@@ -98376,14 +87664,14 @@
network = list("SS13,Toxins")
},
/obj/item/target,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless/indestructible,
/area/toxins/test_area)
"dCA" = (
/obj/structure/chair{
dir = 8
},
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dCB" = (
/obj/effect/decal/warning_stripes/west,
@@ -98415,15 +87703,14 @@
"dCG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCI" = (
/obj/machinery/light/small{
dir = 1
@@ -98432,25 +87719,19 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCK" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
-"dCL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
"dCM" = (
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -98458,18 +87739,11 @@
/area/toxins/storage)
"dCN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dCO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/light/small{
dir = 8
},
@@ -98481,67 +87755,37 @@
pixel_y = 27
},
/turf/simulated/floor/plasteel,
-/area/medical/research)
+/area/maintenance/apmaint)
"dCP" = (
-/obj/structure/table/wood,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
+/obj/structure/chair/wood{
+ dir = 4
},
-/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"dCQ" = (
/obj/structure/table/wood,
-/obj/item/storage/box/donkpockets,
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = 32
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"dCR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = 28
+/obj/structure/chair/wood{
+ dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/medical/research)
-"dCS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/medical/research)
-"dCT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "neutral"
- },
-/area/medical/research)
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dCU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCV" = (
/obj/structure/cable{
d1 = 2;
@@ -98555,13 +87799,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCW" = (
/obj/structure/cable{
d1 = 4;
@@ -98570,12 +87815,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dCX" = (
/obj/structure/cable{
d1 = 4;
@@ -98584,36 +87831,22 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"dCY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
"dCZ" = (
/obj/structure/rack,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/storage/toolbox/mechanical,
/obj/item/storage/toolbox/electrical,
@@ -98621,16 +87854,19 @@
/obj/item/multitool,
/obj/item/clothing/head/welding,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dDa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/light/small,
/obj/structure/closet/firecloset,
-/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dDb" = (
@@ -98642,10 +87878,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -98657,10 +87894,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -98668,9 +87903,13 @@
/area/hallway/primary/aft)
"dDd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -98688,51 +87927,64 @@
req_access_txt = "19"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/bridge)
"dDf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/wall,
/area/hallway/primary/aft)
"dDg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
"dDh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -98741,22 +87993,25 @@
"dDl" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -98768,8 +88023,10 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -98783,8 +88040,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -98795,13 +88054,16 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -98813,10 +88075,12 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDs" = (
@@ -98827,8 +88091,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/maintenance/aft)
@@ -98840,12 +88106,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/medical/medbay)
+/area/maintenance/aft)
"dDu" = (
/obj/structure/cable{
d1 = 4;
@@ -98853,11 +88121,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dDv" = (
@@ -98883,13 +88155,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -98902,31 +88169,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
-"dDx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"dDy" = (
/obj/structure/cable{
d1 = 4;
@@ -98935,13 +88187,15 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dDz" = (
+"dDC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -98949,118 +88203,117 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"dDA" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dDB" = (
+"dDD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"dDE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"dDF" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
},
/area/maintenance/starboard)
-"dDC" = (
+"dDG" = (
/turf/simulated/wall/rust,
/area/crew_quarters/theatre)
-"dDD" = (
+"dDH" = (
/obj/structure/dresser,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDE" = (
+"dDI" = (
/obj/structure/table/wood,
/obj/item/wrench,
/obj/item/storage/briefcase,
/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDF" = (
+"dDJ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dDG" = (
+"dDK" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/theatre)
-"dDH" = (
+"dDL" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDI" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/piano,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDJ" = (
+"dDM" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"dDK" = (
-/obj/structure/table/wood,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/obj/item/lipstick/random,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDL" = (
-/obj/structure/table/wood,
-/obj/item/instrument/violin,
-/turf/simulated/floor/plating,
-/area/crew_quarters/theatre)
-"dDM" = (
-/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/security/detectives_office)
"dDN" = (
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
"dDO" = (
-/obj/structure/dresser,
-/turf/simulated/floor/plating,
+/obj/structure/computerframe,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
/area/security/detectives_office)
"dDP" = (
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dDQ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -99085,7 +88338,7 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDV" = (
/obj/structure/cable{
d1 = 1;
@@ -99098,9 +88351,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDW" = (
/obj/structure/cable{
d1 = 4;
@@ -99108,12 +88360,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDX" = (
/obj/structure/cable{
d1 = 4;
@@ -99121,14 +88369,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDY" = (
/obj/structure/cable{
d1 = 1;
@@ -99141,9 +88386,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDZ" = (
/obj/structure/cable{
d1 = 2;
@@ -99151,127 +88395,38 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEa" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
-"dEb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
-/area/medical/research)
"dEc" = (
/obj/structure/chair{
dir = 4
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
-"dEd" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/medical/research)
-"dEe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dEf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dEg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dEh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/medical/research)
"dEi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dEj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dEk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/bridge)
+/area/maintenance/apmaint)
"dEl" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dEm" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
@@ -99284,9 +88439,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dEo" = (
/turf/simulated/wall,
@@ -99299,23 +88455,21 @@
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dEr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dEs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dEt" = (
@@ -99323,15 +88477,28 @@
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
"dEu" = (
-/turf/simulated/wall/rust,
-/area/security/detectives_office)
+/obj/item/bonegel{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/cautery,
+/obj/item/FixOVein{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/table/tray,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
"dEv" = (
/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dEw" = (
/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dEx" = (
/obj/machinery/field/generator{
@@ -99348,29 +88515,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dEz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
+/area/maintenance/apmaint)
"dEA" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sw_maint2_outer";
locked = 1;
- name = "West Maintenance External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "West Maintenance External Access"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEB" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
@@ -99378,25 +88535,20 @@
id_tag = "sw_maint2_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sw_maint2_airlock";
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
tag_airpump = "sw_maint2_pump";
tag_chamber_sensor = "sw_maint2_sensor";
tag_exterior_door = "sw_maint2_outer";
tag_interior_door = "sw_maint2_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sw_maint2_sensor";
- pixel_x = 0;
pixel_y = 33
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEC" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -99405,21 +88557,19 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dED" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEE" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sw_maint2_inner";
locked = 1;
name = "West Maintenance External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -99427,7 +88577,7 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEF" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -99438,12 +88588,11 @@
master_tag = "sw_maint2_airlock";
name = "interior access button";
pixel_x = -24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEG" = (
/obj/structure/cable{
d1 = 4;
@@ -99451,41 +88600,32 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEH" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEJ" = (
/obj/structure/cable{
d1 = 1;
@@ -99493,24 +88633,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEK" = (
/obj/structure/chair{
dir = 8
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dEL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -99519,81 +88654,40 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/simulated/floor/plating,
-/area/medical/research)
-"dEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall,
-/area/medical/research)
+/area/maintenance/apmaint)
"dEN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/structure/table/wood,
+/obj/machinery/kitchen_machine/microwave{
+ pixel_x = -3;
+ pixel_y = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/medical/research)
-"dEO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
+/area/maintenance/apmaint)
"dEP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Scientist"
- },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/medical/research)
-"dEQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
+/area/maintenance/apmaint)
"dER" = (
/obj/machinery/camera{
c_tag = "Experimention Lab";
dir = 1;
network = list("Research","SS13")
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
+/turf/simulated/floor/engine,
/area/toxins/explab)
"dES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -99601,21 +88695,18 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dET" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = 28
},
/turf/simulated/floor/plasteel{
@@ -99631,13 +88722,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "blue"
},
/area/bridge)
"dEV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/photocopier,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = 32;
@@ -99667,17 +88758,16 @@
/obj/item/storage/box/bodybags,
/obj/item/borg/upgrade/rename,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"dEY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "escape"
+ icon_state = "white"
},
-/area/hallway/primary/aft)
+/area/assembly/robotics)
"dEZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "escape"
@@ -99685,7 +88775,6 @@
/area/hallway/primary/aft)
"dFa" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "escape"
@@ -99696,20 +88785,18 @@
/obj/structure/table,
/obj/item/pen,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
dir = 4
},
/obj/machinery/alarm{
- pixel_y = 22
+ pixel_y = 24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dFc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
@@ -99725,13 +88812,10 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay)
"dFe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 5;
@@ -99744,7 +88828,7 @@
dir = 1;
layer = 2.9
},
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dFg" = (
/turf/simulated/wall,
@@ -99766,7 +88850,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -99780,66 +88863,34 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFm" = (
/turf/simulated/wall/r_wall,
/area/toxins/storage)
"dFn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dFo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/medical/research)
-"dFp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dFq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dFr" = (
-/obj/structure/chair/stool,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/medical/research)
-"dFs" = (
/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+/obj/item/storage/box/donkpockets,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
+"dFr" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "redyellowfull"
},
-/obj/item/clipboard,
-/obj/item/folder,
+/area/maintenance/apmaint)
+"dFs" = (
+/obj/structure/table_frame/wood,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"dFt" = (
/obj/structure/cable{
d1 = 1;
@@ -99851,8 +88902,9 @@
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFu" = (
/obj/machinery/computer/med_data,
/obj/machinery/status_display{
@@ -99870,10 +88922,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -99881,12 +88931,18 @@
/area/bridge)
"dFw" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/structure/window/reinforced/polarized{
dir = 8
},
-/obj/item/cautery,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/tank/internals/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dFx" = (
/obj/structure/table/reinforced,
@@ -99900,36 +88956,24 @@
"dFy" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/ai_status_display{
- pixel_x = 32
+ dir = 4
},
/obj/item/retractor,
/obj/item/hemostat,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/bonesetter,
+/obj/item/stack/medical/bruise_pack/advanced{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/button/windowtint{
+ id = 1;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
-"dFz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/aft)
-"dFA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/aft)
"dFB" = (
/obj/structure/chair{
dir = 8
@@ -99941,20 +88985,17 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/hallway/primary/aft)
-"dFD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/medical/medbay)
"dFE" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dFF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/medical/medbay)
@@ -100015,18 +89056,6 @@
icon_state = "grimy"
},
/area/library/abandoned)
-"dFO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library/abandoned)
"dFP" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -100055,27 +89084,19 @@
icon_state = "grimy"
},
/area/library/abandoned)
-"dFT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Science Break Room";
- req_access_txt = "47"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/research)
"dFU" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dFV" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dFW" = (
/obj/structure/cable{
@@ -100085,14 +89106,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFX" = (
/obj/effect/landmark{
name = "blobstart"
@@ -100102,86 +89122,47 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFY" = (
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFZ" = (
/obj/machinery/light/small,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
- },
/obj/structure/toilet{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plasteel,
-/area/medical/research)
+/area/maintenance/apmaint)
"dGa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/medical/cmo)
-"dGb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/medical/research)
"dGc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/machinery/vending/cola,
-/obj/machinery/light,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/medical/research)
-"dGd" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/medical/research)
+/area/maintenance/apmaint)
"dGe" = (
/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "neutral"
- },
-/area/medical/research)
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dGf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGg" = (
/obj/structure/cable{
d1 = 1;
@@ -100191,8 +89172,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGh" = (
/obj/structure/cable{
d2 = 4;
@@ -100201,10 +89183,12 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/machinery/computer/card,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "bluefull"
@@ -100227,6 +89211,12 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -100239,7 +89229,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -100255,6 +89247,9 @@
/obj/structure/chair/office/light{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "bluefull"
@@ -100288,17 +89283,19 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dGn" = (
-/obj/structure/table,
/obj/item/radio/intercom{
dir = 1;
name = "Station Intercom (General)";
pixel_y = -29
},
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/structure/closet/secure_closet/roboticist,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dGo" = (
/obj/structure/disposalpipe/segment,
@@ -100317,7 +89314,20 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"dGq" = (
+"dGr" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"dGs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -100331,8 +89341,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -100345,63 +89354,12 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dGr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_xeno_inner";
- locked = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "13"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dGs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 8;
- frequency = 1379;
- id_tag = "solar_xeno_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
- id_tag = "solar_xeno_airlock";
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "13";
- tag_airpump = "solar_xeno_pump";
- tag_chamber_sensor = "solar_xeno_sensor";
- tag_exterior_door = "solar_xeno_outer";
- tag_interior_door = "solar_xeno_inner"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1379;
- id_tag = "solar_xeno_sensor";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dGt" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -100415,6 +89373,12 @@
tag = ""
},
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
@@ -100422,6 +89386,9 @@
/area/medical/virology)
"dGv" = (
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -100433,13 +89400,13 @@
"dGx" = (
/obj/structure/table/glass,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/item/radio/intercom{
pixel_y = 28
},
/obj/item/paper_bin,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -100474,6 +89441,7 @@
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -100514,7 +89482,6 @@
/obj/structure/table/wood,
/obj/item/paicard,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100522,7 +89489,6 @@
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100541,18 +89507,17 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGK" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGL" = (
/obj/machinery/atmospherics/trinary/filter{
dir = 8
@@ -100561,7 +89526,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGM" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 9
@@ -100570,23 +89535,27 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dGO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/storage)
"dGP" = (
/obj/machinery/computer/crew,
@@ -100611,7 +89580,6 @@
},
/area/bridge)
"dGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -100632,12 +89600,18 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dGU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -100652,40 +89626,38 @@
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dGX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "4-8";
+ tag = ""
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
- id_tag = "solar_xeno_outer";
+ id_tag = "solar_xeno_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+ req_access_txt = "13"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dGY" = (
/obj/machinery/door/airlock/maintenance{
- name = "Science Toilet";
- req_access_txt = "0"
+ name = "abandoned Toilet"
},
/turf/simulated/floor/plasteel,
-/area/medical/research)
+/area/maintenance/apmaint)
"dGZ" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -100699,6 +89671,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "viro_lab_airlock_control";
+ name = "Virology Lab Access Button";
+ pixel_y = -24;
+ req_access_txt = "39"
+ },
/obj/machinery/door/airlock/medical{
autoclose = 0;
frequency = 1379;
@@ -100708,15 +89688,6 @@
name = "Virology Lab Internal Airlock";
req_access_txt = "39"
},
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "viro_lab_airlock_control";
- name = "Virology Lab Access Button";
- pixel_x = 0;
- pixel_y = -24;
- req_access_txt = "39"
- },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dHb" = (
@@ -100804,9 +89775,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -100825,95 +89793,47 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dHi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/virology)
"dHj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/virologist,
+/obj/item/toy/figure/crew/virologist,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dHk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/grille,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"dHl" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
+/area/maintenance/port)
"dHm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
},
/area/medical/virology)
-"dHn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/medical/virology)
"dHo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/table/glass,
/obj/item/flashlight/lamp,
/obj/machinery/newscaster{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -100925,9 +89845,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/bed,
/obj/item/bedsheet/medical,
/obj/effect/landmark/start{
@@ -100944,10 +89861,10 @@
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/computer/med_data/laptop,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -100976,11 +89893,9 @@
/obj/structure/table/wood,
/obj/item/deck/cards,
/obj/item/deck/cards{
- pixel_x = 0;
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100989,7 +89904,6 @@
/obj/item/clipboard,
/obj/item/folder/red,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpet"
},
/area/library/abandoned)
@@ -100999,8 +89913,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/library/abandoned)
@@ -101014,18 +89927,13 @@
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHz" = (
/obj/structure/cable{
d1 = 1;
@@ -101039,17 +89947,15 @@
icon_state = "2-4";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHA" = (
/obj/structure/cable{
d1 = 4;
@@ -101057,20 +89963,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHB" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHC" = (
/obj/structure/cable{
d1 = 1;
@@ -101083,17 +89988,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHD" = (
/obj/structure/cable{
d1 = 4;
@@ -101101,17 +90003,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHE" = (
/obj/structure/cable{
d1 = 4;
@@ -101120,46 +90021,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dHF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dHG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHH" = (
/obj/structure/cable{
d1 = 4;
@@ -101173,38 +90042,19 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dHI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHJ" = (
/obj/structure/cable{
d1 = 4;
@@ -101212,12 +90062,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHK" = (
/obj/structure/cable{
d1 = 4;
@@ -101228,11 +90083,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHL" = (
/obj/structure/cable{
d1 = 4;
@@ -101240,13 +90098,14 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHM" = (
/obj/structure/cable{
d1 = 1;
@@ -101259,17 +90118,23 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHN" = (
/obj/structure/table/reinforced,
/obj/item/radio,
/obj/item/crowbar,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -101291,9 +90156,6 @@
},
/area/bridge)
"dHP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
@@ -101301,8 +90163,7 @@
/area/bridge)
"dHQ" = (
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/structure/closet/secure_closet,
/obj/item/storage/secure/briefcase,
@@ -101313,7 +90174,7 @@
/area/bridge)
"dHR" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/structure/window/reinforced/polarized{
dir = 8
},
/obj/item/mmi,
@@ -101323,16 +90184,16 @@
},
/obj/item/storage/box/masks,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dHS" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101341,7 +90202,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101351,7 +90211,6 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -101378,34 +90237,24 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dHZ" = (
-/obj/structure/chair/office/dark{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dIa" = (
-/obj/structure/cable,
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/medical/surgery1)
"dIb" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/light/small{
@@ -101413,14 +90262,13 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dIc" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/medical/virology)
"dId" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -101442,20 +90290,24 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"dIf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/grille,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dIg" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
@@ -101468,12 +90320,11 @@
},
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "escape"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
"dIh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Research Firing Range";
dir = 4;
@@ -101481,34 +90332,26 @@
pixel_y = -22
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dIi" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Research Central Hall";
dir = 8;
network = list("Research","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dIj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Virologist"
},
/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -101520,8 +90363,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -101539,6 +90385,12 @@
name = "Virology Bedroom";
req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dIm" = (
@@ -101548,6 +90400,12 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -101565,8 +90423,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -101574,12 +90432,13 @@
/area/medical/virology)
"dIo" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/status_display{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -101600,25 +90459,12 @@
},
/area/library/abandoned)
"dIr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/simulated/floor/plating,
/area/library/abandoned)
-"dIs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library/abandoned)
"dIt" = (
/obj/structure/cable{
d1 = 1;
@@ -101626,11 +90472,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -101661,63 +90502,29 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dIz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/chapel/office)
+/area/maintenance/apmaint)
"dIA" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dIC" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/wardrobe/toxins_white,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"dID" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/hallway/secondary/exit)
+/area/maintenance/apmaint)
"dIG" = (
/obj/structure/cable{
d1 = 1;
@@ -101725,15 +90532,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
+/area/maintenance/apmaint)
"dIH" = (
/turf/simulated/wall,
/area/hallway/secondary/exit)
@@ -101784,14 +90588,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
-"dIM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/door/airlock/public/glass,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
"dIN" = (
/obj/structure/sign/directions/evac{
pixel_y = -8
@@ -101817,13 +90613,6 @@
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/medical/virology)
-"dIY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dIZ" = (
/obj/structure/cable{
d1 = 1;
@@ -101831,9 +90620,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -101851,9 +90641,11 @@
name = "Virology Office";
req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/virology)
@@ -101864,10 +90656,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreencorner"
@@ -101891,12 +90683,11 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -101909,8 +90700,9 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -101918,7 +90710,9 @@
},
/area/medical/virology)
"dJe" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -101926,23 +90720,12 @@
/area/medical/virology)
"dJf" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/turf/simulated/floor/plating,
/area/medical/virology)
-"dJg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall,
-/area/medical/virology)
"dJh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/light_switch{
pixel_x = -26;
pixel_y = 4
@@ -101959,9 +90742,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -101976,12 +90756,17 @@
},
/area/medical/virology)
"dJk" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable,
-/turf/simulated/floor/plasteel/airless{
- icon_state = "solarpanel"
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/door_control{
+ id = "surgeryobs1";
+ name = "Privacy Shutters Control";
+ pixel_y = 25
},
-/area/maintenance/auxsolarstarboard)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery1)
"dJl" = (
/obj/structure/cable{
d2 = 4;
@@ -101990,8 +90775,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/wood{
broken = 1;
@@ -102038,7 +90822,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -102077,20 +90860,7 @@
icon_state = "dark"
},
/area/chapel/office)
-"dJv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
"dJw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -102100,22 +90870,9 @@
/turf/simulated/wall,
/area/chapel/main)
"dJy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Break Room Maintenance";
- req_access_txt = "47"
- },
-/turf/simulated/floor/plasteel,
-/area/medical/research)
-"dJz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/chapel/main)
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/apmaint)
"dJA" = (
/obj/item/twohanded/required/kirbyplants,
/obj/structure/sign/poster/official/nanotrasen_logo{
@@ -102133,11 +90890,11 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dJC" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
@@ -102157,9 +90914,11 @@
network = list("Medical","SS13")
},
/obj/item/reagent_containers/dropper,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay)
"dJF" = (
@@ -102176,30 +90935,31 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
+"dJI" = (
+/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
"dJM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/door_control{
+ id = "surgeryobs2";
+ name = "Privacy Shutters Control";
+ pixel_y = 25
},
-/obj/structure/table/reinforced,
-/obj/item/retractor,
-/obj/item/hemostat,
-/obj/item/stack/medical/bruise_pack/advanced,
-/obj/item/bonesetter,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/surgery2)
"dJO" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner (WEST)"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dJP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
@@ -102215,21 +90975,13 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dJR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dJS" = (
-/obj/machinery/atmospherics/unary/tank/air{
- dir = 1
- },
/obj/machinery/light/small{
dir = 8
},
@@ -102237,18 +90989,18 @@
dir = 8;
pixel_x = -24
},
+/obj/structure/table,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/virology)
"dJT" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/status_display{
pixel_y = -32
},
+/obj/machinery/atmospherics/unary/tank/air{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -102260,7 +91012,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/table,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/unary/portables_connector{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -102289,10 +91044,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -102305,18 +91056,29 @@
/area/medical/virology)
"dKa" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library/abandoned)
"dKb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/library/abandoned)
"dKc" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
@@ -102325,24 +91087,24 @@
"dKd" = (
/obj/structure/table,
/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -102391,12 +91153,12 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/main)
"dKk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
pixel_y = 26
@@ -102409,7 +91171,6 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/machinery/light_switch{
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -102430,6 +91191,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dKo" = (
@@ -102467,29 +91229,34 @@
icon_state = "dark"
},
/area/chapel/main)
-"dKs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
"dKx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "4-8";
+ tag = ""
},
-/obj/machinery/access_button{
- command = "cycle_exterior";
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8;
frequency = 1379;
- master_tag = "solar_xeno_airlock";
- name = "exterior access button";
- pixel_x = -25;
- pixel_y = 25;
- req_access_txt = "13"
+ id_tag = "solar_xeno_pump"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarstarboard)
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "solar_xeno_airlock";
+ pixel_y = 25;
+ req_access_txt = "13";
+ tag_airpump = "solar_xeno_pump";
+ tag_chamber_sensor = "solar_xeno_sensor";
+ tag_exterior_door = "solar_xeno_outer";
+ tag_interior_door = "solar_xeno_inner"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "solar_xeno_sensor";
+ pixel_y = 32
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
"dKz" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -102527,12 +91294,9 @@
/turf/simulated/floor/plating,
/area/medical/virology)
"dKC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -102544,10 +91308,8 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/power/apc{
dir = 4;
@@ -102575,12 +91337,11 @@
/turf/simulated/floor/plating,
/area/library/abandoned)
"dKH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/closet/crate,
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dKI" = (
/obj/structure/cable{
d1 = 1;
@@ -102588,22 +91349,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dKJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -102632,11 +91378,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dKN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -102670,6 +91411,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dKV" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -102682,10 +91424,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start{
name = "Medical Doctor"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -102703,18 +91452,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dKY" = (
/obj/structure/cable{
d1 = 1;
@@ -102722,11 +91471,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
req_access_txt = "27"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -102738,24 +91488,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dLa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -102775,27 +91521,19 @@
},
/area/medical/virology)
"dLc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dLd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -102806,11 +91544,9 @@
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dLe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLf" = (
@@ -102823,15 +91559,15 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"dLg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/obj/machinery/camera{
@@ -102840,47 +91576,60 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dLi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/light/small{
dir = 1
},
/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dLj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
},
/area/medical/virology)
"dLk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light/small{
dir = 1
},
/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dLl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -102901,25 +91650,25 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dLo" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dLp" = (
/obj/structure/table,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/turf/simulated/floor/plasteel{
@@ -102933,24 +91682,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark/start{
name = "Chaplain"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
-"dLr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dLs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -102958,8 +91701,7 @@
/area/chapel/main)
"dLt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -102974,29 +91716,22 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/obj/effect/landmark{
name = "lightsout"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dLv" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/main)
"dLw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -103007,6 +91742,9 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -103020,43 +91758,30 @@
},
/area/chapel/main)
"dLz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dLA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
-"dLC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
+"dLD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dLD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -103069,38 +91794,35 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/exit)
"dLE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/secondary/exit)
"dLF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -103135,16 +91857,6 @@
icon_state = "neutralfull"
},
/area/hallway/secondary/exit)
-"dLJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
"dLK" = (
/obj/machinery/light{
dir = 4
@@ -103153,38 +91865,32 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dLP" = (
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/camera{
- c_tag = "Medbay Surgery";
- dir = 1;
- network = list("SS13","Medical")
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/obj/machinery/holosign/surgery{
+ id = "surgery2"
},
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/medical/surgery)
+/area/medical/surgery2)
"dLQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -103195,20 +91901,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dLS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLT" = (
@@ -103218,13 +91911,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLU" = (
@@ -103234,36 +91922,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dLV" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/virology)
-"dLW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dLX" = (
/obj/structure/cable{
d1 = 4;
@@ -103271,7 +91934,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
@@ -103282,13 +91944,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/medical/virology)
-"dLZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dMa" = (
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
@@ -103299,18 +91954,10 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/medical/virology)
-"dMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dMc" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -103327,9 +91974,6 @@
/turf/simulated/floor/plating,
/area/library/abandoned)
"dMf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -103343,25 +91987,23 @@
/turf/simulated/floor/plating,
/area/library/abandoned)
"dMh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Chapel Backroom";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dMi" = (
-/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 8;
+ icon_state = "whiteblue"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dMj" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -103374,13 +92016,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dMl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dMm" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -103396,25 +92031,27 @@
},
/area/chapel/main)
"dMo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dMp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dMq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -103426,6 +92063,9 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -103436,7 +92076,9 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -103445,7 +92087,7 @@
"dMu" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dMv" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -103459,12 +92101,15 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ dir = 4;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dMx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -103482,29 +92127,35 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 4;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dMy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"dMz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -103522,16 +92173,15 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ dir = 8;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dMA" = (
@@ -103546,9 +92196,15 @@
/obj/item/healthanalyzer,
/obj/item/clothing/glasses/hud/health,
/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dMB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -103566,33 +92222,35 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Virology Lab";
req_access_txt = "39"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/virology)
"dMC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -103601,6 +92259,10 @@
},
/area/medical/virology)
"dMD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -103612,38 +92274,18 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- level = 1
+ initialize_directions = 11
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dME" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dMF" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/medical/virology)
"dMG" = (
/obj/structure/table/glass,
/obj/item/folder/white,
@@ -103655,19 +92297,20 @@
department = "Virology";
departmentType = 3;
name = "Virology Requests Console";
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dMH" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/virology)
"dMI" = (
@@ -103692,44 +92335,8 @@
icon_state = "wood-broken"
},
/area/library/abandoned)
-"dML" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/item/pen,
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/library/abandoned)
-"dMM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/library/abandoned)
-"dMN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
"dMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/morgue{
- dir = 2;
name = "Occult Study"
},
/turf/simulated/floor/plasteel{
@@ -103737,10 +92344,6 @@
},
/area/library/abandoned)
"dMP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -103761,31 +92364,32 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dMS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -103804,14 +92408,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dMV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dMW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/wood,
@@ -103834,11 +92430,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
-"dMZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
"dNa" = (
/obj/structure/cable{
d1 = 1;
@@ -103874,13 +92465,6 @@
icon_state = "neutralfull"
},
/area/hallway/secondary/exit)
-"dNd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
"dNi" = (
/obj/structure/cable{
d1 = 1;
@@ -103890,7 +92474,10 @@
},
/obj/machinery/computer/pandemic,
/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dNj" = (
/obj/structure/chair/office/dark{
@@ -103900,34 +92487,36 @@
name = "Virologist"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ dir = 1;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNm" = (
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNn" = (
@@ -103937,43 +92526,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dNo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
-"dNp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dNq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+ dir = 1;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dNr" = (
@@ -103983,7 +92538,6 @@
"dNs" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -103993,7 +92547,6 @@
},
/area/medical/virology)
"dNt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -104006,36 +92559,31 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
},
/area/medical/virology)
"dNv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dNw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/table/glass,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -104069,13 +92617,15 @@
},
/area/library/abandoned)
"dNB" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/library/abandoned)
"dNC" = (
/obj/machinery/light/small,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plating,
/area/library/abandoned)
"dND" = (
@@ -104107,7 +92657,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -104119,11 +92668,11 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -104142,14 +92691,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/chair/wood,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dNM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/wood,
@@ -104196,7 +92737,10 @@
"dNW" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreen"
+ },
/area/medical/virology)
"dNX" = (
/obj/machinery/light{
@@ -104207,7 +92751,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
@@ -104215,7 +92758,10 @@
icon_state = "0-2"
},
/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dNY" = (
/obj/structure/cable{
@@ -104224,25 +92770,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dNZ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue";
- tag = "icon-whiteblue"
+ icon_state = "whiteblue"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dOb" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dOc" = (
/obj/structure/cable{
d1 = 1;
@@ -104256,23 +92801,33 @@
},
/obj/machinery/reagentgrinder,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dOd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dOe" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -104284,9 +92839,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -104300,14 +92857,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/medical{
name = "Virology";
req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dOh" = (
@@ -104323,14 +92882,15 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOi" = (
@@ -104340,7 +92900,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -104357,13 +92922,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -104375,8 +92938,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -104395,17 +92962,21 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/glass,
/obj/item/folder/white,
/obj/item/pen/red,
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (EAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOm" = (
@@ -104419,7 +92990,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 8
@@ -104428,11 +92998,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"dOo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall,
-/area/chapel/office)
+/area/maintenance/apmaint)
"dOp" = (
/obj/structure/cable{
d1 = 1;
@@ -104440,12 +93006,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/centcom{
name = "Chapel Morgue";
opacity = 1;
req_access_txt = "27"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -104453,8 +93020,7 @@
"dOq" = (
/obj/structure/chair/wood,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104466,22 +93032,13 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dOs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dOt" = (
/obj/structure/chair/wood,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/turf/simulated/floor/plasteel{
icon_state = "chapel"
@@ -104498,11 +93055,9 @@
},
/area/hallway/secondary/exit)
"dOv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -104560,14 +93115,8 @@
/turf/simulated/floor/plating,
/area/medical/virology)
"dOG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104575,29 +93124,19 @@
},
/area/medical/virology)
"dOH" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"dOI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dOJ" = (
/obj/structure/cable{
d1 = 1;
@@ -104605,14 +93144,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -104622,35 +93155,26 @@
},
/area/medical/virology)
"dOK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/iv_drip,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dOM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
@@ -104663,44 +93187,34 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/table/glass,
/obj/item/paper_bin,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
/obj/item/storage/box/monkeycubes,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dOO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dOP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dOQ" = (
/obj/structure/cable{
d1 = 1;
@@ -104708,41 +93222,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dOR" = (
/obj/effect/spawner/random_spawners/cobweb_right_frequent,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dOS" = (
/turf/simulated/wall/r_wall,
/area/chapel/office)
"dOT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/crematorium,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
-"dOU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/office)
"dOV" = (
/obj/structure/cable{
d2 = 4;
@@ -104751,8 +93248,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -104790,6 +93286,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -104797,8 +93294,7 @@
"dOZ" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -104817,97 +93313,49 @@
},
/area/hallway/secondary/exit)
"dPb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
-"dPc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dPd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dPf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
"dPg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/iv_drip,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dPj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dPk" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/obj/structure/table,
/obj/item/crowbar,
/obj/item/wrench,
/obj/item/restraints/handcuffs/cable,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPl" = (
@@ -104917,26 +93365,27 @@
/obj/structure/sign/vacuum{
pixel_y = -32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
},
/area/medical/virology)
-"dPm" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/medical/virology)
"dPn" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
+ d1 = 1;
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
-/turf/space,
-/area/maintenance/auxsolarstarboard)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
"dPo" = (
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -104960,13 +93409,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPs" = (
/obj/structure/cable{
d1 = 4;
@@ -104976,7 +93424,7 @@
},
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPt" = (
/obj/structure/cable{
d1 = 4;
@@ -104986,11 +93434,13 @@
},
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPu" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dPv" = (
@@ -105006,11 +93456,17 @@
icon_state = "2-4";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPw" = (
/obj/structure/cable{
d1 = 4;
@@ -105018,8 +93474,14 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPx" = (
/obj/structure/cable{
d1 = 4;
@@ -105027,11 +93489,17 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPy" = (
/obj/structure/cable{
d1 = 4;
@@ -105040,11 +93508,17 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPz" = (
/obj/structure/cable{
d1 = 4;
@@ -105058,9 +93532,15 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPA" = (
/obj/structure/cable{
d1 = 4;
@@ -105075,11 +93555,17 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPB" = (
/obj/structure/cable{
d1 = 4;
@@ -105090,28 +93576,38 @@
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -105123,16 +93619,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/crema_switch{
pixel_x = 26
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -105143,51 +93637,13 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dPG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"dPH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"dPI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
"dPJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/main)
-"dPK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dPL" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -105196,12 +93652,9 @@
},
/area/chapel/main)
"dPM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dPN" = (
@@ -105217,56 +93670,45 @@
/turf/simulated/wall/r_wall/rust,
/area/medical/virology)
"dPT" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
/area/medical/virology)
"dPU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed,
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed,
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (NORTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dPY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/cola,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -105292,13 +93734,13 @@
"dQb" = (
/obj/structure/sign/electricshock,
/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQc" = (
/obj/structure/cable,
/obj/effect/spawner/window/reinforced,
/obj/structure/barricade/wooden,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQd" = (
/obj/structure/cable{
d1 = 4;
@@ -105307,12 +93749,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/start{
name = "Coroner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -105326,7 +93770,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQf" = (
/obj/machinery/door/poddoor/shutters{
dir = 2;
@@ -105340,7 +93784,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQg" = (
/obj/structure/cable{
d1 = 1;
@@ -105348,22 +93792,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/command/glass{
name = "Auxiliary E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQh" = (
/obj/structure/morgue,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -105376,27 +93819,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Cremator";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
-"dQj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dQk" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
@@ -105404,16 +93839,10 @@
},
/area/chapel/main)
"dQl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/storage/bible,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
-"dQm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -105422,14 +93851,12 @@
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/command/glass{
name = "Auxiliary E.V.A.";
- req_access_txt = "0";
req_one_access_txt = "18"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/vending/snack,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -105449,9 +93876,6 @@
/area/hallway/secondary/exit)
"dQq" = (
/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_x = 24
- },
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
@@ -105460,11 +93884,13 @@
},
/obj/item/circular_saw,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/item/cautery,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dQr" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -105472,11 +93898,9 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -105487,20 +93911,25 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dQu" = (
-/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/obj/item/reagent_containers/iv_bag/blood/random,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/item/bonegel{
+ pixel_x = 6;
+ pixel_y = 6
},
-/area/medical/medbay)
+/obj/item/cautery,
+/obj/item/FixOVein{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/structure/table/tray,
+/obj/item/scalpel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
"dQv" = (
/obj/structure/cable{
d1 = 4;
@@ -105519,36 +93948,43 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/machinery/smartfridge/secure/chemistry/virology/preloaded,
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreen"
+ },
/area/medical/virology)
"dQw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreen"
+ },
/area/medical/virology)
"dQx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQy" = (
@@ -105556,10 +93992,13 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQz" = (
@@ -105567,21 +94006,23 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHWEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQA" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whitegreen";
- tag = "icon-whitegreen (SOUTHEAST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQB" = (
@@ -105604,10 +94045,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
-"dQE" = (
-/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
"dQF" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
@@ -105623,10 +94060,10 @@
},
/obj/effect/decal/warning_stripes/yellow,
/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dQH" = (
@@ -105641,11 +94078,13 @@
/obj/item/reagent_containers/dropper,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dQI" = (
/obj/machinery/door/airlock/external{
@@ -105663,8 +94102,7 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -105680,11 +94118,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "robotics_solar_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/effect/decal/warning_stripes/east,
@@ -105703,9 +94139,7 @@
id_tag = "robotics_solar_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "robotics_solar_airlock";
- pixel_x = 0;
pixel_y = -25;
req_access_txt = "13";
tag_airpump = "robotics_solar_pump";
@@ -105714,7 +94148,6 @@
tag_interior_door = "robotics_solar_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "robotics_solar_sensor";
pixel_x = 12;
pixel_y = -25
@@ -105728,19 +94161,16 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQN" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
/obj/effect/decal/cleanable/cobweb,
+/obj/item/reagent_containers/food/drinks/coffee,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQO" = (
/obj/structure/cable{
d1 = 4;
@@ -105750,11 +94180,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "robotics_solar_inner";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "13"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -105769,7 +94197,7 @@
on = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQQ" = (
/obj/structure/cable{
d1 = 4;
@@ -105784,8 +94212,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/obj/machinery/access_button{
command = "cycle_interior";
@@ -105808,14 +94235,17 @@
pixel_y = -4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQS" = (
/turf/simulated/wall/r_wall/rust,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQT" = (
/obj/structure/table,
/obj/item/storage/box/gloves,
/obj/item/storage/box/bodybags,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -105827,8 +94257,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -105836,8 +94268,7 @@
/area/chapel/office)
"dQV" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -28
@@ -105847,14 +94278,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dQW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
"dQX" = (
/obj/structure/table/wood,
/obj/item/flashlight/lantern,
@@ -105863,29 +94286,19 @@
},
/area/chapel/main)
"dQY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark/start{
name = "Chaplain"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/main)
-"dQZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dRa" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "chapel"
@@ -105903,10 +94316,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -105921,10 +94330,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/engineering{
name = "Aft Port Solar Access";
req_access_txt = "10"
@@ -105946,7 +94351,10 @@
/obj/item/storage/box/beakers,
/obj/item/storage/box/syringes,
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dRg" = (
/obj/structure/table/glass,
@@ -105955,31 +94363,39 @@
},
/obj/item/paper_bin,
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dRh" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dRi" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitegreen"
+ },
/area/medical/virology)
"dRj" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRk" = (
/obj/structure/cable{
d1 = 1;
@@ -105987,12 +94403,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dRl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
+"dRl" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -106001,15 +94417,15 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ pixel_x = -24
},
/obj/item/stack/cable_coil/random,
/obj/item/multitool,
+/obj/item/clothing/suit/fire/firefighter,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRn" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -106022,8 +94438,7 @@
/obj/structure/cable,
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
@@ -106031,7 +94446,7 @@
"dRp" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -106039,7 +94454,6 @@
"dRq" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -106049,20 +94463,20 @@
"dRr" = (
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRs" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/black,
/obj/item/clothing/suit/storage/hazardvest,
/obj/item/clothing/mask/breath,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
+/obj/item/reagent_containers/food/drinks/coffee,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRt" = (
/obj/structure/morgue,
/obj/machinery/firealarm{
@@ -106080,6 +94494,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -106093,35 +94509,29 @@
/obj/machinery/ai_status_display{
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/main)
"dRx" = (
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solars"
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/bonesetter{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/unary/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/northeast,
-/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"dRy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/surgicaldrill,
/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+ icon_state = "whiteblue"
},
-/area/chapel/main)
+/area/medical/surgery2)
"dRz" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106141,7 +94551,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRC" = (
/obj/structure/cable{
d1 = 2;
@@ -106149,35 +94559,29 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRD" = (
/obj/machinery/shieldwallgen,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRE" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRF" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRG" = (
/obj/structure/chair,
/obj/machinery/light{
@@ -106204,15 +94608,15 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRJ" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRK" = (
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRL" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -106220,7 +94624,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRM" = (
/obj/structure/cable{
d1 = 1;
@@ -106229,17 +94633,17 @@
tag = ""
},
/obj/machinery/door/morgue{
- dir = 2;
name = "Chapel Morgue";
req_access_txt = "22"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/office)
"dRN" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth"
},
/turf/simulated/floor/plasteel{
@@ -106247,13 +94651,11 @@
},
/area/chapel/main)
"dRO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display,
/turf/simulated/wall,
/area/chapel/main)
"dRP" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/centcom{
name = "Chapel Office";
opacity = 1;
@@ -106265,62 +94667,13 @@
/area/chapel/main)
"dRQ" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
-"dRR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dRS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dRT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dRU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dRV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/maintenance/apmaint)
+"dRV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -106328,8 +94681,12 @@
/area/hallway/secondary/exit)
"dRZ" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/clothing/suit/fire/firefighter,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSa" = (
/obj/structure/closet/crate/internals,
/obj/item/clothing/suit/storage/hazardvest,
@@ -106351,7 +94708,7 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSb" = (
/obj/structure/cable{
d1 = 1;
@@ -106364,7 +94721,7 @@
/obj/item/radio,
/obj/item/clothing/mask/breath,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSc" = (
/obj/structure/cable{
d1 = 1;
@@ -106377,23 +94734,15 @@
/obj/item/radio,
/obj/item/clothing/mask/breath,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Patient Room";
- req_access_txt = "5"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
- },
-/area/medical/medbay)
+/obj/structure/sign/greencross,
+/turf/simulated/wall,
+/area/medical/surgery1)
"dSe" = (
/obj/structure/cable{
d1 = 1;
@@ -106401,6 +94750,8 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -106411,7 +94762,6 @@
dir = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
@@ -106424,7 +94774,6 @@
dir = 8
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -106433,7 +94782,6 @@
/area/chapel/office)
"dSh" = (
/obj/machinery/door/morgue{
- dir = 2;
name = "Confession Booth (Chaplain)";
req_access_txt = "22"
},
@@ -106447,24 +94795,18 @@
},
/area/chapel/office)
"dSj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dSk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106472,7 +94814,6 @@
/area/chapel/office)
"dSl" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -106500,13 +94841,12 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSp" = (
@@ -106516,12 +94856,12 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSr" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Office";
@@ -106534,18 +94874,12 @@
/area/chapel/office)
"dSs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/obj/effect/decal/warning_stripes/southwest,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit)
-"dSt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSu" = (
@@ -106556,10 +94890,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -106574,13 +94909,15 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSC" = (
@@ -106591,29 +94928,23 @@
/obj/machinery/vending/wallmed{
layer = 3.3;
name = "Emergency NanoMed";
- pixel_x = 28;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
-/area/medical/surgery1)
+/area/medical/surgery)
"dSD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -106626,7 +94957,7 @@
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSG" = (
/obj/structure/cable{
d1 = 4;
@@ -106642,7 +94973,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSH" = (
/obj/structure/cable{
d1 = 2;
@@ -106652,7 +94983,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSI" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
@@ -106661,13 +94992,11 @@
pixel_x = 28
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSJ" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+ pixel_x = -28
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -106675,6 +95004,7 @@
/area/chapel/office)
"dSK" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -106687,7 +95017,6 @@
/area/chapel/office)
"dSM" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -106708,7 +95037,7 @@
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSP" = (
/turf/simulated/wall,
/area/security/checkpoint)
@@ -106725,7 +95054,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSR" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -106748,15 +95077,16 @@
tag = ""
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/checkpoint)
"dST" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/checkpoint)
"dSU" = (
@@ -106764,7 +95094,6 @@
/turf/simulated/wall,
/area/security/checkpoint)
"dSV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -106775,7 +95104,7 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/checkpoint)
"dSW" = (
@@ -106787,9 +95116,8 @@
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSX" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -106800,7 +95128,7 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/checkpoint)
"dSY" = (
@@ -106833,25 +95161,30 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
name = "Experimentor";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/explab)
"dTf" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/emergency,
/obj/item/wrench,
+/obj/item/reagent_containers/food/drinks/coffee,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTg" = (
/obj/structure/cable{
d1 = 4;
@@ -106868,7 +95201,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTh" = (
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/south,
@@ -106881,7 +95214,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Security Checkpoint";
@@ -106892,12 +95224,11 @@
/area/security/checkpoint)
"dTj" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTk" = (
/obj/structure/cable{
d1 = 2;
@@ -106913,10 +95244,12 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
- name = "Security Checkpoint";
- req_access_txt = "1"
+ name = "Holding Area";
+ req_access_txt = "63"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/checkpoint)
"dTl" = (
@@ -106926,15 +95259,17 @@
amount = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTm" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -106945,6 +95280,11 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -106961,7 +95301,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -106971,8 +95310,7 @@
"dTp" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
- c_tag = "Chaplain's Quarters";
- network = list("SS13")
+ c_tag = "Chaplain's Quarters"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -106987,6 +95325,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -107019,6 +95358,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -107030,27 +95370,33 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dTv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 8;
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dTw" = (
@@ -107068,15 +95414,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "viro_lab_airlock_exterior";
- locked = 1;
- name = "Virology Lab External Airlock";
- req_access_txt = "39"
- },
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
@@ -107084,7 +95421,15 @@
master_tag = "viro_lab_airlock_control";
name = "Virology Lab Access Button";
pixel_x = -24;
- pixel_y = 0;
+ req_access_txt = "39"
+ },
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "viro_lab_airlock_exterior";
+ locked = 1;
+ name = "Virology Lab External Airlock";
req_access_txt = "39"
},
/turf/simulated/floor/plasteel{
@@ -107104,7 +95449,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -107134,14 +95478,13 @@
req_access_txt = "63"
},
/obj/item/folder/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint)
"dTD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
@@ -107164,7 +95507,6 @@
},
/area/security/checkpoint)
"dTG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -107178,13 +95520,14 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/checkpoint)
"dTI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -107206,8 +95549,7 @@
},
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -107217,7 +95559,7 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTX" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -107233,14 +95575,11 @@
},
/area/chapel/office)
"dTZ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/area/chapel/office)
-"dUa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107248,8 +95587,10 @@
/area/chapel/office)
"dUb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107257,31 +95598,35 @@
/area/chapel/office)
"dUc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dUd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/centcom{
name = "Chapel Office";
opacity = 1;
req_access_txt = "27"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
"dUe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107297,17 +95642,12 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/folder,
/obj/item/pen,
/turf/simulated/floor/carpet,
/area/chapel/office)
"dUh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/item/paper_bin,
/obj/structure/table/wood,
/obj/item/pen,
@@ -107323,7 +95663,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dUj" = (
/obj/structure/cable{
d2 = 4;
@@ -107331,14 +95671,12 @@
},
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/item/crowbar,
/obj/item/wrench,
@@ -107360,7 +95698,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -107376,7 +95714,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dUm" = (
/obj/structure/cable{
d1 = 4;
@@ -107392,6 +95730,12 @@
/obj/structure/chair/office/dark{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -107404,9 +95748,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -107462,7 +95805,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -107481,15 +95824,20 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/checkpoint)
"dUt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -107537,7 +95885,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"dUG" = (
@@ -107617,8 +95965,7 @@
"dUN" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/light_switch{
pixel_x = 26;
@@ -107632,7 +95979,7 @@
"dUO" = (
/obj/structure/table/wood,
/obj/item/clipboard,
-/obj/item/toy/figure/chaplain,
+/obj/item/toy/figure/crew/chaplain,
/obj/machinery/firealarm{
dir = 4;
pixel_x = -28
@@ -107642,9 +95989,8 @@
},
/area/chapel/office)
"dUP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -107653,12 +95999,10 @@
"dUQ" = (
/obj/structure/table/wood,
/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/storage/fancy/candle_box{
pixel_x = 2;
@@ -107668,10 +96012,6 @@
/turf/simulated/floor/carpet,
/area/chapel/office)
"dUR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -107683,12 +96023,11 @@
"dUS" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dUT" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster/security_unit{
@@ -107709,7 +96048,6 @@
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107745,9 +96083,7 @@
},
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/security/checkpoint)
"dUX" = (
@@ -107765,7 +96101,7 @@
/obj/structure/closet/secure_closet/security,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -107796,7 +96132,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107821,7 +96156,6 @@
/obj/item/restraints/handcuffs,
/obj/item/flash,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107842,7 +96176,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "red"
},
/area/security/checkpoint)
@@ -107852,13 +96185,7 @@
dir = 8;
network = list("SS13","Research")
},
-/obj/machinery/atmospherics/unary/vent_pump{
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- name = "server vent";
- on = 1;
- pressure_checks = 0
- },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
name = "Mainframe Floor";
@@ -107894,12 +96221,14 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
+/area/maintenance/apmaint)
"dVn" = (
/obj/machinery/power/solar{
name = "Aft Starboard Solar Panel"
@@ -107919,7 +96248,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dVp" = (
/turf/simulated/wall/r_wall,
/area/security/checkpoint)
@@ -107930,16 +96259,15 @@
/area/security/checkpoint)
"dVv" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/ai_status_display{
pixel_x = -32
},
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -107950,7 +96278,6 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dVx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -107969,7 +96296,6 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"dWa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -107977,6 +96303,12 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"dWb" = (
@@ -108036,16 +96368,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dWh" = (
/obj/structure/cable{
d1 = 1;
@@ -108053,7 +96381,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Engineering Maintenance";
@@ -108061,8 +96388,10 @@
req_one_access_txt = null
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
+/area/maintenance/port)
"dWi" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes/northeast,
@@ -108072,16 +96401,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research/glass{
name = "Research Division";
req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dWk" = (
/obj/structure/cable{
@@ -108095,14 +96422,11 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dWl" = (
/obj/structure/cable{
d1 = 1;
@@ -108110,20 +96434,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWn" = (
/obj/structure/cable{
@@ -108132,10 +96456,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/toxins/mixing)
+/area/maintenance/port)
"dWo" = (
/obj/structure/cable{
d1 = 1;
@@ -108143,7 +96466,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
name = "Toxin Mixing Lab Maintenance";
req_access_txt = "47"
@@ -108157,7 +96479,9 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWq" = (
/obj/structure/cable{
@@ -108172,15 +96496,15 @@
req_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWr" = (
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "xeno1";
name = "Containment Control";
- pixel_x = 0;
- pixel_y = 0;
req_access_txt = "55"
},
/obj/structure/window/reinforced{
@@ -108191,7 +96515,9 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWs" = (
/obj/structure/disposalpipe/trunk,
@@ -108204,7 +96530,9 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWt" = (
/obj/structure/cable{
@@ -108214,21 +96542,23 @@
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWu" = (
/obj/machinery/newscaster{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table,
/obj/machinery/light,
/obj/item/crowbar,
@@ -108238,15 +96568,16 @@
pixel_x = 26
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"dWw" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/sign/poster/contraband/random{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
@@ -108260,16 +96591,13 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dWy" = (
/obj/structure/cable{
d1 = 4;
@@ -108277,26 +96605,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dWz" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "arrival_south_inner";
locked = 1;
- name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "Arrivals External Access"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -108316,6 +96637,9 @@
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -108328,21 +96652,16 @@
id_tag = "arrival_south_pump"
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "arrival_south_airlock";
pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
tag_airpump = "arrival_south_pump";
tag_chamber_sensor = "arrival_south_sensor";
tag_exterior_door = "arrival_south_outer";
tag_interior_door = "arrival_south_inner"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "engineering_west_sensor";
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/machinery/light/small{
dir = 4;
@@ -108354,12 +96673,9 @@
"dWH" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "arrival_south_outer";
locked = 1;
- name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "Arrivals External Access"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -108371,13 +96687,17 @@
"dWK" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/aft)
"dWL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -108398,13 +96718,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -108443,7 +96759,10 @@
pixel_y = -32
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dWT" = (
/obj/structure/cable{
@@ -108452,12 +96771,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dWU" = (
/obj/structure/closet/secure_closet/medical1,
@@ -108466,10 +96784,12 @@
pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Isolation A";
@@ -108477,10 +96797,11 @@
},
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dWW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Isolation B";
@@ -108488,6 +96809,8 @@
},
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dWX" = (
@@ -108503,8 +96826,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
+ dir = 9
},
/turf/simulated/floor/plating/airless,
/area/medical/virology)
@@ -108528,14 +96850,14 @@
name = "Chapel Maintenance";
req_access_txt = "12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
+/area/maintenance/fpmaint2)
"dXb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
- dir = 1;
- level = 2
+/obj/machinery/atmospherics/binary/valve{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -108543,9 +96865,9 @@
},
/area/medical/virology)
"dXc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10;
- icon_state = "intact"
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1;
+ level = 2
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -108574,10 +96896,12 @@
/obj/item/reagent_containers/dropper,
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dXg" = (
@@ -108585,6 +96909,9 @@
/obj/item/folder/white,
/obj/item/pen/red,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dXh" = (
@@ -108594,16 +96921,15 @@
icon_state = "1-2";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"dXi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
@@ -108611,37 +96937,33 @@
/area/medical/virology)
"dXj" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dXk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/ai_status_display{
pixel_x = -32
},
-/obj/effect/decal/warning_stripes/east,
/obj/machinery/camera{
c_tag = "Research Director's Bedroom";
dir = 4;
network = list("Research","SS13");
pixel_y = -22
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
/area/crew_quarters/hor)
"dXl" = (
/obj/structure/grille,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dXm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -108668,21 +96990,16 @@
icon_state = "brokengrille"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dXp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/camera{
c_tag = "Medbay Hallway East";
dir = 1;
network = list("SS13","Medical")
},
+/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitebluecorner";
- tag = "icon-whitebluecorner"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dXq" = (
@@ -108699,17 +97016,16 @@
},
/area/medical/morgue)
"dXr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/noticeboard{
- pixel_x = 32;
- pixel_y = 0
- },
/obj/machinery/camera{
c_tag = "Robotics Lab";
dir = 8;
network = list("Research","SS13")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/effect/decal/warning_stripes/east,
+/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"dXs" = (
@@ -108721,11 +97037,10 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dXu" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -108736,10 +97051,11 @@
network = list("Research","SS13")
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dXv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Research South Hallway";
dir = 4;
@@ -108755,29 +97071,22 @@
},
/area/medical/research)
"dXw" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/item/radio/intercom{
- dir = 1;
- name = "station intercom (General)";
- pixel_y = -28
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light,
-/obj/machinery/camera{
- c_tag = "Medbay Exam Room One";
- dir = 1;
- network = list("Medical","SS13")
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cmo"
+ icon_state = "showroomfloor"
},
-/area/medical/medbay)
+/area/medical/surgery1)
"dXx" = (
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/camera{
c_tag = "Chapel West";
dir = 4;
- network = list("SS13");
pixel_y = -22
},
/turf/simulated/floor/plasteel{
@@ -108786,25 +97095,19 @@
},
/area/chapel/main)
"dXy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/table/wood,
-/obj/machinery/camera{
- c_tag = "Research Break Room";
- dir = 8;
- network = list("Research","SS13")
+/obj/machinery/light/small{
+ dir = 4
},
+/obj/item/trash/fried_vox,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/medical/research)
+/area/maintenance/apmaint)
"dXz" = (
/obj/item/radio/intercom{
dir = 1;
- name = "station intercom (General)";
pixel_y = -28
},
/obj/machinery/camera{
@@ -108818,9 +97121,6 @@
},
/area/medical/cmo)
"dXA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall/r_wall,
@@ -108833,7 +97133,6 @@
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
- pixel_x = 0;
pixel_y = 24
},
/obj/machinery/camera{
@@ -108875,7 +97174,10 @@
network = list("SS13","Medical")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitegreencorner"
+ },
/area/medical/virology)
"dXH" = (
/obj/structure/cable{
@@ -108894,35 +97196,38 @@
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"dXI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Chapel South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/main)
"dXJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Departure Lounge South";
dir = 1
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dXK" = (
@@ -108932,8 +97237,7 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -26;
- pixel_y = 0
+ pixel_x = -26
},
/obj/machinery/light_switch{
pixel_x = -24;
@@ -108961,7 +97265,6 @@
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
- pixel_x = 0;
pixel_y = -24
},
/obj/machinery/camera{
@@ -108977,13 +97280,12 @@
"dXS" = (
/obj/structure/cable,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
@@ -108995,7 +97297,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plating,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXU" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/regular,
@@ -109005,7 +97307,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXV" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
@@ -109041,8 +97343,7 @@
master_tag = "sw_maint2_airlock";
name = "exterior access button";
pixel_x = 24;
- pixel_y = 24;
- req_access_txt = "0"
+ pixel_y = 24
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109059,22 +97360,22 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dXZ" = (
/obj/structure/table/reinforced,
/obj/structure/bedsheetbin,
/obj/item/gun/syringe,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel,
-/area/medical/surgery1)
+/area/medical/surgery)
"dYa" = (
/obj/effect/spawner/random_spawners/wall_rusted_maybe,
/turf/simulated/wall,
-/area/medical/surgery1)
+/area/medical/surgery)
"dYb" = (
/obj/structure/table/glass,
/obj/item/clipboard,
-/obj/item/toy/figure/geneticist,
+/obj/item/toy/figure/crew/geneticist,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -109096,6 +97397,7 @@
},
/area/medical/genetics)
"dYd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -109103,16 +97405,16 @@
},
/area/medical/genetics)
"dYi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -109125,14 +97427,14 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
pixel_x = 24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -109140,42 +97442,24 @@
},
/area/medical/genetics)
"dYk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics)
"dYl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (EAST)"
+ icon_state = "whitepurple"
},
/area/medical/genetics)
"dYm" = (
@@ -109199,7 +97483,9 @@
},
/obj/effect/decal/warning_stripes/yellow,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dYq" = (
/obj/machinery/light/small,
@@ -109211,11 +97497,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/medical/research)
-"dYs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/gambling_den)
"dYt" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -109226,16 +97507,6 @@
icon_state = "wood"
},
/area/maintenance/gambling_den)
-"dYv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/maintenance/gambling_den)
"dYw" = (
/obj/effect/decal/warning_stripes/northwest,
/obj/effect/decal/cleanable/dirt,
@@ -109267,14 +97538,15 @@
/area/medical/research)
"dYB" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/greengrid,
/area/medical/research)
"dYC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -109314,13 +97586,13 @@
req_access_txt = "39"
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -109329,7 +97601,9 @@
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/yellow,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dYH" = (
/obj/item/twohanded/required/kirbyplants,
@@ -109338,7 +97612,9 @@
},
/obj/effect/decal/warning_stripes/yellow,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dYI" = (
/obj/structure/cable{
@@ -109471,8 +97747,7 @@
"dYR" = (
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109481,8 +97756,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/space,
@@ -109495,8 +97769,7 @@
/obj/item/storage/fancy/crayons,
/obj/machinery/camera{
c_tag = "Chaplain's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/requests_console{
department = "Chapel";
@@ -109516,37 +97789,6 @@
icon_state = "dark"
},
/area/crew_quarters/chief)
-"dYW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
- },
-/area/security/warden)
"dZi" = (
/obj/docking_port/stationary{
dir = 4;
@@ -109575,29 +97817,27 @@
dir = 8;
icon_state = "redcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZP" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZR" = (
/obj/machinery/optable,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -109606,7 +97846,7 @@
dir = 1;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -109614,16 +97854,14 @@
dir = 1;
icon_state = "redcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZU" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZV" = (
/obj/docking_port/stationary{
dir = 8;
@@ -109639,25 +97877,412 @@
/obj/machinery/blackbox_recorder,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"eha" = (
+/obj/machinery/iv_drip,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/closet/crate/freezer/iv_storage,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"ejA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"ekR" = (
+/obj/structure/table,
+/obj/item/pen,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"emr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"eqc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"eqY" = (
+/obj/structure/closet/firecloset,
+/obj/item/crowbar/red,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"esa" = (
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Security Holding Room";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"esj" = (
+/obj/effect/decal/warning_stripes/northwest,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"eud" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"ewF" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
+"exL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
+ },
+/area/hallway/primary/central)
+"ezR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"eCs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"eDh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/shield/riot,
+/obj/item/shield/riot,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"eLI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"eNm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
+ },
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"eNt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"eNI" = (
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"ePS" = (
+/obj/structure/lattice,
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"eQg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/biogenerator,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"eQh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/theatre)
+"eSe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"eSX" = (
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"eWX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
"eYL" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"fBl" = (
+"faB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"fcg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"fdI" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"feV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/chili,
+/obj/item/seeds/chili,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"fhF" = (
+/turf/space,
+/area/shuttle/gamma/station)
+"fjJ" = (
+/obj/machinery/camera{
+ c_tag = "Security Armory";
+ dir = 1;
+ network = list("SS13","Security")
+ },
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"fou" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/security/detectives_office)
+"fox" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
+/obj/machinery/recharger,
+/obj/structure/table/reinforced,
+/obj/machinery/door_control{
+ id = "Secure Armory";
+ name = "Secure Armory Shutter Control";
+ pixel_x = 7;
+ pixel_y = -28;
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/northeast,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"frI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"fzQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"fBl" = (
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -109665,12 +98290,322 @@
icon_state = "dark"
},
/area/tcommsat/chamber)
+"fDE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"fEr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/north,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"fEF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/obj/item/grenade/barrier,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"fFd" = (
+/obj/structure/chair/stool,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"fGG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "solar_xeno_airlock";
+ name = "exterior access button";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_access_txt = "13"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
+"fHe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 3;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
+ },
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"fJA" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/cigarettes/cigpack_uplift,
+/obj/item/storage/fancy/cigarettes/cigpack_carp,
+/obj/item/lighter/zippo,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"fPC" = (
+/obj/structure/table/reinforced,
+/obj/item/flash,
+/obj/item/restraints/handcuffs,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"fTZ" = (
+/turf/simulated/wall/rust,
+/area/security/detectives_office)
+"fUG" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"fVZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"gcN" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"ggp" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"glQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"glX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/processing)
+"goP" = (
+/turf/simulated/wall,
+/area/security/processing)
+"gpX" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"gwn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/rack,
+/obj/item/gun/energy/gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"gwZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"gxd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"gxJ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
"gyp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/north,
/obj/machinery/light,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
+"gyY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Corporate Lounge";
+ req_one_access_txt = "19"
+ },
+/turf/simulated/floor/carpet,
+/area/assembly/showroom)
+"gBV" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"gDv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door_timer/cell_1{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"gGu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard2)
+"gGJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
"gHn" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 4;
@@ -109678,17 +98613,13 @@
id_tag = "sol_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sol_sensor";
pixel_x = 12;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sol_airlock";
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "sol_pump";
tag_chamber_sensor = "sol_sensor";
tag_exterior_door = "sol_outer";
@@ -109696,17 +98627,199 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
-"gYw" = (
+"gJk" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "arrival"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/hallway/secondary/entry)
+/area/hallway/primary/starboard)
+"gKi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"gSt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"gTw" = (
+/obj/structure/table/wood,
+/obj/item/folder/white,
+/obj/item/folder/red,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"gTW" = (
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"haD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Officer Equipment Storage";
+ network = list("SS13","Security")
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"hch" = (
+/obj/structure/chair/stool,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"hcQ" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"hcU" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"hdV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Solitary";
+ network = list("SS13","Security")
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"hfN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"hjo" = (
+/obj/structure/closet/crate,
+/obj/effect/landmark/costume/random,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"hmC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluecorner"
+ },
+/area/medical/medbay)
"hng" = (
/obj/machinery/message_server,
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"hos" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"hzb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
"hDZ" = (
/obj/docking_port/stationary{
dir = 8;
@@ -109725,23 +98838,981 @@
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
+"hHM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"hLZ" = (
+/obj/structure/table/glass,
+/obj/item/hemostat{
+ pixel_x = 6
+ },
+/obj/item/retractor{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stack/medical/bruise_pack/advanced,
+/obj/item/reagent_containers/iv_bag/salglu,
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery West";
+ dir = 1;
+ network = list("Medical","SS13")
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"hOL" = (
+/turf/simulated/floor/carpet,
+/area/magistrateoffice)
+"hTk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/gun/advtaser,
+/obj/item/gun/energy/gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"hTr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"hTV" = (
+/turf/simulated/wall,
+/area/magistrateoffice)
+"hTW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery East Storage";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"hZF" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"ibc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"ibR" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"idq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"ifj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"iiM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/piano,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"ipD" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"isz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/vending/sustenance,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iwQ" = (
+/obj/machinery/light_switch{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"ixB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "brown"
+ },
+/area/quartermaster/storage)
+"ixV" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"iBK" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"iDa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door_control{
+ id = "magistrate";
+ name = "Privacy Shutters Control";
+ pixel_y = 25
+ },
+/obj/structure/table/wood,
+/obj/machinery/computer/secure_data/laptop,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"iFx" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/item/radio/intercom{
+ pixel_x = -26;
+ pixel_y = -12
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"iKj" = (
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -5
+ },
+/obj/machinery/holosign_switch{
+ id = "surgery2";
+ pixel_x = -23;
+ pixel_y = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"iLL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing";
+ req_access_txt = "2"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iMM" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"iTV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/northwestcorner,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"iUc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"iVO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"iVV" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "Secure Armory";
+ name = "Secure Armory Shutters"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"iXX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
+"jav" = (
+/obj/machinery/door/airlock{
+ name = "Magistrate's Office";
+ req_access_txt = "74"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"jgO" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"jkP" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "yellowcorner"
+ },
+/area/engine/break_room)
+"jkU" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"jqB" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"jsV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"jAm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "Brig";
+ name = "Prisoner Processing";
+ req_access_txt = "63"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/processing)
+"jCt" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/warden)
+"jCU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plasteel{
+ icon_state = "cult"
+ },
+/area/magistrateoffice)
+"jHa" = (
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness)
+"jIs" = (
+/turf/simulated/wall/r_wall,
+/area/security/evidence)
+"jIV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"jQY" = (
+/turf/simulated/wall/r_wall,
+/area/security/seceqstorage)
+"jUC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"jUH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"jYK" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"khY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard2)
+"kii" = (
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"kiL" = (
+/obj/structure/rack,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/ammo_box/shotgun/rubbershot,
+/obj/item/ammo_box/shotgun/buck,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/buck,
+/obj/item/storage/box/buck,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"kju" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"kkM" = (
+/obj/vehicle/secway,
+/obj/item/key/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"klk" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/twohanded/required/kirbyplants,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"knI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"koC" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/detectives_office)
"kpH" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sol_inner";
locked = 1;
- name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "Arrivals External Access"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
-"lVO" = (
+"kxq" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"kyq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/prisonershuttle)
+"kzg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/warden)
+"kCi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"kGF" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Secure Armory";
+ req_access_txt = "3"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"kOC" = (
+/obj/structure/table,
+/obj/item/storage/fancy/crayons,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/clipboard,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"kSX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"kTO" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"kVM" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"kYe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"kYo" = (
+/obj/machinery/power/solar{
+ name = "Aft Starboard Solar Panel"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/maintenance/auxsolarstarboard)
+"ljZ" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"llI" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"lmR" = (
+/obj/machinery/vending/security,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"loP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"lso" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"ltg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"ltY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
+"luc" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"lzY" = (
+/obj/structure/table/wood,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/clothing/gloves/color/black,
+/obj/item/taperecorder,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/detectives_office)
+"lAG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigEast";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/brig)
+"lBR" = (
+/turf/simulated/wall,
+/area/hallway/primary/starboard)
+"lEr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/vending/security,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"lEt" = (
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"lEL" = (
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"lFi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"lIv" = (
+/obj/machinery/suit_storage_unit/clown,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ai_monitored/storage/eva)
+"lIX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
+"lJT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"lVO" = (
/obj/machinery/turretid/lethal{
control_area = "\improper Telecoms Central Compartment";
name = "Telecommunications Turret Control";
@@ -109751,28 +99822,1004 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
+"lZw" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"meB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"meU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"mft" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"mfI" = (
+/obj/machinery/light,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mhu" = (
+/turf/simulated/wall/r_wall,
+/area/security/permasolitary)
+"miL" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mko" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"mkp" = (
+/obj/structure/lattice,
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"mlJ" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"mmw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"mmJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"moa" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"moy" = (
+/obj/machinery/door/airlock/hatch/gamma{
+ locked = 1;
+ req_access_txt = "1";
+ use_power = 0
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"mqS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/item/storage/box/chemimp,
+/obj/item/storage/box/trackimp,
+/obj/item/storage/lockbox/mindshield,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"mtL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"mtR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"muI" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
+"muK" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"myN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/heads/hos)
+"mzg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"mzQ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurplecorner"
+ },
+/area/medical/research)
+"mDm" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"mEk" = (
+/obj/effect/decal/warning_stripes/east,
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"mEG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"mGO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"mHf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"mHP" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Security Junction";
+ sortType = 13
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"mKe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"mOF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry)
+"mQk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"mTx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/flasher_button{
+ id = "Cell 3";
+ pixel_y = 25
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "cell3lockdown";
+ name = "Cell Lockdown";
+ pixel_y = 32;
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
"mWj" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sol_outer";
locked = 1;
- name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ name = "Arrivals External Access"
},
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "exterior access button";
pixel_x = -13;
- pixel_y = -23;
- req_access_txt = "0"
+ pixel_y = -23
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"nbE" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/ambrosia,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"ncZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"nfo" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"ngg" = (
+/turf/simulated/wall/r_wall,
+/area/security/securearmoury)
+"ngm" = (
+/obj/item/clothing/gloves/botanic_leather,
+/obj/item/reagent_containers/spray/pestspray,
+/obj/item/reagent_containers/spray/pestspray,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"nit" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/warden)
+"njE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/washing_machine,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig General Population East";
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "barber"
+ },
+/area/security/permabrig)
+"nkh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/processing)
+"nli" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
+ },
+/turf/simulated/wall,
+/area/security/permabrig)
+"nom" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/computer/security{
+ network = list("SS13","Mining Outpost")
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/warden)
+"npj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/orange,
+/obj/item/seeds/orange,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"nvc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"nCz" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"nDV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"nFL" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/smartfridge/drying_rack,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"nFN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
+"nGL" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"nHs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/permabrig)
+"nJr" = (
+/obj/structure/table/reinforced,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/machinery/recharger,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"nPe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"nQq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atm{
+ pixel_x = 32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
+"nQJ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"nRf" = (
+/obj/machinery/optable,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/surgery1)
+"nYz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"obL" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/processing)
+"obN" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"odY" = (
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solars"
+ },
+/obj/machinery/atmospherics/unary/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/warning_stripes/northeast,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"oei" = (
+/obj/machinery/computer/secure_data,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/main)
+"ofZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig General Population West";
+ dir = 4;
+ network = list("SS13","Security")
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"ohh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"ojw" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"osS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore2)
+"oBE" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/vending_refill/coffee,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"oDD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"oEG" = (
+/turf/simulated/floor/plating,
+/area/space/nearstation)
+"oHY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"oSH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/processing)
+"oTo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard)
+"oVe" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"oXm" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"pcv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"pfp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atm{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"pgF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "BrigWest";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"phv" = (
+/obj/structure/rack,
+/obj/item/storage/briefcase,
+/obj/item/storage/secure/briefcase,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"phF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"ppj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"pvv" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/camera{
+ c_tag = "Security Equipment Storage";
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/seceqstorage)
+"pBz" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/suit/browntrenchcoat,
+/obj/item/clothing/suit/browntrenchcoat,
+/obj/item/clothing/head/fedora,
+/obj/item/clothing/head/fedora,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"pOB" = (
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"pPC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"pRg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door_control{
+ id = "Secure Gate";
+ name = "Brig Lockdown";
+ pixel_x = 3;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ desc = "A remote control-switch to lock down the prison wing's blast doors";
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -7;
+ pixel_y = -28;
+ req_access_txt = "2"
+ },
+/obj/machinery/door_control{
+ id = "Secure Armory";
+ name = "Secure Armory Shutter Control";
+ pixel_x = -2;
+ pixel_y = -36;
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"pSA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/seceqstorage)
+"pUv" = (
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/starboard)
+"pWQ" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"pXX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera{
+ c_tag = "Perma-Brig Solitary";
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"pZf" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/permasolitary)
"qcA" = (
/obj/docking_port/stationary{
dwidth = 4;
@@ -109783,9 +100830,73 @@
},
/turf/space,
/area/space)
+"qeU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qgr" = (
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery1)
+"qli" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qmW" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"qqW" = (
+/obj/structure/table,
+/obj/machinery/kitchen_machine/microwave,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
"qrT" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/chamber)
+"qzr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
"qHs" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10;
@@ -109794,61 +100905,1823 @@
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "arrival"
},
/area/hallway/secondary/entry)
+"qJC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"qRT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ id_tag = "solar_xeno_outer";
+ locked = 1;
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"qVp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/clipboard,
+/obj/item/toy/figure/crew/warden,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"qXF" = (
+/obj/machinery/alarm{
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"qYC" = (
+/obj/machinery/flasher/portable,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"qZt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
+"qZI" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"raK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"rbw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/security/permabrig)
+"reo" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/seeds/carrot,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"reH" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Security Hallway North";
+ dir = 8;
+ network = list("SS13","Security")
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"rje" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"rjr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"rkB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"rnO" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/simulated/floor/plasteel/airless{
+ icon_state = "solarpanel"
+ },
+/area/maintenance/starboardsolar)
+"rsF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "darkblue"
+ },
+/area/medical/surgery2)
+"rDp" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"rNi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"rOn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/hallway/primary/starboard)
+"rOH" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/prisonershuttle)
+"rSe" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
"rSI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
+"rTc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/theatre)
+"rTE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"rTL" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"rZK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"shi" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 1
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"shS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "darkblue"
+ },
+/area/ai_monitored/storage/eva)
"siv" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
-"vzz" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+"soN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/operating,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "darkblue"
},
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/chamber)
-"vDg" = (
+/area/medical/surgery2)
+"spP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"ssp" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"swV" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/glowshroom,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"sAW" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery1)
+"sCu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/processing)
+"sEN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"sPS" = (
+/obj/structure/cable,
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Aft Starboard Solar Control"
},
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
- pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"sTz" = (
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"sWi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/evidence)
+"sYo" = (
+/obj/machinery/camera{
+ c_tag = "Brig Cell 4"
+ },
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 4";
+ name = "Cell 4 Locker"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"sYQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/security/detectives_office)
+"sZT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"tah" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"tdA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/seceqstorage)
+"tge" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/obj/item/seeds/tower,
+/obj/item/seeds/amanita,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"tgs" = (
+/obj/structure/chair/office/dark,
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/security/detectives_office)
+"tgE" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/starboard)
+"tiS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
+"tks" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/security/detectives_office)
+"tmo" = (
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"tpo" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"tsN" = (
+/obj/structure/chair/comfy/purp{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
+"tvq" = (
+/obj/structure/table,
+/obj/item/toy/figure/crew/syndie,
+/obj/item/paper_bin,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"tFw" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/processing)
+"tFK" = (
+/obj/item/soap/nanotrasen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"tFO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Warden's Office";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"tHf" = (
+/obj/structure/table/wood,
+/obj/item/lipstick/random,
+/obj/item/lipstick/random,
+/obj/item/lipstick/random,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"tJH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/security/brig)
+"tNO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/warden)
+"tOM" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Solitary Confinement";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"tQg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"tRM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "red"
+ },
+/area/security/brig)
+"tSS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/theatre)
+"tVa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"tVO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/range)
+"uiw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door_timer/cell_3{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"ujH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"ukv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/security/range)
+"ukK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/central)
+"ulE" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/window/reinforced,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"uod" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"uoV" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/processing)
+"upW" = (
+/obj/structure/rack,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/flashbangs,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 28
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/warden)
+"usl" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching interrogations.";
+ name = "Interrogation Monitor";
+ network = list("Interrogation");
+ pixel_y = 30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"uAP" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/decal/warning_stripes/south,
+/turf/simulated/floor/plating,
+/area/maintenance/starboardsolar)
+"uCE" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/security/permasolitary)
+"uJk" = (
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"uQK" = (
+/obj/machinery/bodyscanner,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"uSJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/main)
+"uUu" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/seeds/ambrosia,
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"uVQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/crew_quarters/theatre)
+"uYc" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 Locker"
+ },
+/obj/machinery/camera{
+ c_tag = "Brig Cell 2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"uYW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"vbN" = (
+/obj/machinery/camera{
+ c_tag = "Exterior Armory";
+ dir = 4;
+ network = list("Security","SS13");
pixel_y = -22
},
+/turf/space,
+/area/security/securearmoury)
+"vbZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer/iv_storage,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery2)
+"vce" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 25
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 35
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"vhT" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching interrogations.";
+ name = "Interrogation Monitor";
+ network = list("Interrogation");
+ pixel_y = -30
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"vif" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"vmw" = (
+/obj/structure/fans/tiny,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/door/airlock/external{
+ id_tag = "laborcamp_home";
+ locked = 1;
+ name = "Labor Camp Airlock";
+ req_access_txt = "2"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/prisonershuttle)
+"vnm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plasteel{
+ dir = 10;
+ icon_state = "red"
+ },
+/area/security/prisonershuttle)
+"voo" = (
+/obj/structure/table,
+/obj/item/clothing/shoes/orange,
+/obj/item/clothing/under/color/orange/prison,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"vrB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre Storage";
+ req_access_txt = "45"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"vsy" = (
+/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permasolitary)
+"vvQ" = (
+/obj/machinery/door_timer/cell_4{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
+"vzz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"vCk" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/warden)
+"vDg" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -24
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/tcommsat/chamber)
+"vEh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"vEw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"vFf" = (
+/obj/structure/table/wood,
+/obj/item/crowbar/red,
+/obj/item/book/manual/security_space_law,
+/obj/item/book/manual/detective,
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30
+ },
+/turf/simulated/floor/wood{
+ broken = 1;
+ icon_state = "wood-broken"
+ },
+/area/security/detectives_office)
+"vGw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/warden)
+"vJK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"vLN" = (
+/obj/structure/table/wood,
+/obj/item/instrument/violin,
+/turf/simulated/floor/plating,
+/area/crew_quarters/theatre)
+"vMI" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/maintenance/starboard)
+"vOc" = (
+/obj/structure/table,
+/obj/item/taperecorder,
+/obj/item/restraints/handcuffs,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "red"
+ },
+/area/security/processing)
+"vXX" = (
+/turf/space,
+/area/space/nearstation)
+"wdH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ icon_state = "open";
+ id_tag = "magistrate";
+ name = "Magistrate Privacy Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/magistrateoffice)
+"weF" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/seceqstorage)
+"wgn" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"wmQ" = (
+/obj/item/radio/intercom{
+ pixel_y = 28
+ },
+/obj/machinery/suit_storage_unit/security,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"wpr" = (
+/obj/structure/table,
+/obj/item/storage/box/evidence,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "red"
+ },
+/area/security/processing)
+"wtK" = (
+/obj/structure/lattice,
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/turf/space,
+/area/space/nearstation)
"wvH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
+"wAE" = (
+/obj/structure/dresser,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"wAP" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
+/turf/simulated/floor/plasteel,
+/area/engine/controlroom)
+"wIT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/rack,
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/projectile/shotgun/riot,
+/obj/item/gun/projectile/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"wMd" = (
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
+ },
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"wVr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Prison Lockdown Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/security/permasolitary)
+"wVz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"wWy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"wXI" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"xbS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"xda" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cultivator,
+/obj/item/reagent_containers/glass/bottle/nutrient/ez,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/security/permabrig)
+"xgm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/chair/office/dark,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_North";
+ location = "Armory_South"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"xgR" = (
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/surgery2)
+"xlS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/turf/simulated/floor/plasteel,
+/area/security/detectives_office)
+"xom" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Armory_South";
+ location = "Armory_North"
+ },
+/mob/living/simple_animal/bot/secbot/armsky{
+ auto_patrol = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/security/securearmoury)
+"xqH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"xuC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/security/warden)
+"xwk" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"xDn" = (
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/wall,
+/area/security/permabrig)
+"xGi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/warden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "red"
+ },
+/area/security/warden)
+"xHj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/medical/surgery1)
+"xIo" = (
+/obj/structure/bed,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -28
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"xKG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/auxsolarstarboard)
+"xKN" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cmo"
+ },
+/area/medical/medbay2)
+"xKW" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/surgery2)
+"xLe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/starboard)
+"xQW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"xUI" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/handcuffs,
+/obj/item/storage/box/flashbangs,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "vault"
+ },
+/area/security/securearmoury)
+"xWD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"xXw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/interrogation)
+"yds" = (
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Secure Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/simulated/floor/plating,
+/area/security/brig)
+"yez" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"ygp" = (
+/obj/structure/bed,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permasolitary)
+"ygv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room)
+"ygH" = (
+/turf/simulated/wall/r_wall,
+/area/security/permabrig)
+"yiO" = (
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
+"ykx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/security/warden)
(1,1,1) = {"
aaa
@@ -115879,17 +108752,17 @@ aaa
aaa
abj
bkt
-bJO
-bzu
+bpn
+brp
bRu
-bzu
+brp
bRr
-bRr
-bLT
-bzu
-bzu
-bzu
-bJX
+blv
+blO
+brp
+brp
+brp
+cpb
brs
abi
aaa
@@ -116136,7 +109009,7 @@ abi
abi
abi
bku
-bJP
+bpo
bLM
bms
bPC
@@ -116146,7 +109019,7 @@ bVH
brq
bms
bnR
-bJP
+bpo
brr
abj
aaa
@@ -116393,17 +109266,17 @@ bpm
bmo
bpm
bnM
-bJP
+bpo
brr
bNM
bNM
bNM
bTt
-bVI
+bNM
bNM
bNM
bkt
-bJP
+bpo
brs
abi
aaa
@@ -116643,13 +109516,13 @@ brp
brp
brp
bwM
-bxW
-bzu
-bzu
-bzu
-bzu
-bzu
-bzu
+brp
+brp
+brp
+brp
+brp
+brp
+brp
bJQ
brs
bNM
@@ -116660,7 +109533,7 @@ bVJ
ccx
bNM
bkt
-bJP
+bpo
brr
abi
abi
@@ -116913,11 +109786,11 @@ bNM
bPH
bSr
bTv
-bVK
+bXI
cgI
bNM
bkt
-bJP
+bpo
bLS
bmo
bpm
@@ -117174,10 +110047,10 @@ bVL
chu
bNM
bku
-bJY
-bzu
-bzu
-chS
+boe
+brp
+brp
+brp
brp
brp
cpb
@@ -117426,8 +110299,8 @@ btd
bNM
bPP
bUD
-bTx
-bVM
+bTL
+bXI
chE
bNM
aaa
@@ -117683,7 +110556,7 @@ btd
bNM
bPQ
bXm
-bTy
+bTI
bVN
cmx
bNM
@@ -117929,19 +110802,19 @@ btd
btd
bwG
bxY
-bzx
+byg
bBd
bCU
bBd
bBf
-bIg
+bxY
bBf
bwG
bNM
bNM
bNM
bTz
-bVI
+bNM
bNM
bNM
qrT
@@ -118187,17 +111060,17 @@ bvz
bwH
bxZ
bzy
-bBe
+bIh
bCV
-bBe
-bBe
+bIh
+bIh
bIh
bJS
-bLN
+bLQ
bNN
bPI
-bRy
-bTA
+bVO
+bTG
bVO
bPI
bNM
@@ -118435,37 +111308,37 @@ aaa
abi
bkt
bmp
-bnN
-bpp
-brt
-btc
-btc
-btc
-bwI
-bya
+cqK
+bpq
+brr
+btd
+btd
+btd
+bBf
+bye
bzz
bBf
bBf
bED
bBf
-bBf
+bgN
bJT
bLO
bNM
bPJ
bRz
bTB
-bVP
+bVS
bXH
bNM
caV
+caW
ccU
-ceM
ccU
-chV
-cjD
-cnV
-cpc
+chX
+qrT
+bku
+bmq
cqK
csk
brr
@@ -118700,25 +111573,25 @@ btd
bvA
bwJ
byb
-bzz
+bBf
btd
bCW
btd
btd
bIi
-bJT
+bhV
bNL
-bNO
+bNM
bSo
-bRA
-bTC
-bVQ
+bVS
+bTE
+bVS
bXI
-bNO
-caW
-caW
-ceN
+bNM
+ccU
caW
+ceP
+ccU
fBl
qrT
bkt
@@ -118948,7 +111821,7 @@ aaa
aaa
abj
bkt
-bmq
+bav
bnP
bvv
bRG
@@ -118957,14 +111830,14 @@ btd
bwF
bwK
byc
-bLP
+bwJ
bBg
bCX
bEE
btd
bIj
bJU
-bCU
+biX
bNP
bPL
bRB
@@ -118973,15 +111846,15 @@ bVR
bXJ
bZh
caX
-ccW
+boh
cgu
ccW
chW
qrT
cKl
-bmq
+bav
bnP
-bpq
+btk
brr
abj
aaa
@@ -119205,40 +112078,40 @@ aaa
aaa
abi
bku
-bmq
-bnO
-bpq
+baE
+bcA
+bdZ
brs
btd
btd
bvC
bwJ
byd
-bzz
+bBf
btd
bCY
btd
btd
bIk
bJV
-bwL
-bNQ
-bPM
-bRC
+bBf
+bNM
+bXI
+bVS
bTE
bVS
lVO
-bNQ
+bNM
caY
ccX
ceP
-ccX
+ccU
vDg
qrT
bkt
-bmq
-cqL
-bpq
+brT
+bsb
+btx
brs
abi
aaa
@@ -119463,36 +112336,36 @@ aaa
abi
bkt
bmr
-bnQ
+cqM
bps
-brv
-bte
-bte
-bte
-bwL
+brr
+btd
+btd
+btd
+bBf
bye
bzA
-bwL
-bwL
+bBf
+bBf
bEF
-bwL
+bBf
bIl
-bJT
+bip
bBf
bNM
bPJ
bRD
bTF
-bVP
+bVS
bXK
bNM
caV
+ccX
ccU
-ceQ
ccU
chX
-cjF
-cnX
+qrT
+bku
cpd
cqM
csl
@@ -119721,7 +112594,7 @@ abi
aaa
bms
bnR
-bpo
+bJP
brs
aaa
btd
@@ -119729,28 +112602,28 @@ bvz
bwH
byf
bzB
-bBh
+bIm
bCZ
-bBh
-bBh
+bIm
+bIm
bIm
bJW
bLQ
bNR
bPI
-bRE
+bVT
bTG
bVT
bXL
bNM
qrT
-rSI
+bon
vzz
hng
qrT
qrT
bkt
-bpo
+bJP
bLM
bpu
aaa
@@ -119978,14 +112851,14 @@ abi
abi
abi
bku
-bpo
+bJP
brr
abj
btd
btd
bwG
byg
-bzC
+bIn
bBd
bCU
bBd
@@ -119995,9 +112868,9 @@ bBf
bwG
bNM
bNM
-bRF
+bNM
bTH
-bVI
+bNM
bNM
bNM
qrT
@@ -120007,7 +112880,7 @@ qrT
qrT
qrT
bkt
-bpo
+bJP
brr
abi
abi
@@ -120235,7 +113108,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brs
aaa
btd
@@ -120264,7 +113137,7 @@ qrT
qrT
abj
bku
-bpo
+bJP
brs
abi
aaa
@@ -120492,7 +113365,7 @@ aaa
aaa
abj
bkt
-bpo
+bJP
brs
abj
abj
@@ -120509,9 +113382,9 @@ bzv
btd
bNM
bQC
-bRH
-bTJ
-bVK
+bXI
+bTL
+bXI
bXM
bNM
aaa
@@ -120521,7 +113394,7 @@ bmo
bpm
bmo
cnY
-bpo
+bJP
brr
abi
aaa
@@ -120749,7 +113622,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brr
alW
abj
@@ -120766,18 +113639,18 @@ btd
btd
bNM
bQD
-bRH
+bjE
bTK
-bVM
+bXI
bXN
bNM
bku
bJO
-bzu
-bzu
chS
-brp
-brp
+chS
+chS
+chS
+chS
cpe
brs
abj
@@ -121006,7 +113879,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brw
bpm
bmo
@@ -121023,9 +113896,9 @@ bmo
aaa
bNM
bRt
-bRI
+bXI
bTL
-bVM
+bXI
bXO
bNM
bkt
@@ -121263,26 +114136,26 @@ aaa
aaa
abi
bku
-bpt
-brp
-brp
-brp
-brp
+bJY
+chS
+chS
+chS
+chS
bxM
-bxW
-bzu
-bzu
-bzu
-bzu
-bzu
-bzu
+chS
+chS
+chS
+chS
+chS
+chS
+chS
bJX
brs
bNM
bPN
-bRE
-bTG
bVT
+blG
+bmS
bXP
bNM
bkt
@@ -121537,9 +114410,9 @@ bJP
bLR
bNM
bNM
-bRF
+bNM
bTM
-bVI
+bNM
bNM
bNM
bku
@@ -122050,14 +114923,14 @@ bkt
bJY
bLT
bRv
-bzu
-bRK
+chS
+bVW
bTO
bVW
-bzu
-bzu
-bzu
-bJQ
+chS
+chS
+chS
+cpe
brs
abj
abj
@@ -122308,8 +115181,8 @@ bnR
bLU
bLM
bPC
-bRL
-bTP
+bmq
+bTS
bpq
brq
bms
@@ -122567,7 +115440,7 @@ brr
bku
bRL
bTQ
-bpq
+bmY
brr
abi
abi
@@ -122822,7 +115695,7 @@ aaa
bUJ
aaa
bku
-bRL
+bmq
bTR
bpq
brr
@@ -123079,7 +115952,7 @@ aaa
bUJ
aaa
bku
-bRL
+bmq
bTS
bpq
brr
@@ -129531,15 +122404,15 @@ bXU
bXU
abj
cPY
-bYh
-bYh
+cHA
+cHA
cJK
-bYh
-bYh
-bYh
+cHA
+cHA
+cHA
cJK
-bYh
-bYh
+cHA
+cHA
cCx
cJK
cCx
@@ -129704,9 +122577,9 @@ aaa
abi
abj
apF
-asU
-asU
-asU
+aEc
+aEc
+aEc
atc
atZ
atZ
@@ -129786,13 +122659,13 @@ cie
cie
cie
bXU
-cEz
+dmq
cGw
-bYh
+cHA
cjV
cJP
cLC
-bYh
+cHA
cQs
cRD
cTi
@@ -130043,16 +122916,16 @@ aaa
abj
cbb
bXU
-cEz
+dmq
cFN
-bYh
+cHA
cJL
-cJQ
-cMT
-bYh
+cWl
+cYb
+cHA
cQv
-cQt
-cbC
+drn
+drn
cTg
cUQ
cWl
@@ -130265,11 +123138,11 @@ abj
abi
abj
bwN
-bzF
-bBk
bzE
-bEH
-bGr
+bzE
+bzE
+bzE
+bzE
bwN
abj
abj
@@ -130302,19 +123175,19 @@ cbb
cDx
bXU
cIu
-bYh
-bYh
+cHA
+cHA
cjX
cLz
-bYh
-bYh
+cHA
+cHA
cjX
-bYh
-bYh
-bYh
+cHA
+cHA
+cHA
cjX
-bYh
-bYh
+cHA
+cHA
abj
aaa
aaa
@@ -130541,7 +123414,7 @@ cbb
cxG
abj
czw
-cjH
+cwt
clp
cuO
clp
@@ -130551,7 +123424,7 @@ clp
clp
cuO
clp
-dQE
+cwv
czw
abj
cCg
@@ -130561,17 +123434,17 @@ bXU
cFP
cHe
cIv
-cJN
+dhG
cLA
cMS
cLA
cQu
cLA
cLA
-cEG
+drn
cWm
cXT
-bYh
+cHA
abj
aaa
aaa
@@ -130781,8 +123654,8 @@ abj
bwN
bzH
bBo
-bBo
-bBo
+bfO
+bge
bGu
bwN
abj
@@ -130815,19 +123688,19 @@ cCg
cDt
dCx
bXU
-cFQ
-cHf
-cdu
+cWn
+dhG
+bLN
cJO
-cfm
-cfm
-cfm
-cbC
-cEF
+cNh
+cNh
+cNh
+drn
+drs
cJO
-cfm
-cHf
-cdt
+cNh
+dhG
+dhG
cJK
abj
aaa
@@ -131042,10 +123915,10 @@ bDf
bEI
bGv
bwN
-bwP
+byl
bPD
-bRw
-bwP
+byl
+byl
abj
csy
bWd
@@ -131072,8 +123945,8 @@ cCg
cbb
cDv
bXU
-cbC
-cHg
+drn
+drn
cIw
cIx
cIx
@@ -131084,8 +123957,8 @@ cIx
cIx
cIx
cWn
-cFR
-bYh
+dtU
+cHA
abj
abj
aaa
@@ -131302,7 +124175,7 @@ bwN
bJZ
bPE
bVt
-bwP
+byl
bZf
ctI
ctJ
@@ -131329,8 +124202,8 @@ cCg
cDu
dUG
bXU
-cbC
-cHh
+drn
+cXU
cIx
cKt
cMU
@@ -131342,7 +124215,7 @@ deZ
cIx
cWo
cXU
-bYh
+cHA
abj
abj
abj
@@ -131558,8 +124431,8 @@ bGx
bwN
byl
bPF
-bVz
-bwP
+byl
+byl
bRT
bUc
bWf
@@ -131586,8 +124459,8 @@ cbb
cDv
bXU
bXU
-cFQ
-cHh
+cWn
+cXU
cIy
cLx
cOx
@@ -131598,8 +124471,8 @@ cOx
dfd
cIx
cWn
-cXV
-bYh
+dsr
+cHA
aMW
dbz
aMW
@@ -131780,9 +124653,9 @@ abj
aGY
aGY
aLr
-aLa
-aMz
-aNX
+aGY
+aGZ
+aNV
aPq
aQN
aGZ
@@ -131805,18 +124678,18 @@ bpv
bpv
aSN
abj
+bzL
bwN
-bwN
-bwN
-bBq
+bzL
+bEL
bDi
bEL
-bwN
+bzL
bwN
bKa
bMd
bNW
-bSf
+bUP
bNX
bUd
bWg
@@ -131845,7 +124718,7 @@ bXU
cEA
cFR
cFO
-cJM
+bLP
cJR
cLD
cMV
@@ -132062,7 +124935,7 @@ bry
btf
aSN
acF
-bwN
+bzL
byi
bzL
bBt
@@ -132072,7 +124945,7 @@ bGy
bLX
bKb
bMe
-bNX
+bRU
bQe
bRU
bUe
@@ -132112,19 +124985,19 @@ cLE
cID
cUR
cWq
-cXW
+drn
cLz
aUp
-dfQ
-dam
-dez
-dkq
-dfL
-dfL
-dfL
-dYs
-ddd
-dYv
+dnH
+dcX
+aUp
+dYu
+aRm
+aRm
+aRm
+dYt
+dnH
+dnH
dcX
dkr
dbz
@@ -132326,7 +125199,7 @@ bPK
bDk
bEO
bIp
-bwT
+byl
bKc
bMf
bNY
@@ -132372,8 +125245,8 @@ cWr
cXX
cLz
dbG
-dbB
-dcN
+aUp
+aRm
aSP
aUp
dhw
@@ -132576,21 +125449,21 @@ aSM
bbF
aSM
acF
-bwN
+bzL
byk
bzL
bDe
bDl
bGt
-bGz
-bGz
-bGz
-bGz
-bGz
-bGz
-bGz
-bGz
-bGz
+bgJ
+bgJ
+bgJ
+bgJ
+bgJ
+bgJ
+bgJ
+bgJ
+bgJ
bXU
bZl
cbb
@@ -132615,7 +125488,7 @@ cbb
cDv
bXU
cFU
-cHh
+cXU
cIx
cIx
cLG
@@ -132626,10 +125499,10 @@ cLG
cIx
cIx
cWs
-cKe
+dlM
cLz
dag
-dbC
+dcX
dcO
deA
dfM
@@ -132811,35 +125684,35 @@ aJO
aLe
aMC
aOb
-aPu
+aOb
aOb
aOg
aOg
aOg
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aOg
baj
aOb
-aXf
+bmN
aOg
aOg
bwP
byl
byl
-bBu
+byl
bEJ
byl
-bGz
+bgJ
bIq
bKd
bMg
@@ -132871,8 +125744,8 @@ cCg
cDt
dUI
bXU
-czD
-cHh
+cWw
+cXU
cIx
cJS
cLH
@@ -132882,9 +125755,9 @@ cOA
cRF
cTk
cIx
-ckb
+cFY
cXY
-bYh
+cHA
dah
dbD
dcP
@@ -133066,10 +125939,10 @@ aGZ
aIx
aJO
aLf
-aMD
-aOc
-aPv
-aQS
+aMC
+aOb
+aPH
+aPH
aSA
aTW
aVC
@@ -133096,13 +125969,13 @@ bzN
bBv
bDm
bET
-bGz
+bgJ
bIr
bKe
bMh
bOa
-bOa
-bOa
+bjz
+bjP
bUh
bWk
bXU
@@ -133129,7 +126002,7 @@ cbb
cDv
bXU
cFU
-cHh
+cXU
cIx
cJU
cLI
@@ -133141,10 +126014,10 @@ cLH
cIx
cWt
cXY
-bYh
+cHA
dai
dbE
-dcQ
+aRm
deC
dcX
dnH
@@ -133325,7 +126198,7 @@ aJP
aLg
aMI
aOh
-aPw
+aPH
aQT
aSB
aTX
@@ -133351,9 +126224,9 @@ bwQ
byn
bzN
bBw
-bDn
+bDp
bEQ
-bGz
+bgJ
bIs
bKf
bMi
@@ -133386,7 +126259,7 @@ cCh
dVy
bXU
cFV
-cHg
+drn
cIB
cJV
cLJ
@@ -133397,10 +126270,10 @@ cRH
cTl
cIx
cWt
-cXZ
-bYh
+dsr
+cHA
aOs
-dfT
+dfU
dcR
deD
dfN
@@ -133582,7 +126455,7 @@ aJQ
aLh
aMF
aOb
-aPw
+aPH
aQU
aSC
aTY
@@ -133602,15 +126475,15 @@ aUi
bpA
brB
aTZ
-beI
+ban
bvF
-bwR
-byo
+bwP
+bFg
bzO
bBx
bDo
bER
-bGz
+bgJ
bIt
bKf
bMj
@@ -133643,22 +126516,22 @@ cCk
bXU
bXU
cFU
-cHf
+dhG
cIC
cJW
cLJ
-cNb
-cOD
+cNe
+cdi
cQA
cRI
cJW
cIx
cWt
-cYa
-bYh
+dhG
+cHA
daj
dbE
-dcS
+dmM
deD
dfN
aUp
@@ -133839,20 +126712,20 @@ aJR
aLi
aMG
aOb
-aPw
+aPH
aQV
-aSD
-aTZ
-aVF
+aPF
+aSc
+aSI
aXj
aYz
bam
bam
bam
-beI
-aYJ
-aYJ
-aYJ
+ban
+ban
+aXW
+aYt
bkA
bmw
bnU
@@ -133867,7 +126740,7 @@ bzN
bBy
bDp
bES
-bGz
+bgJ
bIu
bKg
bMk
@@ -133898,7 +126771,7 @@ bXU
bXU
cCj
cDz
-bXU
+bQr
cFW
dWg
cHi
@@ -133908,12 +126781,12 @@ cNc
cOE
cQB
cRJ
-cOG
+cjH
cUS
cXS
-cHz
-cwC
-dak
+drn
+cHA
+aUp
dfU
dcT
deD
@@ -134079,16 +126952,16 @@ abi
abi
abj
atd
-auK
-auK
-axH
-auK
-auK
-auK
atd
-auK
-auK
-auK
+axl
+axH
+axl
+axl
+atd
+atd
+axl
+axl
+axl
axH
atd
aGZ
@@ -134124,7 +126997,7 @@ bzP
bBz
bDq
bEU
-bGz
+bgJ
bIv
bKh
bMl
@@ -134155,14 +127028,14 @@ dWi
cdd
cbi
dWb
-bXU
-cFX
-cHm
-cIA
-cJY
-cLL
-cNd
-cOD
+bQr
+cFY
+dsr
+cIx
+cJW
+cLM
+cNe
+cdy
cQC
cRK
cJW
@@ -134343,23 +127216,23 @@ ayF
ayF
aAf
aBh
-aCd
-aCd
-aCd
+aLq
+aLq
+aLq
axG
aGd
aGZ
aJU
aPs
aMK
-aOf
+aOg
aPy
aQX
aSD
-aTZ
+aUc
aVF
aXl
-aYB
+ban
ban
bbP
ban
@@ -134372,16 +127245,16 @@ bmy
bnV
bpD
brE
-btk
+ban
bus
bvI
-bwT
-byr
-bzQ
-bBu
+bwP
+byl
+byl
+byl
bDr
byl
-bGz
+bgJ
bIw
bKk
bMm
@@ -134412,14 +127285,14 @@ ceV
bXU
cCl
cDA
-bXU
+bQr
cFY
-cHn
+dlM
cIx
cJZ
cLM
cNe
-cOD
+ceM
cQD
cRL
cTm
@@ -134427,17 +127300,17 @@ cIx
cWw
cYc
cZl
-ddd
-dbH
-dcV
-deF
+dnH
+dcX
+drb
+drb
dfP
-dhx
+dra
dja
-dku
-dlJ
+aSP
+aRm
dmQ
-dow
+aRm
dcX
drf
aMW
@@ -134593,7 +127466,7 @@ abj
atd
atd
atd
-avy
+aLs
aFd
axI
aFd
@@ -134616,7 +127489,7 @@ aSF
aUb
aVH
aXm
-aYC
+beJ
bao
bbQ
bdp
@@ -134639,7 +127512,7 @@ bBA
bDs
bIx
byl
-bKi
+bIx
bKC
bIx
bGz
@@ -134653,7 +127526,7 @@ cbk
cde
ceW
cid
-cjM
+bpp
cjQ
clr
cmT
@@ -134664,28 +127537,28 @@ cDG
clr
cuU
cjM
-cid
+bzQ
cAC
cAD
cDy
cDE
-bXU
+bQr
cFY
cHo
cIx
cKa
cLN
-cNf
+cOF
cOF
cOF
cRM
cTn
cIx
dGN
-cFY
+cYc
cLz
dan
-dbI
+dcX
dcW
dcX
dcX
@@ -134867,10 +127740,10 @@ aJT
aLn
aML
aOg
-aPA
+aPH
aQZ
aSD
-aTZ
+aUc
aVI
aXn
aYD
@@ -134880,8 +127753,8 @@ bap
beK
aXq
bhk
-ban
-bkD
+biT
+bkM
bmA
aOb
bpF
@@ -134893,11 +127766,11 @@ bwP
byl
byl
bBB
-bEP
+bLW
bIy
bGA
-bKj
-bLW
+bIy
+blx
bNT
bGz
bQk
@@ -134926,8 +127799,8 @@ czk
cAE
cCm
cdh
-bXU
-cFZ
+bQr
+cGc
cHp
cIx
cKb
@@ -134938,7 +127811,7 @@ cOA
cOG
cJT
cIx
-cWn
+cFU
cYd
cLz
aOs
@@ -135110,7 +127983,7 @@ auF
avA
awJ
axJ
-aCW
+aCp
ayV
aCS
aCS
@@ -135124,13 +127997,13 @@ aJW
aLo
aMM
aOj
-aTr
+aUM
aUM
aSD
-aTZ
+aUc
aVJ
aXo
-aYE
+aXo
aOb
aOb
aOb
@@ -135149,11 +128022,11 @@ aOg
bwV
byt
bzS
-bBC
-bDt
bEV
+bDt
+bQt
bQp
-bIz
+bQt
bKl
bMo
bGz
@@ -135162,8 +128035,8 @@ bSd
bUp
bWp
cxE
-bZu
-cbm
+bZx
+cbo
cdh
ceY
cig
@@ -135181,10 +128054,10 @@ cbn
czp
czl
cAF
-cCn
-cDF
-bXU
-cGa
+cbo
+cdh
+bQr
+cWt
drs
cIx
cIx
@@ -135195,7 +128068,7 @@ cIx
cIw
cIw
cIx
-cHg
+cWw
cYe
cfn
cfn
@@ -135365,7 +128238,7 @@ atd
aub
auF
avB
-awK
+awR
axL
ayL
azT
@@ -135375,16 +128248,16 @@ ayP
aCj
aDf
aFe
-aHf
+aHh
aID
aCk
-aLq
+wAP
aMN
aOg
-aPA
+aPH
aQZ
aSD
-aTZ
+aUc
aVI
aOb
aYF
@@ -135392,9 +128265,9 @@ baq
bbR
bdq
beL
-bge
-bhm
-aYJ
+aOb
+bhk
+biT
bkF
bmC
aYK
@@ -135404,22 +128277,22 @@ aYK
buv
aOg
bwW
-byu
-bBm
-bBD
+bIA
+bIA
+bIA
bDu
bEW
-bGC
-bEW
-bKm
+bIA
+bIA
+bKp
bMp
bGz
bQm
-bSc
-bUo
-bWq
+bjT
+blH
+bnj
cxE
-bZv
+bZx
cbn
cdh
ceY
@@ -135443,7 +128316,7 @@ cDD
cEB
cGd
cHq
-cir
+cly
cKc
cLP
cNg
@@ -135451,11 +128324,11 @@ cOM
cLP
cRN
cTo
-csE
+cAS
cWx
cYf
cLP
-dao
+dro
dbK
dcY
ddI
@@ -135467,7 +128340,7 @@ cZt
dmV
dpT
dpW
-dhJ
+dso
dsn
dtM
duQ
@@ -135625,14 +128498,14 @@ avC
awL
axM
ayM
-azX
-azX
-azX
-ayM
+aAd
+aAd
+aEk
+aEV
aCj
aEf
aFf
-aHg
+aHl
aIE
atd
aLp
@@ -135640,19 +128513,19 @@ atd
aOg
aPC
aRb
-aSG
+aSD
aUc
-aVK
+aVI
aXp
aYG
-bar
+bdr
bbS
bdr
beM
bgf
bhn
biS
-bkG
+bkF
bmD
bnY
bpI
@@ -135662,13 +128535,13 @@ buw
bvK
bwX
byv
-bzT
+bKr
bBE
-bDv
+bKp
bEX
bGD
bIA
-bKn
+bKp
bMq
bGz
bVr
@@ -135676,7 +128549,7 @@ bTV
bWI
bOf
cxF
-bZv
+bZx
cbo
cdh
ceZ
@@ -135697,34 +128570,34 @@ czm
cAF
cbo
duP
-cEC
+bQr
cGc
-cpF
-bZH
-cKd
-bZH
-cNh
-cgU
+dhG
+drn
+drn
+drn
cNh
+dhG
cNh
cNh
cNh
cNh
+clz
cYg
-cXW
-ckb
+cqY
+csJ
cZt
dcY
deH
cAZ
-cAZ
-dhD
+cxM
+cAK
dYo
cIW
-cYA
+cwq
dYw
dYA
-cAZ
+cPT
deJ
dhD
duR
@@ -135876,17 +128749,17 @@ aaa
abi
abj
atd
-auc
-auH
-avD
+aue
+auI
+aLu
awH
axO
ayM
azY
aBi
aCg
-aCX
-aEg
+aDb
+ayM
aFg
aFe
aHh
@@ -135895,10 +128768,10 @@ atd
aPE
aRa
aOg
-aPA
+aPH
aRc
aSD
-aTZ
+aUc
aVI
aOb
aYH
@@ -135908,8 +128781,8 @@ bds
beN
aOb
bhk
-biT
-bkH
+aZm
+bkF
bmE
bnZ
bpJ
@@ -135917,15 +128790,15 @@ brJ
btn
bux
aOg
-bwP
-bwP
-bwP
+byl
+byl
+byl
bBF
-bDv
+bKp
bEX
bGE
bEX
-bKo
+bKp
bMr
bGz
bGz
@@ -135934,23 +128807,23 @@ bGz
bGz
bQr
cbu
-cbn
+bod
cdj
cfc
-cfc
-cfc
-cfc
-cfc
-cfc
+bow
+bow
+bow
+bow
+bow
cok
cps
cqX
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
+bwI
+bwI
+bwI
+bwI
+bwI
+bAn
cCe
cCo
cDH
@@ -135958,30 +128831,30 @@ dWh
cHl
cHr
dtU
-cKe
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
-czD
+dlM
+dmq
+dmq
+dmq
+dmq
+dmq
+dmq
+dmq
+dmq
+dmq
+drn
dap
dbL
dbZ
deJ
dfS
dov
-dpS
+cBG
dky
dbM
dmS
dYx
dYo
-drl
+cPV
drl
dpS
dtQ
@@ -136145,17 +129018,17 @@ azZ
aCY
aEh
aFh
-aFi
-aHi
+aJs
+aHl
aIG
aJV
aLs
aMP
aOi
-aPD
-aRd
+aPH
+aQZ
aSD
-aTZ
+aUc
aVL
aXo
aXo
@@ -136165,7 +129038,7 @@ aOb
aXo
aXo
bho
-biT
+aZm
bkI
bmF
boa
@@ -136173,27 +129046,27 @@ bpK
brK
bto
buy
-bvL
+aYO
bwY
-byw
-bzU
+bOg
+bzW
bBG
-bDw
-bEY
-bGF
-bIB
bKp
-bMs
+bIA
+bGF
+bEX
+bKp
+bMu
bOg
bQq
-bTW
+bWK
bWK
bYo
bXZ
bZx
cbp
-cdi
-cfb
+cgN
+bos
cgN
cfb
cgN
@@ -136201,22 +129074,22 @@ cfb
cgN
cfb
cpt
-cqY
-cgN
cfb
cgN
cfb
cgN
cfb
+cgN
+bos
cAG
cCp
-cDI
-bXU
+cdh
+bQr
cGe
-cdt
-cHg
+dhG
+drn
cKf
-cEz
+dmq
cNi
cNi
cIM
@@ -136224,21 +129097,21 @@ cVG
cIM
cIM
cIM
-cEz
-czD
+dmq
+drn
daq
cZt
dcd
deI
-deI
-dpS
-dpS
-dhJ
+cxq
+cyc
+cCn
+cHX
dlL
-deJ
-dYx
+cLY
+cOl
dYB
-dpU
+cPZ
dpU
dfW
dYo
@@ -136406,7 +129279,7 @@ aFX
aGi
aIH
aJZ
-aLt
+aMQ
aMQ
aOm
aTT
@@ -136427,7 +129300,7 @@ bkJ
bmG
bob
bpL
-bmG
+bob
btp
buz
bvM
@@ -136451,29 +129324,29 @@ bZy
cbq
cdk
cfe
-cfe
+boA
cjN
-cfe
-cfe
+boA
+boA
coc
col
cpu
cqV
-crc
+cAB
ctG
cuV
-crc
+cAB
cAB
dWa
cAN
cCv
cDJ
-bXU
+bQr
cGe
-cdt
-cIF
+dhG
+dhG
cKg
-cEz
+dmq
cNj
cOI
cKo
@@ -136481,7 +129354,7 @@ cKo
cKo
cKo
cWy
-cEz
+dmq
cZm
dap
dbL
@@ -136489,16 +129362,16 @@ dcZ
deI
cZw
dhB
-deJ
+cDF
dYp
cZt
-cYA
+cwq
deI
dpV
drh
dsp
deJ
-dhJ
+dso
cZt
abj
aaa
@@ -136660,25 +129533,25 @@ aDa
aEi
aFh
aFY
-aHk
+aHl
aII
-aJX
+aJT
aLu
aMR
aOk
-aPF
-aRe
-aSI
+aPH
+aQZ
+aSD
aUe
aVN
aXr
aYJ
bau
-aYJ
-aYJ
-aYJ
+bau
+bau
+aXG
aXr
-aYJ
+bau
biV
bkK
bmH
@@ -136689,23 +129562,23 @@ btq
buA
aOk
bxa
-byy
+bOi
bzW
bBI
bDy
bFa
bGH
bHh
-bEW
+bIA
bMu
bOi
bRS
-bTX
+cAB
bWN
cfB
bYb
-bZz
-cbr
+bZA
+cbo
cdl
cfd
cgO
@@ -136717,20 +129590,20 @@ com
cpv
cqZ
css
-bXU
-clv
+bQr
+byr
cwx
cxK
czs
cAI
cCr
-clv
-clv
+byr
+byr
cGf
-cBc
-cdt
-cKh
-cEz
+cHr
+dhG
+ddh
+dmq
cIM
cNi
cIM
@@ -136738,11 +129611,11 @@ cIM
cIM
cIM
cIM
-cEz
+dmq
dHk
dap
cZt
-cYA
+cwq
deI
dkz
dkz
@@ -136752,7 +129625,7 @@ cZt
dmT
deI
deJ
-dfV
+cQX
dkA
dfW
dYG
@@ -136905,8 +129778,8 @@ abi
abj
atd
aue
-auJ
-avH
+auI
+aLs
awQ
axS
ayM
@@ -136914,13 +129787,13 @@ aAc
aBk
aCh
aDb
-aEg
+ayM
ayM
aFZ
aHh
aID
atd
-aLq
+wAP
aNZ
aOg
aPG
@@ -136929,21 +129802,21 @@ aSD
aTZ
aVO
aXs
+aUQ
aXs
-bav
bbV
aXs
+aXN
aXs
aXs
aXs
-biW
bkL
bmI
-bod
-bpN
-brM
+aOg
+aOg
+aOb
btr
-buB
+bmN
aOg
aOg
aOg
@@ -136952,25 +129825,25 @@ aOg
aOg
bFb
bGI
-bIE
+bIA
bIA
bMv
byl
bQr
-bSj
+bWt
bUu
bWt
bQr
bZA
cbs
cdm
-ceY
+bou
cgP
cim
cmM
clv
cmV
-con
+cra
cpw
cra
cmV
@@ -136982,12 +129855,12 @@ cCd
cAO
cDB
cDK
-clv
+byr
cGg
-cbC
-cbC
-czD
-cEz
+drn
+drn
+drn
+dmq
cIH
cOJ
cIM
@@ -136995,9 +129868,9 @@ cIM
cTp
cOJ
cIH
-cEz
-cFU
-ckc
+dmq
+cWn
+dar
cZt
ddc
deI
@@ -137009,7 +129882,7 @@ cIW
dmU
deJ
dhJ
-dfV
+cQX
dYD
dfW
duS
@@ -137169,9 +130042,9 @@ axN
ayM
aAd
aAd
-aAd
-ayM
-aCT
+aEs
+aFo
+aDc
aEj
aGa
aHl
@@ -137193,14 +130066,14 @@ aYK
aYK
bgg
ban
-biX
+ban
bkM
bmJ
-boe
-bpO
+aOg
+brN
brN
bts
-buC
+buD
bvN
bxb
byz
@@ -137208,12 +130081,12 @@ bzX
bBJ
aOg
bFc
-bGI
+bGH
bIF
bKr
bMw
-bOh
bQs
+bOn
bSk
bUv
bWu
@@ -137234,17 +130107,17 @@ cst
clv
cuY
cwz
-cxM
-czq
-cAK
+cpy
+bAq
+cAM
cCt
cDL
-clv
+byr
cGh
cHs
cIG
cKi
-cEz
+dmq
cNk
cOK
cQE
@@ -137252,16 +130125,16 @@ cRP
cTq
cUT
cVh
-cEz
-cKe
+dmq
+dlM
daq
dbM
dkp
deL
dfR
-dfR
+cyE
djg
-dYr
+cHY
cIW
dmW
deI
@@ -137419,7 +130292,7 @@ abi
abj
atd
aub
-auK
+axl
avI
awR
axL
@@ -137450,11 +130323,11 @@ bbW
beP
bgh
bhp
-biY
+bhp
bkN
bmK
aOg
-bpP
+brO
brO
btt
buD
@@ -137466,26 +130339,26 @@ bBK
aOg
byl
bGJ
-bIG
-bKs
-bMx
-bMx
-bKs
+byl
+byl
+bQs
+bQs
bSl
+bIA
bUw
bWv
-bMB
+bwP
bZC
cfg
cdn
cff
bXU
-bXU
-bXU
+bQr
+bQr
clv
cop
cqP
-cpy
+buB
cso
cuR
clv
@@ -137496,12 +130369,12 @@ czu
cAL
cCu
cDM
-clv
+byr
cGi
-cHv
-cEz
+dmq
+dmq
dgr
-bYh
+cHA
cNm
cOO
cRQ
@@ -137509,21 +130382,21 @@ cTs
cUV
cWC
cNm
-cEz
+dmq
cZn
daq
cZt
dda
deM
dfX
-dhJ
+dso
djm
dcY
cIW
dmX
deI
dYr
-drj
+dfV
dhJ
dfW
duV
@@ -137676,13 +130549,13 @@ abj
abj
atd
auf
-auK
+axl
avI
awS
axT
ayI
azV
-aAh
+aCU
aCU
aEe
aFV
@@ -137716,22 +130589,22 @@ brP
btu
buE
bvP
-aXs
+bfv
byB
bzZ
bBL
-bDz
+aOg
bFd
bGK
bID
-bKt
+byl
bMy
-bOk
bQt
+jkP
bSm
bUx
bWw
-bMB
+bwP
bZD
cbv
cdo
@@ -137753,9 +130626,9 @@ czq
cAM
cCt
cED
-clv
+byr
cGi
-cHv
+dmq
cII
cKk
cIL
@@ -137766,8 +130639,8 @@ cTt
cRR
dWl
dWt
-cEz
-cFU
+dmq
+cWn
daq
cZt
cZt
@@ -137780,7 +130653,7 @@ cZt
dox
dje
dfR
-djh
+dfR
dfR
dYo
dYH
@@ -137939,7 +130812,7 @@ awT
axV
ayR
aAg
-aBm
+ayR
aAg
aDd
aEm
@@ -137968,33 +130841,33 @@ bja
bkP
bmM
aOg
-bpR
-brQ
btv
-buF
+btv
+btv
+buD
bvQ
-aYJ
+ban
byC
-bAa
+ban
bBM
-bDA
+aOg
bFe
bGM
-bIH
-bIW
+bzW
+byl
bMz
-bOl
-bQu
-bSn
-bUy
+bIA
+bIA
+bIA
+bGC
bWx
-bYd
+bwP
bZD
cbw
cdp
cfh
bXU
-cbA
+ddg
cio
clv
cmZ
@@ -138010,9 +130883,9 @@ dlt
cAR
cDC
cGb
-clv
+byr
cGi
-cHv
+dmq
cIJ
cKm
cNo
@@ -138023,12 +130896,12 @@ cRS
cUX
cUW
dWu
-cEz
-cFU
+dmq
+cWn
dar
-cEG
+drn
cLA
-cIE
+drn
cZt
cZt
djc
@@ -138191,8 +131064,8 @@ abj
atd
atd
atd
-avJ
-awM
+aLu
+aHp
axU
ayK
azW
@@ -138215,17 +131088,17 @@ aUi
aOb
aUi
aYO
-aXf
+bmN
aOb
baj
aYO
-aXf
+bmN
aOb
baj
aOg
bmN
aOg
-bpS
+btw
brR
btw
buG
@@ -138234,25 +131107,25 @@ bxc
byD
bAb
bBN
-bDA
+aOg
bFf
bGL
bII
-bKv
+byl
bMA
bOm
bQv
bXE
bUz
bWy
-bMB
+bwP
bZE
cbx
cdq
cfi
bXU
cip
-cjW
+cYb
clw
cna
cot
@@ -138260,33 +131133,33 @@ cpA
crg
csx
clv
-clv
-clv
-clv
-clv
-clv
-clv
-clv
-clv
+byr
+byr
+byr
+byr
+byr
+byr
+byr
+byr
cGj
-cHv
+dmq
cIK
cLQ
cIL
cOL
-cOU
-cRT
+dWm
+cWA
cTu
-cVa
+cWA
dWm
dWv
dmq
-cZo
+dhG
das
-dbN
+ddf
ddf
deN
-bYh
+cHA
dhz
djd
dhz
@@ -138482,27 +131355,27 @@ buX
bkQ
aOW
aOg
-bpT
-brS
-btx
+aOg
+aOg
+bvK
buH
bvS
bxd
byE
bAc
aOg
-bDA
+aOg
bFg
bGN
bIK
bKw
-bMB
-bMB
-bMB
-bMB
-bMB
-bMB
-bMB
+byl
+bQs
+bQs
+bQs
+byl
+byl
+bwP
bXU
bXU
bXU
@@ -138512,38 +131385,38 @@ ciq
cjX
clv
cIP
-cnb
-cpz
-cnb
+bsc
+bvc
+bwu
csz
clv
cvb
-cdw
-cdw
+cly
+cly
czt
-cit
+cAS
cCw
-cdw
-cit
+cly
+cAS
cGk
-cHv
+dmq
cIL
cIL
cIL
cIL
cOP
-cRU
+cVb
cTw
cVb
cOP
cIL
-cEz
-cEz
-cEz
-cEz
+dmq
+dmq
+dmq
+dmq
ddg
deO
-dfY
+dhG
dhG
djj
cLA
@@ -138553,7 +131426,7 @@ cLA
dpX
drn
dsq
-bYh
+cHA
aaa
abj
abj
@@ -138713,8 +131586,8 @@ ayU
atd
aCk
aDg
-auK
-auK
+axl
+axl
atd
atd
atd
@@ -138738,35 +131611,35 @@ aVR
bah
aSN
aOW
-alI
+bcP
bpU
-brT
+bty
bty
buI
bvT
-bxe
-byF
-bAd
-byF
-bDB
+bty
byF
+bty
+bfE
+bty
+bty
bGO
-bIL
-bKx
-bIL
-bOn
-bIL
-bIL
+bWz
+bWz
+bOh
+bWz
+bWz
+bWz
bUA
bWz
bYe
-bYh
+cHA
cby
cdr
cfk
-cbC
-cdv
-cjZ
+drn
+cLA
+cQu
clv
cnc
cnd
@@ -138774,43 +131647,43 @@ cpy
cnb
csA
clv
-cvc
-bYh
+cYc
+cHA
cxP
cxP
-bYh
+cHA
cCx
-bYh
-bYh
+cHA
+cHA
cGi
-cHv
+dmq
cIM
cIM
cIM
cNp
cQF
-cRV
-cNm
+cWA
+cTu
cWA
dWp
cWD
cYi
cIM
cIM
-cEz
+dmq
ddh
deP
dfZ
dhH
djk
-dbN
-dbN
+cAS
+cAS
dna
doA
-dbN
+cAS
dro
dIf
-bYh
+cHA
abj
dkI
dkK
@@ -138821,7 +131694,7 @@ dkI
dCB
dkI
dEA
-bYh
+dFg
abj
abj
abj
@@ -138995,7 +131868,7 @@ bhs
bjb
aSN
aOo
-alI
+bcP
bpV
brU
btz
@@ -139006,23 +131879,23 @@ byG
bAe
bBO
bDC
-bBO
+bDC
bGQ
-bIM
-bIM
-bIM
bOo
-bIM
+bOo
+bOo
+bOo
+bOo
bSp
bUB
bWA
bYf
-bZF
+dWn
cdg
-cds
+cHy
cfl
-cgR
-cir
+dst
+cly
cka
clv
cnd
@@ -139032,7 +131905,7 @@ cnb
cuT
clv
cvd
-bYh
+cHA
cxS
cAH
cCi
@@ -139040,7 +131913,7 @@ cCy
cDN
cCx
cGl
-cHv
+dmq
cSi
cKn
cIM
@@ -139059,7 +131932,7 @@ ddi
ddi
ddi
dhA
-djl
+ddi
ddi
ddi
ddi
@@ -139219,22 +132092,22 @@ apH
apH
apG
apG
-alI
-alI
-alI
-amh
-amh
-alI
-alI
-amh
-amh
-amh
-alI
-alI
-alI
-alI
-alI
-alI
+awX
+awX
+awX
+awM
+awM
+awX
+awX
+awM
+awM
+awM
+awX
+awX
+awX
+awX
+awX
+awX
aOW
aaa
abj
@@ -139252,7 +132125,7 @@ bht
bgm
aSN
aOW
-alI
+bcP
bpW
brV
btA
@@ -139261,26 +132134,26 @@ buK
bxg
byH
bAf
+bfG
+brV
brV
-bDD
-bFh
bGR
-bFh
-bFh
-bFh
-bOp
+brV
+brV
+brV
+brV
bQw
bSq
bUC
-bWB
bYg
-bYh
-cbA
-cdt
-cfm
+bYg
+cHA
+ddg
+dhG
+cNh
ctS
-cis
-ckb
+dtP
+cYc
clv
cne
cph
@@ -139288,24 +132161,24 @@ cpC
crh
csB
clv
-cvc
-bYh
+cYc
+cHA
cxT
-cbC
+drn
cAP
cCz
cEO
-bYh
+cHA
cGe
-cHv
+dmq
cIM
cIM
cLR
cNr
cQI
-cQM
-cRW
-cTx
+cQP
+cSd
+cTz
dWr
cNw
cIM
@@ -139317,13 +132190,13 @@ deQ
dga
djf
djn
-dkC
-dlN
-dnb
-dlP
ddi
-cFY
-cHh
+dng
+dng
+dng
+ddi
+cYc
+cXU
cJK
abj
dkK
@@ -139348,14 +132221,14 @@ dMc
dMI
dNx
dFg
-bYh
+ddy
dPq
dPq
dRc
dPq
dPq
-cCx
-bYh
+dku
+ddy
abj
abi
abj
@@ -139476,22 +132349,22 @@ aqw
ate
auh
auL
-amb
-amb
+aor
+aor
aqF
ayW
-alZ
-alZ
-awZ
-alZ
-amb
-amb
+azb
+azb
+aEt
+azb
+aor
+aor
aqF
-amb
-alZ
+aor
+azb
aKa
-alJ
-alI
+aNe
+awX
aOo
abj
abj
@@ -139509,8 +132382,8 @@ bhu
bgm
aSN
aOo
-alI
-bpX
+awX
+btF
brW
brW
brW
@@ -139530,14 +132403,14 @@ brW
bVC
cjA
cpP
-bYh
-bYh
+cHA
+cHA
cbB
-cdu
+dlM
cfn
-cgT
-cdt
-ckb
+dlM
+dhG
+cYc
clv
cnf
cov
@@ -139545,22 +132418,22 @@ cpD
csw
csC
clv
-cvc
+cYc
cfn
czn
czv
cAQ
cCA
cDP
-bYh
+cHA
cGe
-cHv
+dmq
cIL
cIL
cIL
cIL
cOT
-cQM
+cQP
cRX
cTy
cOW
@@ -139579,9 +132452,9 @@ dlO
dnc
doB
ddi
-cGa
-cHh
-bYh
+cQY
+cXU
+cHA
aaa
dkI
dxd
@@ -139607,12 +132480,12 @@ dNy
dFg
dOO
dPr
-cNg
+deW
dQM
-cdv
-cdt
+dcA
+dbp
dSn
-cJK
+dlc
abj
abi
abi
@@ -139729,16 +132602,16 @@ aaa
apG
aqw
arp
-asi
+arp
arp
aui
apG
-amb
+aor
awW
axY
-alZ
+azb
ayX
-aql
+ayC
aCl
aCl
aCl
@@ -139746,9 +132619,9 @@ aCl
aCl
aCl
aCl
-amb
+aor
aLx
-alI
+awX
aOW
aaa
abj
@@ -139766,7 +132639,7 @@ aSN
aSN
aSN
aOW
-alI
+awX
bpY
brW
aaa
@@ -139784,41 +132657,41 @@ bKy
bMC
bOq
brW
-bSt
-bUE
-bWD
-bYh
+bSA
+bUI
+bWH
+cHA
bZG
-cbC
-cdv
+drn
+cLA
cfo
-cEF
-cbC
-ckc
+drs
+drn
+cYe
clv
clw
clv
-cpE
+clv
clv
clv
clv
cve
-bYh
+cHA
czo
cAJ
cCq
-cbC
+drn
cDQ
-bYh
+cHA
cGl
-cHv
+dmq
cIM
cIM
cIM
cNp
cQL
-cQM
-cRY
+cQP
+cSd
cTz
dWs
cWD
@@ -139834,9 +132707,9 @@ dkx
dkE
dlP
dnd
-dlP
+cPf
ddi
-cGa
+cQY
dss
cJK
abj
@@ -139855,21 +132728,21 @@ dGD
dHs
dIr
dJn
-dIu
+ddz
dHs
dIu
dMd
dMg
dNz
dFg
-cHg
+dOO
dPs
-cbC
-cgT
-cbC
-cis
+dOO
+dEi
+dOO
+djA
dSp
-cJK
+dlc
abj
abj
abj
@@ -139986,15 +132859,15 @@ aaa
apH
aqx
arq
-asj
+aro
atf
auj
apG
avL
-aql
+ayC
axZ
ayX
-alZ
+azb
aBo
aCl
aDk
@@ -140005,7 +132878,7 @@ aHd
aCl
auR
asq
-alI
+awX
aFz
aJz
aEp
@@ -140023,7 +132896,7 @@ aJz
aEp
aJz
bRm
-alI
+awX
bpZ
brW
aaa
@@ -140041,34 +132914,34 @@ bDF
bDF
bOj
brW
-bSt
-bUE
+bjU
+blL
bWE
bYi
-bZH
-cbD
-bZH
-bZH
-ctT
-cbD
-ckd
+drn
+cHr
+drn
+drn
+drs
+cHr
+cYc
clx
-bZH
-bZH
-cpF
-cri
-csD
-bZH
-cvf
-cwC
-cxU
-cwC
+drn
+drn
+dhG
+dpX
+cLA
+drn
+cYe
+cHA
+cCx
+cHA
cCs
-cwC
-cwC
-cwC
+cHA
+cHA
+cHA
cGm
-den
+dmq
cSl
cKo
cIM
@@ -140085,23 +132958,23 @@ dpP
ddi
ddq
deT
-dgd
+dgf
dhM
djs
dkF
dlP
dne
-dlP
+cPf
ddi
-cGa
-cHh
+cQY
+cXU
cJK
aaa
dkK
dxf
dyt
dzx
-dAK
+dbh
dkK
dCE
dkI
@@ -140110,7 +132983,7 @@ dFi
dFN
dFN
dFN
-dIs
+dFN
dJo
dKa
dFN
@@ -140121,14 +132994,14 @@ dNA
dFg
dOP
dPt
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
+dbw
+dbw
+dbw
+dbw
+dbw
+dbw
dQS
-cEz
+dbw
abj
abj
abj
@@ -140243,14 +133116,14 @@ aaa
apG
aqy
arr
-ask
+ars
atg
auk
apG
auS
-aob
-aob
-arU
+apU
+apU
+aCB
aAj
aBp
aCl
@@ -140261,26 +133134,26 @@ aEr
aHj
aIM
auR
-aql
-alI
-alI
-alI
-alI
-alI
-amh
-amh
-amh
-alI
-amh
-amh
-amh
-alI
-amh
-amh
-amh
-alI
-alI
-alI
+ayC
+awX
+awX
+awX
+awX
+awX
+awM
+awM
+awM
+awX
+awM
+awM
+awM
+awX
+awM
+awM
+awM
+awX
+awX
+awX
bqa
brW
aaa
@@ -140295,44 +133168,44 @@ bFj
bGU
bIJ
bKu
-bMD
+bBR
bOr
-bQx
-bSu
-bUF
-bWF
-bYh
+brW
+bSA
+bUI
+bWH
+cHA
bZI
cbE
-cdw
-cfp
-cgV
-cit
+cly
+dna
+cHs
+cAS
cke
cly
-cng
-cir
-cpG
-crj
-csE
-cir
+dna
+cly
+cHs
+cHs
+cAS
+cly
cvg
cwD
-csE
+cAS
czx
cAS
-csE
+cAS
cDR
-cEE
+cly
cGn
-cHv
+dmq
cIM
cIM
cLR
cNr
cNl
-cQM
-cRY
+cQP
+cSd
cTz
cTG
cNw
@@ -140341,18 +133214,18 @@ cIM
cIM
ddi
dxr
-deU
+dge
dge
dhR
djt
-dkG
-dlP
+dkH
+cKs
dnf
dER
ddi
-cFY
+cYc
dsr
-bYh
+cHA
abj
dkI
dxg
@@ -140364,19 +133237,19 @@ dCF
dkI
dWx
dFj
-dFO
-dFO
-dFO
+dIt
+dIt
+dIt
dIt
dJp
dKb
-dKb
-dKb
-dKb
-dML
+dFN
+dFN
+dFN
+dNy
dMI
dFg
-cHg
+dOO
dXo
dQb
dQN
@@ -140500,12 +133373,12 @@ aaa
apH
aqz
ars
-ask
+ars
ath
ars
apG
avM
-amb
+aor
aya
axY
aAk
@@ -140513,30 +133386,30 @@ asq
aCl
aDm
aEq
-aEq
+aFP
aGj
aHq
aCl
-alZ
-amb
+azb
+aor
aqF
-amb
-amb
-awZ
-awZ
-alZ
-alZ
-amb
-amb
+aor
+aor
+aEt
+aEt
+azb
+azb
+aor
+aor
aqF
aqF
aqF
-amb
-alZ
-awZ
+aor
+azb
+aEt
aqF
bkR
-aql
+ayC
aqF
bqb
brX
@@ -140566,7 +133439,6 @@ bYj
bYj
bYj
ckf
-clz
bYj
bYj
bYj
@@ -140579,10 +133451,11 @@ bYj
bYj
bYj
bYj
-cDS
-cdt
+bYj
+drn
+dhG
cGo
-cHv
+dmq
cIL
cIL
cIL
@@ -140598,24 +133471,24 @@ cIL
cIL
ddi
deK
-deV
+dgc
dgf
dhT
dju
-dkG
-dlO
-dlP
-dlP
+dkH
+cKu
+dng
+dng
ddi
-cGa
-cHf
-bYh
-bYh
+cQY
+dhG
+cHA
+cHA
dkI
dkI
dkI
dzy
-dAO
+dkI
dkI
dkI
dkI
@@ -140627,19 +133500,19 @@ dHt
dIu
dIq
dKc
-dIp
-dHs
-dIu
-dMM
+dez
+deU
dNB
-dFg
-dOP
+dNB
+dNB
+dgA
+dgR
dPv
dQc
-cdt
+dbp
dRr
dRK
-cdt
+dbp
dSF
dUi
dTW
@@ -140757,25 +133630,25 @@ aaa
apH
aqA
art
-ask
+ars
ati
aul
auM
avN
-alI
-alI
-alI
-alI
-are
+awX
+awX
+awX
+awX
+aDH
aCl
aDn
aEq
-aEq
+aGN
aGk
aHr
aCl
-alZ
-aql
+azb
+ayC
aMV
aMV
aMW
@@ -140787,14 +133660,14 @@ aMW
aBo
baC
bcb
-alZ
-amb
+azb
+aor
bgn
bgn
-amb
+aor
aCo
-alZ
-alZ
+azb
+azb
bqc
brW
aaa
@@ -140812,9 +133685,9 @@ bBR
bBR
bOt
brW
-bSt
-bUE
-bWD
+bSA
+bUI
+bWH
bYj
bZJ
cbF
@@ -140822,8 +133695,8 @@ cdx
cfq
cgW
cgX
-ckg
-clA
+cni
+clC
cnh
cow
cpH
@@ -140836,17 +133709,17 @@ cxV
czy
bZK
bYj
-cDT
-cgT
-ckc
-cHv
+dhG
+dlM
+cGe
+dmq
cIM
cIM
cIM
cNp
cOR
cQP
-cSa
+cSd
cTz
dWp
cWD
@@ -140855,19 +133728,19 @@ cIM
cIM
ddi
deX
-deW
+dgc
dgc
dhU
djw
dkH
-dlQ
dng
-dlP
+dng
+dng
ddi
cYe
-cHg
-cdv
-cbC
+drn
+cLA
+drn
dvV
dxh
dyq
@@ -140883,20 +133756,20 @@ dGE
dHs
dIu
dIu
-dIu
+ddB
dJr
dIu
dIu
-dMN
+dHs
dNC
dFg
-cHn
+dEi
dPw
dQe
dRj
dRB
dRQ
-dRQ
+dBC
dSG
dUl
dTW
@@ -141018,16 +133891,16 @@ asl
atj
aum
apG
-avO
-alI
+aDw
+awX
ayb
ayY
aAl
-amb
+aor
aCl
aDo
aEr
-aEr
+aHD
aGk
aHs
aCl
@@ -141041,17 +133914,17 @@ aSP
aUp
aOs
aMY
-aql
+ayC
baD
-any
-amb
+aVK
+aor
beS
bgo
-any
-any
-aql
-aqp
-are
+aVK
+aVK
+ayC
+aCL
+aDH
bqd
brW
aaa
@@ -141069,21 +133942,21 @@ bBT
bBT
bOu
brW
-bSt
-bUE
-bWD
+bSA
+bUI
+bWH
bYk
-bZK
+bnk
cbG
-cdy
+ckj
cfr
cgX
ciu
-ckg
-clA
cni
clC
-ckj
+cni
+clC
+bvL
clC
bYk
ctH
@@ -141093,10 +133966,10 @@ cxW
crn
cAT
bYj
-cDU
-cbC
-ckb
-cHv
+czF
+drn
+cGi
+dmq
cSq
cKn
cIM
@@ -141112,25 +133985,25 @@ cKo
dpZ
ddi
dgh
-deW
+dgc
dgg
dhQ
djx
dkF
-dlP
+dng
dnh
doD
ddi
drp
dst
-cir
-cgR
+cly
+dst
dvW
dWn
dyw
dzz
dAQ
-dWn
+dbk
dEy
dDV
dEH
@@ -141144,16 +134017,16 @@ dIq
dIu
dIq
dMe
-dMM
+dIu
dND
dFg
-cWo
+dhx
dPx
dQf
dRj
-cbC
-dRZ
+dOO
dRZ
+dko
dSO
dUS
dQS
@@ -141276,11 +134149,11 @@ atk
aun
auN
avP
-alI
-amb
-alZ
-aAl
-aAl
+awX
+aor
+azb
+aCR
+aEg
aCl
aDp
aEr
@@ -141294,21 +134167,21 @@ aMW
aOq
aPK
aRk
-aSP
+aPM
aRm
aVV
aMW
aYP
-alZ
-any
-aql
-alI
-are
-aqp
+azb
+aVK
+ayC
+awX
+aDH
+aCL
bjc
-amb
+aor
bmP
-alI
+awX
bqe
brW
aaa
@@ -141326,41 +134199,41 @@ bKB
bME
bOw
brW
-bSs
-bUE
-bWE
-cqH
-bZL
+bSy
+bUI
+bWH
+ctU
bZL
cdz
-bZL
-bZL
+cdz
+cdz
+cdz
civ
ckh
clB
cnj
-bZL
-civ
-bZL
+bso
+bwo
+bso
csF
-bZL
+bso
cvi
cwG
cxX
-czz
+czA
ctH
bYj
-cDS
-cbC
-ckb
-cHv
+drn
+drn
+cGi
+dmq
cIM
cIM
cLR
cNr
cQI
-cRV
-cNm
+cWA
+cTu
cWA
cTH
cNw
@@ -141374,23 +134247,23 @@ dgk
dhV
djy
ddi
-dlP
-dlP
-dlP
+dng
+dng
+dng
ddi
-drq
+dsq
cNh
dtP
cNh
dvX
-dxj
+dBA
dyv
dzC
dAP
-dxj
+dBA
dCH
dDW
-cHh
+dID
dFk
dFQ
dGG
@@ -141401,18 +134274,18 @@ dIq
dHs
dHt
dMe
-dMN
+dHs
dNE
dFg
-cHf
+dbp
dPy
-cEz
+dbw
dQP
dRC
dSc
dSb
dSQ
-cfn
+dlJ
dQS
abj
abi
@@ -141528,20 +134401,20 @@ aaa
apH
aqz
arw
-asn
+ars
atl
arr
apG
avQ
awV
-ayc
+ayZ
ayZ
aAm
aBq
aCl
aDq
aEq
-aEr
+aHE
aGm
aHu
aHy
@@ -141551,23 +134424,23 @@ aMW
aOr
aPL
aRl
-aRm
+aPV
aUq
aRo
aMW
aCo
-alZ
-alZ
-alZ
-awZ
-awZ
-amb
+azb
+azb
+azb
+aEt
+aEt
+aor
aqF
-amb
+aor
aqF
aqF
-bqf
-brY
+bqe
+brW
brW
brW
brX
@@ -141583,40 +134456,40 @@ bxh
bxh
bxh
bxh
-bSw
-bUH
+bSy
+bUI
bWH
-crs
+ctU
bZM
-cbH
-bZM
-bZM
-cbH
-ciw
-cki
-bZM
-bZM
-bZM
-cpI
+crn
+crn
+crn
+crn
+ciz
+crn
+crn
+crn
+crn
bZM
+crn
csG
-bZM
+crn
cvj
cwH
cxY
czA
cAU
bYj
-cDS
-cEF
-ckb
-cHv
+drn
+drs
+cGi
+dmq
cIL
cIL
cIL
cIL
cOY
-cPd
+cSb
cQQ
cSb
cOY
@@ -141647,7 +134520,7 @@ dkI
dkI
dCI
dDX
-cHg
+dOO
dFg
dFR
dGH
@@ -141661,16 +134534,16 @@ dFg
dMO
dFg
dFg
-cWw
+dOO
dPz
dQg
dRk
dRE
-cdt
+djZ
dRK
dSW
dTj
-cEz
+dbw
abj
abi
aaa
@@ -141784,32 +134657,32 @@ aaa
aaa
apG
aqD
-arx
+arr
ars
atm
auo
apG
-avR
-alI
-alZ
+aBB
+awX
+azb
aza
-amb
+aCT
aBr
aCl
aDr
-aEs
-aEq
+aEr
+aHF
aEr
aHv
aCl
-aKd
-alZ
+aKe
+azb
aMW
aOs
-aPM
+aSP
aRm
aSQ
-aUr
+dcO
aVW
aMW
aYQ
@@ -141828,54 +134701,54 @@ brZ
aEu
aEu
aOv
-aIQ
+bkG
byJ
bAl
apU
apU
aty
-ayi
+bgL
apU
apU
bMF
bOv
bUt
bSx
-bUE
-bWD
+bUI
+bWH
bYk
bZN
-cbI
+ctO
cdA
cfs
-cgY
-cix
+crn
+ciz
ckj
clC
ckj
clC
-cpJ
+ckj
clC
bYk
ctO
cvk
cwI
cxZ
-cix
+crn
cAV
bYj
-cDS
-cgT
-ckb
-cHv
+drn
+dlM
+cGi
+dmq
cIO
cIO
cIO
cIL
cOS
-cRV
-cNm
-cWA
+cgZ
+cjD
+cgZ
cTM
cVm
cWT
@@ -141902,9 +134775,9 @@ dyx
dzD
dAR
dkI
-cFR
+dbo
dDX
-cHf
+dbp
dFg
dFS
dGI
@@ -141918,15 +134791,15 @@ dMf
dMP
dNF
dFg
-cWn
-dPx
+dik
+diD
dQn
dRj
dRF
-dRQ
+dkh
dSq
dTg
-cit
+dOQ
dTW
abj
abj
@@ -142045,92 +134918,92 @@ ary
aso
atn
aup
-auO
-avS
+auL
+aDy
awX
ayd
azb
aAn
aBs
-aCm
-aEk
-aEt
-aFo
-aFo
+aCl
+aDl
+aEr
+aEq
+aEq
aHw
-aIP
+aIM
aKe
-aLB
-aMX
+baD
+aMW
aOt
aPN
aRn
aSR
aUs
-aVX
-aMX
-aYR
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-baE
-aYR
-bAm
-bBV
-bBV
-bBV
-bBV
-bBV
-bBV
-bBV
-bBV
-bBV
+aVV
+aMW
+bqe
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+baF
+bqe
+bOC
+bOC
+bOC
+bOC
+bOC
+bOC
+bOC
+bOC
+bOC
+bOC
bSy
-bUF
-bWF
+bUI
+bWH
bYj
bZO
cbJ
cdB
cft
-cgY
+crn
ciy
ckj
clC
ckj
clC
-cpJ
+ckj
clC
bYj
ctN
-cvl
-cwJ
ctO
-czB
+cwJ
+bAa
+ctO
cAW
bYj
-cDT
+dhG
dmy
cGp
-cHv
+dmq
cIO
cKp
cLS
cNu
cOV
-cQR
+cWI
cSd
cTD
cVf
@@ -142139,14 +135012,14 @@ cWU
dtH
dau
cMm
-ddt
-deY
-dgm
+cPn
+cIW
+deH
dhY
-djB
+dhD
dkK
dlS
-dlS
+cMD
dve
dwe
dCN
@@ -142159,9 +135032,9 @@ dyz
dzF
dAS
dkI
-cgT
+dEi
dDX
-cHg
+dOO
dFg
dFg
dFg
@@ -142175,13 +135048,13 @@ dMg
dGE
dNG
dFg
-cHf
+dbp
dPA
dQc
-cbC
-cMT
-dRZ
-cdt
+dOO
+djl
+dko
+dkC
dSH
dVo
dTW
@@ -142303,12 +135176,12 @@ apH
apG
apG
apG
-atN
-alI
-alI
-aqp
-alI
-alI
+aDy
+awX
+awX
+aCL
+awX
+awX
aCl
aFm
aEr
@@ -142322,11 +135195,11 @@ aMY
aOu
aPO
aRo
-aRm
+aQq
aUt
aOs
aMW
-awg
+bqe
baF
bcc
bdw
@@ -142343,8 +135216,8 @@ bmQ
buP
bvZ
baF
-awg
-bAn
+bqe
+bOC
bBX
bDP
bFm
@@ -142363,25 +135236,25 @@ bYj
bYj
cfu
cgY
-cix
+bpN
+brt
ckj
ckj
ckj
ckj
-cpJ
crk
csH
ctK
-cvm
+ctO
cwK
cya
czC
cAX
bYj
cDV
-bYh
+cHA
cGq
-cHv
+dmq
cSC
cKq
cLT
@@ -142392,36 +135265,36 @@ cSe
cTE
cVg
cWJ
-cOX
+cpE
dhS
-dau
-cMl
+ctm
+cvl
ddu
dhX
-deI
+cxu
dhZ
djC
dlR
dlT
dnj
-doG
+drt
dqa
drt
dsw
dtV
dva
-dwa
+dyA
dva
dyA
dzG
dAT
dWo
-dbN
+dOQ
dDY
-cHg
+dOO
dFl
-cdv
-cbC
+dcA
+dOO
dHx
dFg
dFg
@@ -142432,9 +135305,9 @@ dFk
dFk
dFg
dOm
-cWn
+dik
dPB
-cEz
+dbw
dQR
dRs
dRI
@@ -142546,7 +135419,7 @@ acC
acC
adb
acC
-adN
+adb
acC
kpH
acC
@@ -142558,11 +135431,11 @@ abj
abj
abj
abj
-amh
+awM
apK
avT
-alI
-ayf
+awX
+aze
ayg
aAo
aBt
@@ -142574,17 +135447,17 @@ aCl
aCl
aCl
aKf
-alZ
+azb
aMW
aMW
aMV
aMW
-aSO
+aQw
aUu
aMW
aMW
-aYS
-baG
+bqe
+baF
bcd
bdx
beU
@@ -142600,72 +135473,72 @@ bkT
buQ
bwa
baF
-axw
-bAn
+aXJ
+bOC
bBY
bDK
bFn
bFn
-bFn
+bgQ
bFn
bMH
bOy
bDQ
-bSt
-bUE
-bWD
+bSA
+bUI
+bWH
bYj
bZP
cbK
bYj
cfv
-cgY
-cix
+crn
+ciz
ckj
clC
ckj
clC
-cpJ
+ckj
clC
bYj
ctL
cvn
cwL
cyb
-cvl
+ctO
cAY
bYj
-cDS
-cgT
-ckc
-cHv
+drn
+dlM
+cGe
+dmq
cIO
-cKp
+bQx
cLU
cNw
cOZ
-cQT
-cSf
+cVf
+cVf
cSc
-cSf
+cVf
cWK
cWV
dvN
-dav
+dau
dbP
-ddv
-dfa
-dgn
+cPn
+cIW
+dje
dib
djD
dkK
dlU
-dlU
-doH
-dqb
-dru
-dsx
-dtT
+cNf
+dvb
+dwb
+dxm
+dyB
+dyz
dvb
dwb
dxm
@@ -142673,32 +135546,32 @@ dyB
dzH
dBa
dkI
-cdt
+dbp
dDX
dEI
-cEG
-cEG
-cEG
+dOO
+dOO
+dOO
dHy
-dpX
-cEG
-dlM
+ddv
+dOO
+dEi
dKH
dLn
-cNg
-csE
-cLP
+deW
+dOQ
+dgm
dOn
dOQ
dPC
-cEz
+dbw
dQS
dQS
dRJ
-cEz
-cEz
-cEz
-cEz
+dbw
+dbw
+dbw
+dbw
abj
abi
abj
@@ -142789,8 +135662,7 @@ adZ
adZ
afJ
agd
-agA
-adZ
+age
adZ
adZ
adZ
@@ -142800,6 +135672,7 @@ adZ
adZ
adZ
adZ
+aip
agA
agg
adZ
@@ -142809,36 +135682,36 @@ qHs
ani
anH
adb
-alI
-alI
-alI
-alI
-alI
-alI
-alI
-aql
-apr
-alI
-ayf
-azc
+awX
+awX
+awX
+awX
+awX
+awX
+awX
+ayC
+aAF
+awX
+aze
+azd
aAp
-alI
-alI
+awX
+awX
aDs
-aEu
+aty
aFq
-aEu
-aEu
+aty
+aty
aIQ
aKg
aLD
-aMZ
-aOv
-aOv
-aMZ
+aFy
+aTk
+aTk
+aFy
aRu
aUv
-aOv
+apU
aXy
aYT
baH
@@ -142847,55 +135720,55 @@ bdy
beV
baF
bhx
-bdx
-bkU
-bmR
-bkU
-bkU
+aYB
+aZN
+baI
+aZN
+bee
bkU
bkU
beU
bwa
baF
-axu
-bAn
+bpZ
+bOC
bBZ
bDL
bFo
bHa
-bFo
+bgY
bFo
bMI
bOz
bDQ
-bSt
-bUE
-bWD
+bjU
+blL
+bWE
bYj
bZQ
cbL
cdC
-cfw
-cgZ
-cix
+ckj
+crn
+ciz
ckj
clC
ckj
clC
-cpK
+ckj
clC
bYj
bYj
bYj
bYj
bYj
-clz
+bYj
cFM
bYj
-cDT
-cbC
-ckb
-cHv
+dhG
+drn
+cGi
+dmq
cIO
cIO
cIO
@@ -142913,7 +135786,7 @@ dbQ
cPv
dfb
dxE
-dhW
+cyG
djz
dkM
dlZ
@@ -142934,25 +135807,25 @@ dCJ
dDZ
dEJ
dEJ
-dbN
+dOQ
dGJ
dHz
-cit
-cit
-cfp
-cgV
+ddx
+ddx
+ddW
+deF
dLo
-cfm
-cbC
-cdt
-cgT
-cdt
-cbC
-cgT
+deY
+dfL
+dgn
+dgP
+dgn
+djh
+dEi
dXs
-cdt
+dbp
dSn
-cJK
+dlc
abj
aaa
aaa
@@ -143045,71 +135918,71 @@ aeJ
aea
aea
aea
-age
aea
-aea
-aea
-aea
-aea
-aea
-aea
-aea
-ajx
+agJ
ajZ
ajZ
ajZ
ajZ
ajZ
-amv
+ajZ
+ajZ
+ajZ
+ajZ
+ahg
+ajZ
+ajZ
+ajZ
+amA
amM
-anj
+anu
wvH
anI
adb
aor
aoR
aqF
-alZ
+azb
asp
-amb
-alI
+aor
+awX
auP
avU
-awY
-amb
+aBg
+aor
azd
aAq
-alI
+awX
aCn
aDt
-awX
-aFr
-aFr
-aFr
-aFr
-aFr
-aFr
-aFr
-aOw
-aOw
-aOw
+aFx
+aFx
+aFx
+aFx
+aFx
+aFx
+aFx
+aFx
+aOx
+aOx
+aOx
aSS
-aUw
-aOw
-aOw
-aYU
-baI
+aOx
+aOx
+aOx
+bqe
+baF
bcf
bdz
beW
bgq
bhy
-bjg
-bkV
+bjh
+bkW
bkU
bog
bqi
-bsb
+bkU
btB
beU
bwa
@@ -143120,21 +135993,21 @@ bCa
bDL
bFp
bGZ
-bHb
-bKD
+bhm
+bFo
bMJ
bOA
-bSe
+bIV
bTZ
-bUE
-bWD
+bUI
+bWH
bYj
bZR
cbM
bYj
cfx
-cgY
-cix
+crn
+ciz
ckj
clD
cnk
@@ -143146,14 +136019,14 @@ ctM
cvo
cwM
bYj
-czD
-cBa
+drn
+cDZ
cCB
cDW
-cEG
+cDW
cGr
-cHv
-cEz
+dmq
+dmq
cKr
cKr
cKr
@@ -143166,12 +136039,12 @@ cVo
cXa
cKr
dqq
-cMm
-cPv
+dbP
+cPn
cKr
cKr
dWj
-djA
+cKr
dkI
dkI
dkI
@@ -143187,10 +136060,10 @@ dkJ
dzN
dXA
dkI
-cEz
-cEz
-cEz
-cEz
+dbw
+dbw
+dbw
+dbw
dHB
dGK
dHA
@@ -143204,12 +136077,12 @@ dIx
dIx
dIx
dOR
-cdt
-cdt
-cbC
-cis
+dbp
+dbp
+dOO
+djA
dRL
-cJK
+dlc
abj
abj
abj
@@ -143304,22 +136177,22 @@ aeb
afK
agf
agB
+aeb
+aeb
+aeb
+aeb
+aeb
+aeb
+aeb
+aeb
+aeb
agB
-agB
-agB
-agB
-agB
-agB
-agB
-ajG
-agB
-agB
-agB
+aeb
alu
-agB
-amw
-ang
-gYw
+aeb
+amB
+amL
+anv
ank
anJ
ahw
@@ -143332,14 +136205,14 @@ ato
auq
auQ
avV
-alI
+awX
ayg
aze
ayg
-alI
+awX
aCo
-aDu
-alI
+aEz
+aFx
aFs
aGo
aHA
@@ -143354,19 +136227,19 @@ aSU
aUx
aVY
aOx
-avO
-baJ
+aXJ
+baF
bcg
bdA
beX
-baE
+baF
bhz
bjh
bkW
-bmS
-boh
-bqj
-bsc
+bkU
+bqi
+bog
+bkU
btC
beU
bwa
@@ -143378,40 +136251,40 @@ bDM
bFo
bHb
bIS
-bFo
-bIU
+biW
+biY
bOB
-bIV
+bjD
bUa
-bUE
+bUG
bWJ
bYj
bYj
bYj
bYj
cfy
-cgY
-cix
+crn
+ciz
ckj
clE
cnl
-cnl
+btc
cnl
crm
bYj
ctN
cvp
cwN
-cyc
-czE
-cgU
-cgU
+bYj
+cZm
+dhG
+dhG
cDX
-cgU
+dhG
cGs
cHw
cIQ
-cKr
+cZt
cLV
cKr
cKr
@@ -143422,18 +136295,18 @@ cKr
cKr
cKr
cKr
-day
-cMl
-cPv
+dau
+dbP
+cPn
dfc
dgp
dic
djE
-dkN
+dkP
dmd
dnl
dIh
-dqd
+dsz
drx
dsz
dtX
@@ -143586,24 +136459,24 @@ aqH
arz
asq
atp
-alI
+awX
auR
-atN
-alI
+aDy
+awX
ayh
aze
aAr
-alI
-amb
-aDv
-alI
+awX
+aor
+aEy
+aFx
aFt
aGp
aHB
aFx
aKi
aLF
-aNb
+cAq
aOx
aPQ
aRq
@@ -143611,75 +136484,75 @@ aST
aUy
aVZ
aOx
-alL
-baJ
+bpZ
+baF
bch
bdB
beY
baF
bhA
bji
-bkX
+bmT
bmT
boi
-bkU
+bej
bkU
bmR
beU
bwa
baF
-byM
-bAn
+aEy
+bOC
bCc
bDN
bFo
bHd
-bFo
+bhJ
bFo
bMI
bFr
bDQ
bSA
bUI
-bWD
+bWH
bYj
bZS
cbN
bYj
cfz
-cgY
-cix
-ckj
+crn
+bpS
+brv
clF
cnm
-cnl
-cnl
-crn
+bte
+bwp
+bso
csI
-ctO
+bwT
cvq
cwO
bYj
czF
cBb
-cBc
-cDY
-cbC
+cHr
+dlM
+drn
cGt
cHx
-cIR
-cKs
-cLW
-cLW
-cPf
-cPf
-cLW
+cXU
+cZt
+dau
+mzQ
+dau
+dau
+dau
cTI
-cLW
-cLW
-cLW
+dau
+dau
+dau
cYs
-daz
+dau
dbR
ddw
dBD
@@ -143709,14 +136582,14 @@ dIy
dGM
dKX
dKY
-dJv
-dJv
+dKI
+ddY
dKI
dLq
-dJv
+dfa
dMR
dNH
-dOo
+dIx
dOT
dPD
dQh
@@ -143834,7 +136707,7 @@ aaa
aaa
aaa
adb
-anm
+ant
anL
aoo
aoo
@@ -143844,16 +136717,16 @@ aoo
aoo
aoo
aoo
-amb
-avR
+aor
+aBB
any
any
aBg
-are
-aql
+aDH
+ayC
auR
aDw
-alI
+aFx
aFu
aGq
aHC
@@ -143868,15 +136741,15 @@ aSW
aUz
aWa
aOx
-aEy
-baJ
+byM
+baF
bci
bdC
beZ
baF
bhB
bjj
-bkY
+bmU
bmU
bmU
bmU
@@ -143885,8 +136758,8 @@ bmU
buR
bwa
baF
-apr
-bAn
+aEz
+bOC
bCd
bDO
bFq
@@ -143896,16 +136769,16 @@ bFq
bMK
bPY
bDQ
-bSt
-bUE
-bWD
+bSA
+blM
+bWH
bYj
bZQ
cbO
cdC
-cfw
-cgZ
-cix
+ckj
+crn
+ciz
ckk
clG
cnl
@@ -143914,31 +136787,31 @@ cnl
cro
csH
ctH
-bZN
+bzx
cwP
bYj
-cbC
-cBc
-cbC
-cDZ
-cEH
+drn
+cHr
+drn
+drn
+dhG
cGu
cHy
-cdw
+cly
cLB
cLX
cNx
cPg
-cQW
-cMm
+daA
+daA
cMl
-cMm
-cMl
-cMm
+daA
+daA
+daA
cYt
daA
dbS
-ddx
+cPn
dfe
dxP
dia
@@ -143947,7 +136820,7 @@ dkP
dni
dnm
dni
-dqe
+dsz
dry
dsB
duY
@@ -143956,25 +136829,25 @@ dxn
dyE
dzJ
dAI
-dBx
-dCL
-dCL
+dGO
+dFn
+dFn
dFn
dGO
dFm
dFW
-cdw
+dcN
dHC
-dIz
+dIx
dJw
dKe
-dKJ
-dLr
+dSi
+dSi
dMh
dMS
dNI
dOp
-dOU
+dRu
dPE
dQi
dQU
@@ -144091,8 +136964,8 @@ abj
alW
abj
acC
-anl
-anK
+ant
+anP
aoo
aoT
apL
@@ -144101,32 +136974,32 @@ arA
asr
aoT
aoo
-alZ
-atN
+azb
+aDy
awZ
awZ
-aoH
-amb
+aor
+aor
aqF
-alZ
-aDu
-alI
-aFv
-aGr
-aHD
+azb
+aEz
aFx
-aKk
+aHQ
+aGr
+aFv
+aFx
+aMD
aLH
aNd
aOx
aPS
-aRq
+aPw
aSX
aUy
aWb
aOx
-auV
-baJ
+bqe
+baF
bcj
bdD
beU
@@ -144142,8 +137015,8 @@ btD
buS
bwb
baF
-atN
-bAn
+aDt
+bOC
bCg
bDS
bFr
@@ -144153,57 +137026,57 @@ bFr
bMG
bPZ
bOC
-bSs
-bUE
-bWD
+bSy
+blM
+bWH
bYj
bZR
cbM
bYj
cfA
-cha
+crn
ciz
-ckl
+cfs
clH
cnn
coz
cpM
crp
-csJ
+bYj
ctP
cvr
cbK
bYj
czG
cBd
-cgT
+dlM
cEa
-cEI
+cJO
cGv
-cHz
+drn
cIS
-cKu
-cLY
-cNy
+cZt
+cMn
+cKF
cPh
-cQX
+cKF
cVJ
cNy
-cNy
-cNy
+cKF
+cKF
cYo
cYu
daB
-dbT
-ddy
+dbV
+cPn
dff
dff
-dfg
+czd
djK
dff
-dfi
+cKv
dff
-dfi
+cKv
dff
dff
dff
@@ -144240,7 +137113,7 @@ dJx
dJx
dIx
dTo
-dUa
+dUb
dUL
dTX
aaa
@@ -144349,7 +137222,7 @@ abj
acC
adb
ann
-anK
+anP
aoo
aoU
apM
@@ -144363,18 +137236,18 @@ avW
axa
ayi
azg
-aty
-aty
-ayi
+aBD
+aBD
+aES
aDx
-alI
+aFx
aFw
-aGr
-aHE
+aJt
+cyT
aFx
aKl
-aLH
-aNe
+aNX
+cAq
aOx
aPT
aOn
@@ -144383,7 +137256,7 @@ aUA
aWc
aOx
aYV
-baJ
+baF
bck
bdE
bfa
@@ -144399,12 +137272,12 @@ bgp
buT
baF
baF
-btF
-bAn
+bkH
+bOC
bCe
bDQ
bDQ
-bHf
+bIV
bIV
bDQ
bDQ
@@ -144431,24 +137304,24 @@ bYj
bYj
bYj
bYj
-bYh
-bYh
-bYh
-bYh
-cEJ
+cHA
+cHA
+cHA
+cHA
+cHA
cIz
cHA
-bYh
-cKv
-cLZ
-cNz
+cHA
+cZt
+cZt
+cZt
cQw
-cQY
-cLZ
-cLZ
-cVi
-cRc
-cLZ
+cZt
+cZt
+cIW
+cIW
+cIW
+cZt
cZt
cZu
cZy
@@ -144477,9 +137350,9 @@ dDS
dDS
dFm
dFY
-cfm
+dcQ
dHA
-cbC
+dOO
dJx
dKf
dKL
@@ -144605,17 +137478,17 @@ aaa
abj
amx
ajy
-anl
-anK
+ant
+anP
aoo
aoV
-apN
+apM
aqL
arC
apM
atr
aoo
-alL
+aEz
avX
axb
axb
@@ -144624,79 +137497,79 @@ axb
axb
axb
aDy
-alI
+aFx
aFx
aGs
-aHF
+aFx
aFx
aFx
aLI
-aHF
+aFx
+aOx
aOx
aOx
-aRs
aSY
-aUB
+aOx
aOx
aOx
aYW
-aHF
-aFx
+baF
+baF
bdF
bfb
-aFx
+baF
bhE
bjm
blb
bmW
bol
bqm
-bqm
+buU
bSg
buU
buU
bxl
-byO
-bAq
-bqm
+baG
+buU
+bEa
bDR
-bDR
-bHg
-cus
+bEp
+bJd
+bJd
bDR
bDR
bOD
bSg
byO
bUK
-bWL
-buZ
+chc
+bOW
bZT
-buZ
-buZ
-buZ
+cbV
+vEw
+bOW
chc
-bWL
-buZ
-buZ
-buZ
-coE
-buZ
-bwm
-buZ
-buZ
+bpT
+bOW
+bOW
+bOW
+cGC
+tVa
+bsf
+bsf
+bsf
cvs
-buZ
-buZ
-buZ
-buZ
-buZ
-buZ
-chc
+bsf
+bsf
+bsf
+bsf
+bsf
+bsf
+bst
cGx
cHB
bvV
-cKv
+cZt
cMa
cNA
cPj
@@ -144705,22 +137578,22 @@ cSj
cTJ
cVj
cWN
-cTJ
+cIW
cYv
-cNL
-cMi
-ddx
+cKF
+dbV
+cPn
dfg
dgt
dif
djG
dkR
dma
-dno
+dsF
doL
dfi
drz
-dsD
+dsF
dtY
dff
dwi
@@ -144728,15 +137601,15 @@ dwi
dwi
dwi
dwi
-cKr
-cKr
-cKr
-cKr
-cKr
-cZt
-dbM
+dFm
+dFm
+dFm
+dFm
+dFm
+ddy
+dku
dHE
-cgT
+dEi
dJx
dKg
dKL
@@ -144746,10 +137619,10 @@ dMU
dNK
dMU
dOW
-dPG
-dQj
-dQW
-dRv
+dOr
+dMj
+dOr
+djB
dJx
dKm
dIx
@@ -144862,13 +137735,13 @@ aaa
acC
acC
acC
-anl
-anK
+ant
+anP
aoo
aoW
-apO
-aqK
+apM
aqK
+aqY
apM
ats
aoo
@@ -144879,22 +137752,22 @@ ayj
azh
aAs
aBw
-aCp
+axb
aDz
aEv
-aFy
-aGt
-aHG
+aFr
+aLJ
+aRt
aIR
aKm
aLJ
aNf
-aOy
-aOy
+aRt
+aRt
aRt
aSZ
aUC
-aOy
+aRt
aXz
aYX
baK
@@ -144908,13 +137781,13 @@ blc
bmX
bom
bqn
-bse
-btE
-buV
-buV
-buV
+bva
+bSi
+bva
+bva
+bva
byP
-buV
+bva
bCf
bva
bFs
@@ -144929,10 +137802,10 @@ bUL
bva
bva
bZU
+cfR
bva
bva
bva
-bEp
bva
bva
bva
@@ -144949,24 +137822,24 @@ bva
bva
bva
bva
-cEK
+cDd
cGy
-bso
+xqH
ddm
-cKv
+cZt
cMb
cNB
cPk
cRa
-cSk
-cTK
-cVk
+muI
+cMm
+cMm
cWO
-cYp
+cIW
cYz
-daC
-cMh
-ddx
+cKF
+dbV
+cPn
dfh
dhN
djp
@@ -144987,12 +137860,12 @@ dzP
dBd
cKr
dCO
-dEb
+dCU
dEL
dGY
dFZ
-dbM
-dHF
+dku
+dHL
dIA
dJx
dKh
@@ -145003,10 +137876,10 @@ dMT
dNJ
dMT
dOX
-dPH
+dPF
dQk
dQX
-dKL
+dLw
dJx
dSg
dIx
@@ -145119,13 +137992,13 @@ alE
alY
afb
alY
-anl
-anK
+ant
+anP
aoo
aoX
-apO
-aqM
apM
+aqM
+arx
asr
att
aoo
@@ -145139,15 +138012,15 @@ aBv
aCq
aDD
aEJ
-aGM
-aGu
+aUD
+aRv
aHH
aHS
aIU
-aLK
+aUD
aNg
-aOz
-aOz
+aUD
+aUD
aRv
aTa
aUD
@@ -145158,23 +138031,23 @@ baL
bcm
bdH
bfd
-bgs
+aFx
bhG
bjo
bld
-bmY
-bon
-bqo
-bsf
-cqm
-buW
-buW
-buW
+bmW
+boo
+bqu
+bIX
+bSz
+bIX
+bIX
+bIX
byQ
-buW
+bWM
bDG
-chB
-bFt
+bWM
+bWM
bHi
bIX
bIX
@@ -145195,35 +138068,35 @@ ckm
bIX
bIX
bSz
-cpO
+bqp
crr
-bqA
-ctQ
-bqA
-cwQ
-bqA
-bqA
-bqA
-bqA
-bqA
cEL
-bqu
+ctQ
+cEL
+cwQ
+cEL
+cEL
+cEL
+cEL
+cEL
+cEL
+btE
cHC
ddn
-cKv
+cZt
cMc
-cNC
cPl
+tsN
cRb
cWu
cTL
cVl
cWP
-cTL
+cIW
cYA
-day
-cMi
-ddx
+cKF
+dbV
+cPn
dfi
dhO
djq
@@ -145243,14 +138116,14 @@ dyJ
dzQ
dBe
cKr
-cZt
-dFT
-dEM
-cZt
-cZt
-cZt
-dHG
-dIB
+ddy
+dGf
+ddy
+ddy
+ddy
+ddy
+dPw
+dID
dJx
dKi
dKL
@@ -145260,7 +138133,7 @@ dMU
dNK
dOr
dOW
-dPI
+dOr
dQk
dKL
dRw
@@ -145268,7 +138141,7 @@ dJx
dSh
dIx
dTr
-dUc
+dml
dUO
dIx
abj
@@ -145376,17 +138249,17 @@ aaa
acC
acC
acC
-anl
-anM
-aop
+ant
+anP
+aoo
aoY
-apP
+ast
aqN
arD
aqN
atu
aoo
-auV
+aDt
avZ
axb
ayl
@@ -145407,7 +138280,7 @@ aLU
aLU
aLU
aTc
-aUE
+aLU
aLU
aLU
aYZ
@@ -145421,14 +138294,14 @@ bjp
bQc
aYZ
boo
-bqp
-bsg
+bqu
+bhX
bsv
bvV
bxi
bxi
bwf
-aot
+bwn
bCh
bDT
bFu
@@ -145467,20 +138340,20 @@ cFp
dxV
ddl
cIV
-cKv
-cKv
-cNz
-cPm
+cZt
+cIW
+cIW
+cIW
cRc
-cKv
-cKv
-cTL
-cVp
-cLZ
+cZt
+cZt
+cZt
+cZt
+cZt
cZt
dtS
dbV
-ddy
+cPn
dfj
dhP
djr
@@ -145501,11 +138374,11 @@ dVd
dBf
cKr
dCP
-dEd
+ddv
dEN
dFo
dIC
-cKs
+ddy
dHH
dKZ
dXa
@@ -145525,7 +138398,7 @@ dJx
dSi
dSJ
dTs
-dUc
+dml
dSi
dTX
abj
@@ -145633,8 +138506,8 @@ aaa
abj
amy
ajf
-ano
-anJ
+ant
+alm
ahy
aoZ
apQ
@@ -145652,7 +138525,7 @@ aAv
aBy
aCr
aEw
-auV
+aDt
aFA
aGv
aHJ
@@ -145669,26 +138542,26 @@ aWe
aXB
aZa
baM
-bco
+bfg
bdJ
bfe
-bgt
+aYZ
bhI
bjq
blf
aYZ
boo
-bqp
-bsh
+bqu
+bIX
bsv
btH
btH
btH
bwf
bAr
-bCi
-bDU
-bFv
+bCl
+byU
+bFR
bHj
bIY
bKF
@@ -145709,8 +138582,8 @@ ckn
clI
cno
bSE
-cpQ
-crt
+bqr
+cry
csK
ctR
cvt
@@ -145722,24 +138595,24 @@ cCC
csK
cEM
bqu
-bso
+bIG
cIW
cKw
cMd
cND
cPn
-cRd
+aKA
cSm
-cKr
+cZt
cTU
cVq
cXb
cZt
-day
-cMi
-ddx
+cKF
+dbV
+cPn
dfk
-dgu
+dig
dig
dkU
dff
@@ -145758,26 +138631,26 @@ dwi
dwi
cKr
dCQ
-dEe
-dEO
-dFp
-dGb
+dEP
+dFr
+dFr
+dGc
dJy
-dHI
+dHE
dID
-dJz
+dJx
dKk
-dKN
-dLv
-dMl
-dMV
-dNL
-dOs
-dMl
-dPK
-dQm
-dKN
-dRy
+dKL
+dLw
+dMk
+dMT
+dNJ
+dPF
+dMk
+dPF
+dQk
+dKL
+dLt
dRO
dSj
dSK
@@ -145890,8 +138763,8 @@ aaa
abj
acC
adb
-anl
-anK
+akG
+als
aoo
apa
apR
@@ -145900,7 +138773,7 @@ arF
aqN
atu
aoo
-alL
+aEz
avX
axb
ayn
@@ -145909,7 +138782,7 @@ aAw
aBz
aCs
aEC
-auV
+aDt
aFA
aGw
aHK
@@ -145918,11 +138791,11 @@ aIX
aLM
aFA
aOB
-aPV
-aRx
+aOD
+aOD
aTe
-aUG
-aWf
+aOD
+aOD
aXC
aYZ
baQ
@@ -145931,26 +138804,26 @@ bdK
bff
aYZ
bdQ
-bjr
+bjt
blg
aYZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
abj
aaa
bwf
bAs
-bCj
-bDV
-bFw
+bCB
+bAs
+bAs
bHj
bIZ
-bKG
+bKN
bMN
-bKG
+bKN
bQF
bSE
bSE
@@ -145966,18 +138839,18 @@ cko
clJ
cnp
bSE
-cpQ
-crt
+bqr
+cry
csK
cBi
-cvA
-cye
-cye
-cye
-cCD
+cEr
+cEr
+cEr
+cEr
+cEr
cDO
csK
-boy
+cEL
bqu
cHE
cIX
@@ -145985,7 +138858,7 @@ cKx
cMe
cMf
cPo
-cRe
+aKC
cSn
cTB
cUY
@@ -145994,34 +138867,34 @@ cXc
cYB
daE
dbW
-ddz
-dfl
-dfl
+cPn
+cPn
dih
+cPn
djL
dkV
-dfl
-dnt
-dfl
+cPn
+cPn
+cPn
drI
-dfl
-dfl
-dfl
+cPn
+cPn
+cPn
dvh
dih
dxw
-dnt
+cPn
dXv
-dBg
-cKu
+cRd
+cZt
dCR
-dEf
+dFr
dEP
-dFq
+dOO
dGc
-cKu
+ddy
dHJ
-cHf
+dbp
dJx
dKh
dKL
@@ -146147,8 +139020,8 @@ abj
abj
abj
acC
-anl
-anK
+ant
+anP
aoo
apb
apS
@@ -146157,7 +139030,7 @@ arG
ast
atw
aoo
-alL
+aEz
avX
axb
ayo
@@ -146169,17 +139042,17 @@ aDE
aEy
aFA
aGx
-aHL
+aHM
aIW
aIX
aLN
aFA
aOC
aPX
-aPX
+aPA
aTg
-aPW
-aPW
+aSd
+aTr
aXD
aYZ
bcs
@@ -146187,13 +139060,13 @@ bcq
bdL
bfg
bgu
-bhJ
+bdP
bjs
blh
aYZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
abj
@@ -146201,15 +139074,15 @@ aaa
bwf
aot
bCk
-bDW
+bEk
asz
bHj
bJa
-bKI
+bOG
bMP
bOG
bQG
-bSE
+ciB
caQ
bWQ
bYq
@@ -146223,8 +139096,8 @@ ciB
clK
ciB
bSE
-cpQ
-cru
+qzr
+cua
ctX
cvv
cwS
@@ -146239,46 +139112,46 @@ bqu
cHF
cIY
cKy
-cMf
+cMe
cNE
-cPp
+cPr
cMm
cPn
-cTN
+cKI
cUZ
cWz
cYj
cKI
daF
-dbR
+cvm
ddA
-cMe
-cMf
+cRe
+cxD
dii
djM
dkW
-dme
-dnu
-doP
-drN
-doP
-dkW
-doP
-dvi
-doP
-dxx
dyL
+dyL
+dyL
+drN
+dyL
+dyL
+dyL
+dkW
+cZH
+dxx
+cNx
dzT
-doP
+dbj
dBh
-dCS
-dEg
-dEQ
+dik
dFr
-dGd
-cZt
-cFY
-cHg
+dOO
+dFr
+dID
+ddy
+ddt
+dOO
dJx
dKg
dKL
@@ -146290,7 +139163,7 @@ dMW
dMm
dPL
dMm
-dQZ
+dPL
dRz
dRP
dSl
@@ -146404,8 +139277,8 @@ aaa
aaa
aaa
adb
-ano
-anN
+ant
+anP
aoo
apc
apT
@@ -146414,8 +139287,8 @@ arG
asu
atx
aoo
-auV
-aoH
+aDt
+aBb
axb
axc
axb
@@ -146449,8 +139322,8 @@ bjt
blj
aYZ
bop
-bqp
-bsh
+bqu
+bIX
btH
aaa
abj
@@ -146458,7 +139331,7 @@ aaa
bwf
bAt
bCl
-bDX
+byU
bFx
bHk
bJb
@@ -146466,7 +139339,7 @@ bKH
bMO
bOF
bKN
-bSE
+ciB
bUQ
bWR
bYr
@@ -146480,60 +139353,60 @@ ckp
clL
bUT
bSE
-cpQ
-crt
+bqr
+cry
csK
-cvw
+cEs
cwT
cyq
-cyq
-cyq
+nFN
+lIX
cCF
-cEc
+cEr
cEP
-cHD
-bqv
+cIT
+bqu
cHG
cIY
cKy
cMg
cNF
cPq
-cRf
-cSo
+cMe
+ddw
cTC
cVc
cWH
cYk
cZr
-daG
+cKE
dbX
-ddv
+cSt
dfm
dgv
dij
-djN
+duc
dkX
-djN
-dnv
+duc
+duc
dIi
dsu
-dkX
-dkX
+duc
+duc
duc
dvj
dgv
-dxy
-dgv
+cSt
+cSt
dzU
-dgv
-cKs
-dCT
-dEh
+cSt
+cZt
+dCJ
+dcQ
dXy
dFs
dGe
-cZt
+ddy
dHK
dIE
dJx
@@ -146662,12 +139535,12 @@ acC
adb
adb
anp
-anK
+anP
aoo
aoo
aoo
aoo
-apd
+aHX
aoo
aoo
aoo
@@ -146691,7 +139564,7 @@ aFA
aOE
aPY
aRz
-aRz
+aQS
aRz
aRz
aXF
@@ -146701,12 +139574,12 @@ bcv
bcz
bfi
aYZ
-bdP
-bju
+aYa
+aYC
blk
aYZ
boo
-bqp
+bqu
bsi
bsv
abj
@@ -146715,7 +139588,7 @@ abj
bwf
bAu
bCl
-bDX
+byU
bFy
bHk
bJc
@@ -146723,13 +139596,13 @@ bKK
bMR
bOI
bQH
-bSE
+ciB
bUR
-bWS
+chi
bYs
-bZY
+chi
bYs
-bZY
+cnv
bYs
chh
ciD
@@ -146745,54 +139618,54 @@ cwU
cwV
cBj
cBl
-cCG
-cEd
+cEr
+cEr
cEQ
-cIf
+cIT
bqu
-bso
+bIG
cIW
cKz
-cMh
+cMi
cNG
cPr
cMm
cRd
-cTP
+cZx
cVd
cZG
cYl
cZx
-cNL
+cKF
dbY
-ddB
-dfn
-dfn
-dik
-dfn
+cRg
+dfo
+dfo
+dfp
+dfo
dnF
-dfn
-dnw
-dfn
+dfo
+dfp
+dfo
+dqp
dql
dql
-dql
-dud
+dwn
dxB
dwn
dql
dql
dql
-dqp
-cKr
+dql
cZt
-cZt
-cZt
-cZt
-cZt
-dbM
-cYe
-cEJ
+ddy
+ddy
+ddy
+ddy
+ddy
+dku
+dHA
+ddy
dJx
dKm
dKr
@@ -146901,23 +139774,23 @@ afc
adZ
adZ
agg
-adZ
+aip
agA
adZ
-aig
-aip
-aip
-aip
-aip
-aip
-aip
-aip
-als
-alx
-aip
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
aip
+agA
+agg
+adZ
+adZ
amz
-ang
+amL
anq
anO
aon
@@ -146929,14 +139802,14 @@ asv
aty
aur
auX
-awc
+awd
axe
axe
axe
aAz
aAz
axe
-aDH
+axe
aEA
aFA
aFA
@@ -146948,10 +139821,10 @@ aFA
aOF
aPZ
aRA
-aRA
+aRd
aRA
aPZ
-aXG
+aIZ
aYZ
aYZ
aYZ
@@ -146959,12 +139832,12 @@ aYZ
aYZ
aYZ
bhK
-bjv
+aYE
bll
bmZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
abj
@@ -146975,45 +139848,45 @@ bCm
bDY
bFz
bHk
-bJd
-bKJ
+bKN
+bKH
bMQ
-bOH
-bQI
-bSF
-bUS
+bOF
+bKN
+ciB
+bWR
bWT
-bYt
-bZZ
+cbT
+chi
cbT
cdF
-bYt
+cbT
+chi
chi
-bZZ
ckr
clN
cnr
bSE
-cpQ
+bqr
crw
csK
-cvw
+cEs
cwW
czI
-czI
-czI
+shS
+aMp
cCH
cEr
cER
cIT
bqu
-bso
+bIG
cIW
cKA
cMi
cNG
cPr
-cMl
+cMm
cSp
cTQ
cVr
@@ -147025,13 +139898,13 @@ daH
ddC
dfo
dim
-div
+doU
dmf
doy
doT
doU
dqj
-dql
+dqp
dsJ
duj
dwq
@@ -147040,29 +139913,29 @@ dyM
dzV
dCZ
dGn
-dqp
-dBI
+dql
+dGf
dCU
dEi
dES
dCU
dGf
-cgU
+dbp
dHL
-dIF
-dEz
-dEz
-dKs
+dIH
+dJH
+dJH
+dKP
dLA
dMo
-dKs
-dKs
+dKP
+dKP
dOv
dPb
dPY
dQo
dRl
-dEz
+dJH
dSo
dKP
dTh
@@ -147158,33 +140031,33 @@ afh
aea
aea
aea
-aea
-aea
-aea
-ahU
-aea
-aea
-aea
-aea
-ajB
-aea
-aea
-aea
-aea
-aea
-aea
+agJ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ahg
+ajZ
+ajZ
+ajZ
+ajZ
amA
-amL
-anl
-anK
-aos
-aos
-aos
-aos
-aos
-aos
-aos
-aos
+amM
+anu
+alx
+aop
+aop
+aop
+aop
+aop
+aop
+aop
+aop
auY
awd
axe
@@ -147193,21 +140066,21 @@ azo
aBu
aCw
aCu
-aDH
-atN
+axe
+aDt
aFA
aGA
-aHN
+aMg
aIZ
aKr
aQt
aNh
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
+aOG
+aOG
+aOG
+aRe
+aOG
+aOG
aXH
aZb
baR
@@ -147216,12 +140089,12 @@ bdN
bfj
bgy
bhL
-bju
+aZh
blm
bmZ
boq
bqq
-bsh
+bIX
btH
aaa
abj
@@ -147230,24 +140103,24 @@ bwf
aos
bCn
bDZ
-bFA
+bFP
bHl
bJe
bKL
bMS
bOJ
bQJ
-bSE
-bUT
-bWU
-bWU
-bWU
+bOH
+bOL
+clO
+bOY
+bSG
cbU
cdG
-bWU
-bWU
-bWU
-bWU
+bOY
+bSG
+bSG
+cru
clO
cns
coB
@@ -147263,8 +140136,8 @@ cCI
cEs
csK
cIU
-bqx
-bso
+qZt
+exL
cIZ
cKB
cMj
@@ -147282,9 +140155,9 @@ dca
ddj
dfo
din
-djO
-dnx
+doV
dnx
+cIp
dnx
doV
dqk
@@ -147298,13 +140171,13 @@ dzW
dEn
dEn
duZ
-dBi
+dEy
dCV
-cir
-cwD
+dbC
+dbI
dFt
dGg
-cwD
+dbI
dHM
dIG
dJB
@@ -147312,15 +140185,15 @@ dKn
dKn
dLz
dMp
-dMZ
-dMZ
-dMZ
dPM
-dMZ
-dMZ
-dMZ
-dMZ
-dMp
+dPM
+dPM
+dPM
+dPM
+dPM
+dPM
+dPM
+dkq
dSs
dSP
dTy
@@ -147423,26 +140296,26 @@ aeb
aeb
aeb
aeb
-ajY
-agH
-agH
+aeb
+aeb
+agB
alt
aly
-agH
-agH
+aeb
+aeb
amB
-amM
-anr
-anP
-aos
+amL
+ant
+mOF
+aop
ape
apV
aqR
arJ
asw
atz
-aos
-alL
+aop
+aEz
awe
axe
ayr
@@ -147450,56 +140323,56 @@ azp
aAA
axe
axe
-aDH
-atN
+axe
+aDt
aFA
aGB
-aHN
+aMi
aJa
aKs
aTp
-aNi
aOG
-aQa
-aRB
-aNi
-aLR
+aOG
+aWj
+aWj
+aRe
+aWj
aLS
-aNi
-aNi
+aUj
+aOG
aTp
bcx
bdP
bdQ
bdP
bdQ
-bjv
+aYE
blo
bmZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
abj
aaa
bwg
bAw
-bCo
-bEa
+bCx
+byU
bFB
-bHm
-bJf
-bKM
+bHk
+bKN
+bKN
bMT
bOK
bKM
-bSG
+ciB
bUU
bWV
bYu
caa
-cbV
+ciB
cdH
cfE
chj
@@ -147507,42 +140380,42 @@ ciE
cks
clP
cnt
-bSG
+bSE
cpT
cry
csK
cvz
cxQ
-cBf
+cEr
cBk
-cBf
-cCJ
+cEr
+cEr
cEN
csK
cES
bqu
-bso
+bIG
cIW
cKC
cMk
cNI
cPs
-cMf
+cMe
cSr
cTS
cVt
-cWX
-cYw
-cZz
daJ
-cWZ
+daJ
+cZA
+daJ
+cvT
ddD
dfp
diq
-djP
+doW
dny
dla
-dny
+cLv
doW
dqo
dqm
@@ -147554,8 +140427,8 @@ dui
dzX
dEX
dGT
-dqp
-dBK
+dql
+dCU
dCW
aos
aos
@@ -147567,18 +140440,18 @@ dIH
dJC
dKo
dKo
-dLC
+dLE
dMq
dKo
dKo
dKo
-dPc
-dNd
-dNd
-dNd
-dNd
-dRR
-dSt
+dKo
+dKo
+dKo
+dKo
+dKo
+dKo
+dSB
dSP
dXK
dUj
@@ -147689,9 +140562,9 @@ acC
acC
adb
amN
-anl
-anK
-aot
+ant
+anP
+apN
apf
aqg
aqS
@@ -147707,34 +140580,34 @@ azq
aAB
aCw
aEO
-aDH
-apr
+axe
+aEz
aFA
aGC
-aHN
+aMg
aIZ
aKs
aTp
-aNi
-aLR
+aOG
+aWj
aQb
aRC
-aNi
+aRs
aUI
aWg
-aLR
-aNi
+aUo
+aOG
aTp
bdT
bdQ
bfk
bgA
bhQ
-bju
+aZk
bln
aZa
bor
-bqr
+dxV
bsj
bsv
abj
@@ -147743,24 +140616,24 @@ abj
bwe
bAx
bCp
-bEb
+byW
bFC
bHk
bJg
bKN
bMU
-bOL
-bHj
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
+bKN
+bHk
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
+ciB
bSE
bSE
bSE
@@ -147772,16 +140645,16 @@ cDs
cvB
cwY
cyg
-cwY
+lIv
cBm
cCK
csK
cET
bqu
-bso
+bIG
cIW
cKD
-cMl
+cMm
cNG
cPr
cMm
@@ -147789,16 +140662,16 @@ cRg
cTR
cVu
cWY
-cYx
+daJ
cZA
daK
-cWZ
+cvT
ddE
dfo
diq
dio
djQ
-dla
+cIq
dmg
dnA
dIL
@@ -147813,7 +140686,7 @@ dtN
dtN
dyP
dBC
-cGo
+dbB
aos
dET
dFu
@@ -147825,16 +140698,16 @@ dJD
dKo
dKo
dLD
+dfn
+dNa
+dNa
+dNa
+dKp
dKp
dNa
dNa
dNa
-dPd
dKp
-dNa
-dNa
-dNa
-dRS
dSu
dTi
dTA
@@ -147946,42 +140819,42 @@ aaa
aaa
aaa
adb
-anl
-anK
-aos
+ant
+anP
+aop
apg
apX
aqT
arL
asy
atB
-aos
+aop
ava
-awg
+aYS
axe
ayt
azr
aAB
axe
axe
-aDH
-apr
+axe
+aEz
aFA
aGD
aHP
-aIZ
-aKs
-aTp
-aNi
-aLR
+aMj
+aMX
+aOc
+aOQ
+aPu
aQc
aRD
aTh
aUJ
aWh
-aLR
-aNi
-aNi
+aUw
+aOG
+aOG
aYZ
bdR
bgv
@@ -147991,27 +140864,27 @@ bjw
bnc
bmZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
bwc
-asz
+bqy
bwf
-bAy
+aos
bCl
-bDU
+byU
bFD
bHk
-bHj
+bHk
bKO
bMV
bOM
-bHj
+bHk
aaa
abj
aaa
-bYv
+bOZ
cab
cbW
cdI
@@ -148021,9 +140894,9 @@ ciF
bYv
aaa
aaa
-bHj
+bHk
cpV
-crt
+cry
csK
csK
cvC
@@ -148035,17 +140908,17 @@ csK
csK
cEU
bqu
-cHC
+bKt
cIY
cKE
cMe
cNJ
cPt
-cMf
+cMe
cSs
cTT
cVv
-cWZ
+cYy
cYy
cZB
daL
@@ -148063,13 +140936,13 @@ dqm
dsL
dvl
dui
+dvn
dvp
-dui
-dzX
+dam
dFw
dHR
-dqp
-cKh
+dql
+dGf
dBR
dDe
dEU
@@ -148082,17 +140955,17 @@ dJD
dKo
dKo
dLE
+dMq
+dNb
+dNN
+dOw
+dKo
dKo
dNb
dNN
dOw
-dPe
dKo
-dNb
-dNN
-dOw
-dRT
-dSt
+dSB
dSR
dTB
dWA
@@ -148203,17 +141076,17 @@ abj
abj
abj
acC
-anl
-anK
-aos
-aos
+ant
+anP
+aop
+aop
aqi
-aot
+apN
arQ
-asz
-aos
-aos
-alI
+asn
+aop
+aop
+awX
ayw
axe
axe
@@ -148221,35 +141094,35 @@ azs
aAC
aCw
aFQ
-aDH
-avU
+axe
+aFH
aFA
aGE
-aHN
-aJa
+aIZ
+aMk
aKs
aVQ
-aNi
-aLR
+aOG
+aWj
aQd
aRE
-aNi
+aRs
aUI
aWi
-aLR
-aNi
+aUB
+aOG
aVQ
bfl
bdQ
bfm
bhN
bli
-bju
+bdQ
bne
bmZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
bwd
@@ -148257,18 +141130,18 @@ bxm
byR
byU
bCl
-bDU
+byU
bFy
bHn
-bJh
-bJh
-bJh
-bON
-bJh
-bJh
-bJh
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
aaa
-bYv
+bOZ
cac
cbY
cdK
@@ -148290,12 +141163,12 @@ czJ
cBn
cCL
cEe
-boy
+cEL
bqu
-bso
+bIG
cJa
cKF
-cMl
+cMm
cNG
cPr
cMm
@@ -148304,15 +141177,15 @@ cTF
cVw
cWQ
cYn
-cWZ
-cWZ
-cWZ
+daJ
+daJ
+daJ
ddF
dfo
diq
djR
djQ
-dla
+cIq
dmg
doX
drD
@@ -148320,15 +141193,15 @@ dsH
due
dvm
dws
-dvq
-dws
-dzX
+dvn
+dyT
+dav
dyR
dzY
-dqp
-dBM
-dCY
-dEk
+dql
+dCU
+dHL
+aos
dEV
dVx
dGj
@@ -148339,17 +141212,17 @@ dJD
dKo
dKo
dLE
-dKo
+dMq
dNc
dNO
dXF
-dPe
+dKo
dKo
dQp
dNO
dRG
-dRT
-dSt
+dKo
+dlp
dSS
dTC
dUm
@@ -148442,7 +141315,7 @@ aaa
abj
aaa
aaa
-afM
+agE
agD
agE
ahB
@@ -148472,41 +141345,41 @@ asY
awh
avb
awi
-axf
+aoA
axe
-azp
+aCP
aAD
axe
aAz
-aDI
-apr
+aAz
+aEz
aFA
aGF
-aHQ
aIZ
+aMl
aKs
aTp
-aNi
-aNi
-aLR
-aRF
-aNi
-aUK
+aOG
+aOG
+aWj
+aWj
+aRs
+aWj
aWj
aXI
-aNi
-bRq
+aOG
+aTp
bfo
-bdS
-bfn
-bdS
-bfn
-bjx
+bdP
+bdQ
+bdP
+bdQ
+bdP
bQy
bmZ
boo
-bqp
-bsh
+bqu
+bIX
btH
aaa
bwd
@@ -148514,18 +141387,18 @@ bxn
byS
byU
bCl
-bEc
-bFE
+byU
+bFy
bHo
-bJh
+bOT
bKP
bMW
bOO
bQK
bSH
-bJh
+bOT
abj
-bYv
+bOZ
cad
cbX
cdJ
@@ -148533,9 +141406,9 @@ cfG
chl
ciH
bYv
-bHj
-bHj
-bHj
+bHk
+bHk
+bHk
cpX
crB
bHj
@@ -148547,15 +141420,15 @@ czK
cBo
cCM
cEf
-boy
+cEL
bqu
-bso
+bIG
cIW
cKG
cMm
cNK
cPu
-cMl
+cMm
cSu
cTT
cVx
@@ -148568,8 +141441,8 @@ ddH
dfo
dis
djS
-djS
-djS
+cDI
+cJq
djS
djS
drE
@@ -148578,12 +141451,12 @@ duf
dvr
dxz
dXr
-dyQ
-dAb
+dvq
+dav
dyS
dzZ
-dqp
-cKh
+dql
+dGf
dBT
aos
dEW
@@ -148596,16 +141469,16 @@ dJD
dKo
dKo
dLE
+dMq
+dNb
+dNP
+dOw
+dKo
dKo
dNb
dNP
dOw
-dPe
dKo
-dNb
-dNP
-dOw
-dRT
dSB
dST
dTD
@@ -148699,7 +141572,7 @@ aaa
abj
aaa
aee
-afM
+agE
agE
agT
ahC
@@ -148717,17 +141590,17 @@ aaa
aaa
aaa
acC
-ano
+anl
anR
-aov
-apu
-aov
-aov
-aov
asB
-aov
apu
-aov
+aqX
+asB
+asi
+asB
+asD
+apu
+asB
awj
axg
aAI
@@ -148735,22 +141608,22 @@ azt
aAE
aEB
aCx
-aDH
+axe
aHW
aFA
aGG
aHR
aJb
-aKs
+aBE
aZZ
aNj
-aNi
-aNi
-aRG
-aNi
+aWk
+aWk
+aWk
+aRx
aUL
-aNi
-aNi
+aWk
+aWk
aZc
baT
aZa
@@ -148761,9 +141634,9 @@ bdS
bjy
bQy
aYZ
-boo
-bqp
-bsh
+ibc
+bqu
+bIX
btH
aaa
bwe
@@ -148774,15 +141647,15 @@ bCq
bEd
bFF
bHp
-bJh
+bOT
bMY
bMX
bOP
bMY
bSI
-bJh
+bOT
aaa
-bYv
+bOZ
cae
cbZ
cdL
@@ -148791,7 +141664,7 @@ chm
ciI
cku
clQ
-cnu
+coD
coD
cpY
crC
@@ -148801,17 +141674,17 @@ cvD
cxb
cyj
czL
-cyj
-cyj
-cxb
+cyk
+cyk
+gyY
cEV
cGz
-bsp
+bIG
cIW
cKH
cMn
cNL
-cPv
+cSt
cRg
cSv
cTR
@@ -148833,14 +141706,14 @@ drF
dqp
drJ
dwo
+cTP
drJ
-dqp
-dyT
+dql
dBO
dFy
dQq
-dqp
-dBN
+dql
+dfu
dVj
aos
aos
@@ -148853,17 +141726,17 @@ dXC
dKp
dKp
dLF
-dKo
+dMq
dOu
dNQ
dOx
-dPe
+dKo
dPN
dQF
dNQ
dRH
-dRT
-dSt
+dKo
+dSB
dSU
dTE
dUo
@@ -148959,14 +141832,14 @@ aee
agk
agF
agU
-ahD
ahC
ahC
ahC
ahC
ahC
ahC
-ahD
+ahC
+ahC
akx
agE
agE
@@ -148974,15 +141847,15 @@ agF
agE
aaa
acC
-anm
-anS
+ant
+anT
aow
apj
aqa
aqV
arO
-asC
-aqe
+aqV
+auH
apk
avc
awk
@@ -148992,15 +141865,15 @@ axe
axe
axe
axe
-aDH
+axe
aHX
aFA
aFA
aFA
aFA
aFA
-aLU
-aLU
+aFA
+aFA
aOH
aOH
aXR
@@ -149008,8 +141881,8 @@ aZf
bcw
aOH
aOH
-aLU
-aLU
+aFA
+aFA
aYZ
aYZ
bgI
@@ -149019,7 +141892,7 @@ bnb
aYZ
bna
boo
-bqp
+bqu
bsi
bsv
abj
@@ -149031,27 +141904,27 @@ bCr
bEe
bFG
bHq
-bJh
+bOT
bKR
bMX
+bKG
bMX
bMX
-bMX
-bJh
+bOT
aaa
-bYv
-bYv
-bYv
-bYv
-bYv
+bOZ
+bOZ
+bOZ
+bOZ
+bOZ
bYv
ciJ
bYv
-clR
-cnv
+clS
ckv
-cpZ
-crD
+ckv
+cqc
+cuf
csP
cub
cvE
@@ -149061,7 +141934,7 @@ czM
cBp
cCN
cxa
-boy
+cEL
bqu
cHH
cJb
@@ -149090,13 +141963,13 @@ dfo
dqp
drK
dce
-ddJ
-dqp
-dqp
-dqp
-dqp
-dqp
-dqp
+dce
+cWa
+dql
+dql
+dql
+dbg
+dql
dBH
dCX
dfu
@@ -149110,16 +141983,16 @@ dJD
dKo
dKo
dLG
+dMq
+dNb
+dNN
+dOw
+dKo
dKo
dNb
dNN
dOw
-dPe
dKo
-dNb
-dNN
-dOw
-dRT
dXJ
dSP
dTa
@@ -149216,14 +142089,14 @@ aee
agk
agF
agV
-ahD
+ahC
ahC
aim
aim
aim
aim
ajD
-ahD
+ahC
aky
akY
alv
@@ -149231,53 +142104,53 @@ alH
agF
aaa
acC
-anl
+ant
anT
aoy
acC
aqb
aqW
+asj
aqW
-asD
atC
adb
axF
awl
ayx
-aBB
-azu
-aAF
-aBC
-aBC
-aDJ
+byN
+bhO
+bhO
+bhO
+bhO
+bhO
aED
aFB
aGH
-aBC
-aBC
+bhO
+bhO
aKt
-aBC
-aBC
-aBC
-aBC
-aRI
-aBC
-aDJ
-aBC
-aBC
+bhO
+bhO
+bhO
+bhO
+bhO
+aRW
+aWl
+bhO
+bhO
aZd
baU
bfp
-aBC
-aBC
-aBC
+aWq
+bhO
+bhO
bhO
bjA
-aBC
+bhO
byN
-bos
+boo
bqs
-bsk
+bsm
btH
aaa
bwg
@@ -149288,13 +142161,13 @@ bCs
bEf
bFI
bHs
-bJh
+bOT
bKS
bMY
-bMY
+bKI
bQL
bSJ
-bJh
+bOT
aaa
bYw
caf
@@ -149302,12 +142175,12 @@ cca
cdM
cfJ
chn
-ciK
-ciK
+cpT
+csW
clS
-cnw
-ciK
-cqa
+ckv
+ckv
+cqc
crE
csQ
cuc
@@ -149318,19 +142191,19 @@ czO
cBr
cCO
cEg
-boy
+cEL
bqu
cHI
-dEj
-cKJ
-cKJ
+dEm
+cVA
+cVA
cNN
-cPx
-cKJ
-cKJ
+cVA
+cVA
+cVA
cTV
cVA
-cVA
+clA
cVA
cVA
cVA
@@ -149341,25 +142214,25 @@ dgC
diu
dnC
doS
-doS
+dnC
dnD
doY
dft
drL
cVA
cVA
-dgC
-cKJ
-cKJ
-cKJ
-cKJ
-cKJ
-cPx
+cVA
+cZR
+doY
+doY
+doY
+doY
+doY
dDb
-dIM
-dEY
-dFz
-dFz
+dXj
+dFa
+dGo
+dGo
dGU
dHS
dXm
@@ -149371,13 +142244,13 @@ dMr
dNc
dNO
dPa
-dPe
+dKo
dKo
dNb
dNO
dRG
-dRT
-dSt
+dKo
+dSB
dSR
dTF
dUq
@@ -149469,8 +142342,8 @@ acF
abj
abj
aaa
-afM
-afM
+agE
+agE
agD
agW
ahC
@@ -149488,7 +142361,7 @@ alH
agF
aaa
acC
-anl
+ant
anU
aoz
acC
@@ -149500,37 +142373,37 @@ atD
adb
axX
awm
-anT
+asB
aBj
azv
aAG
-aBD
-aCy
-aCy
-aEE
-aCy
-aGI
-aCy
-aCy
-aKu
-aCy
-aCy
-aCy
-aCy
-aRJ
-aTj
-aCy
-aWk
-aXJ
aZe
-aCy
+aZe
+aZe
+aGI
+aIg
+aGI
+aZe
+aZe
+aKu
+aZe
+aZe
+aZe
+aZe
+aZe
+aTj
+aWm
+aZe
+aZe
+aXX
+aXX
bgw
-aCy
-aCy
-bgz
+aXZ
+aXX
+aXX
bhP
bjB
-aCy
+bar
bMa
bot
bqt
@@ -149540,7 +142413,7 @@ aaa
bwh
bxr
byW
-byW
+bAy
bCt
bEg
bFH
@@ -149551,7 +142424,7 @@ bMZ
bOQ
bQM
bSK
-bJh
+bOT
abj
bYw
cag
@@ -149560,17 +142433,17 @@ cdN
cfK
cho
ciL
-ciL
+cnx
clT
cnx
-ciL
+cnx
cqb
crF
csR
cud
cvF
cxa
-cym
+cBo
czN
cBq
cCP
@@ -149579,61 +142452,61 @@ cEW
cGA
cHJ
dEl
-cKK
-cKK
+doZ
+doZ
cNO
cPy
-cKK
-cKK
-cKK
-cVB
-cKK
-cKK
-cKK
-cKK
-cKK
-cKK
-dfB
-cKK
doZ
-djU
-cKK
-cKK
-cKK
+doZ
+doZ
+doZ
+cnV
+doZ
+doZ
+doZ
+doZ
doZ
dfB
-cKK
-cKK
-cKK
-cKK
+doZ
+doZ
+doZ
+cnV
+doZ
+doZ
+doZ
+dfB
+doZ
+doZ
+doZ
+doZ
dwt
-cKK
-cKK
-cKK
-cKK
+doZ
+doZ
+doZ
+doZ
dBP
dDc
dPu
dEZ
-cKK
+dcj
dWK
-cKK
+dcS
dHT
dXn
dJD
dKo
dKo
dLI
-dLG
+dfG
dNb
dNP
dOw
-dPe
+dKo
dKo
dNb
dNP
dOw
-dRU
+dKo
dSD
dSV
dTG
@@ -149730,14 +142603,14 @@ aee
agk
agF
agX
-ahD
+ahC
ahC
ail
ail
ail
ail
ajF
-ahD
+ahC
aky
ala
alv
@@ -149745,13 +142618,13 @@ alH
agF
aaa
acC
-anl
+ant
anT
aoF
acC
aqd
-aqX
aqW
+asj
aqW
atE
adb
@@ -149761,9 +142634,9 @@ ayy
aBU
azw
aAH
-aBE
-aCz
-aCz
+aEF
+aEF
+aEF
aEF
aFC
aGJ
@@ -149773,24 +142646,24 @@ aKw
aJc
aRH
aOI
-aCz
-aRK
-aCz
-aCz
-aTk
-aWl
aEF
-aCz
+aRK
+aEF
+aSe
+aEF
+aJc
+aEF
+aEF
bgx
-aCz
-bhM
+aSe
+bhY
bhY
blq
-bhM
+bhY
bSB
bMb
-bou
-bqu
+bov
+aXY
bsm
btH
aaa
@@ -149798,17 +142671,17 @@ bwi
bxs
byV
byU
-bCr
+bEb
bEh
bFJ
bHt
-bJh
+bOT
bKU
bMY
-bMY
+bKJ
bQL
bSL
-bJh
+bOT
aaa
bYw
cah
@@ -149817,9 +142690,9 @@ cdO
cfL
chp
ciM
+czY
+cEK
ckv
-clR
-cnv
ckv
cqc
crG
@@ -149832,7 +142705,7 @@ czQ
cBt
cCQ
cEi
-boq
+cFa
cGB
cHK
dEm
@@ -149841,9 +142714,9 @@ cKL
cNP
cPz
cRh
-cSw
+diw
cTW
-cVC
+cYC
cXd
cYC
cYC
@@ -149851,47 +142724,47 @@ daO
cYC
cYC
dgw
-cSw
+diw
diw
dle
-cSw
+cJY
dmh
dnE
dpa
dsI
drM
dnE
-cSw
+nQq
cTW
dwu
dxF
-cSw
+diw
dQr
dBj
dBQ
dDd
dXj
dFa
-dFA
dGo
dGo
+dcV
dHU
dXm
dJF
dKq
dKq
-dLJ
+dKq
dMs
-dNd
-dNd
-dNd
-dPf
+dKo
+dKo
+dKo
+dKo
dKo
dKo
dRn
dKo
dRV
-dSt
+dlD
dTk
dTH
dUs
@@ -149987,14 +142860,14 @@ aee
agk
agF
agU
-ahD
ahC
ahC
ahC
ahC
ahC
ahC
-ahD
+ahC
+ahC
akz
agE
agE
@@ -150002,18 +142875,18 @@ agF
agE
aaa
acC
-anl
+ant
anT
aoA
apk
aqe
-aqY
+asE
arO
asE
atF
apj
avg
-awk
+aBm
axk
ayz
ayA
@@ -150034,49 +142907,49 @@ aGK
aGK
aGK
aGK
-aWm
+aJd
aXK
aJd
aGK
aGK
bdU
bfq
-bjz
+bhU
blr
bfq
bdU
bnd
bov
-bqu
+aXY
bsn
bsv
abj
bwf
bxt
-byU
+bse
byU
bCr
bEi
bFK
bHu
-bJh
+bOT
bKV
bMX
+bKY
bMX
bMX
-bMX
-bJh
+bOT
aaa
-bYx
-bYx
-bYx
-bYx
-bYx
+bQI
+bQI
+bQI
+bQI
+bQI
bYx
ciN
bYx
clU
-cnv
+ckv
ckv
cqc
crH
@@ -150089,7 +142962,7 @@ czP
cBs
cCR
cxa
-boo
+cFa
bqu
cHL
cJf
@@ -150114,7 +142987,7 @@ dfv
dnI
dfv
dmi
-drG
+dsU
dmi
dce
drK
@@ -150131,7 +143004,7 @@ dfu
dFb
dFB
dGp
-dFB
+ddd
dHV
dIN
dJG
@@ -150241,7 +143114,7 @@ aaa
abj
aaa
aee
-afM
+agE
agE
agT
ahC
@@ -150259,19 +143132,19 @@ aaa
aaa
aaa
acC
-ano
-anR
-aov
-apu
-aov
-anR
-aov
-aov
-aov
-apu
-aov
+ant
+anT
+aea
+aeJ
+aea
+aea
+ask
+aea
+aea
+aeJ
+aea
awo
-axk
+ayy
ayA
azx
aAJ
@@ -150304,8 +143177,8 @@ bjC
bls
bfq
bov
-bqu
-bso
+aXY
+bwm
btH
aaa
bwj
@@ -150316,15 +143189,15 @@ bCu
bEj
bFL
bHv
-bJh
+bOT
bMY
bMX
bOR
bMY
bSM
-bJh
+bOT
aaa
-bYx
+bQI
cai
ccd
cdP
@@ -150334,7 +143207,7 @@ ciO
ckw
clV
cny
-coD
+cny
cqd
crI
csU
@@ -150343,17 +143216,17 @@ cvH
cxc
cyo
czR
-cyo
-cyo
-cxc
-cEX
+cBo
+cBo
+eNm
+cFa
bqu
-cHM
+cHN
cJg
cKM
cMo
cNR
-cPB
+cPL
cRj
cSx
cTX
@@ -150498,7 +143371,7 @@ aaa
abj
aaa
aaa
-afM
+agE
agD
agE
ahE
@@ -150520,7 +143393,7 @@ ans
anV
aoB
apv
-aqf
+aqZ
aqZ
asW
asZ
@@ -150528,7 +143401,7 @@ asZ
axi
avh
awp
-axl
+aow
ayA
ayA
ayA
@@ -150541,7 +143414,7 @@ aGK
aIh
aEN
aNx
-aLX
+aUU
aNm
aOK
aQf
@@ -150549,20 +143422,20 @@ aRM
aJd
aUO
aWo
-aXN
-aZh
+aNm
+aNm
baW
-bcA
+aJd
bdW
-bfs
+bfu
bgD
bhT
bfu
blt
bfq
bov
-bqu
-bso
+aXY
+bwm
btH
aaa
bwk
@@ -150570,18 +143443,18 @@ bxv
byX
byU
bCl
-bEk
-bFM
+byU
+bFy
bHw
-bJh
+bOT
bKP
bNa
bOS
bQN
bSN
-bJh
+bOT
abj
-bYx
+bQI
caj
cce
cdQ
@@ -150589,9 +143462,9 @@ cfN
chr
ciP
bYx
-bHj
-bHj
-bHj
+bHk
+bHk
+bHk
cqe
crJ
bHj
@@ -150603,14 +143476,14 @@ czS
cBo
cCS
cEf
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKN
-cMp
+cMq
cNS
-cPC
+cRk
cRk
cSy
cTY
@@ -150633,10 +143506,10 @@ dqr
drO
dsO
duk
-dvt
+cYN
dww
-dxI
-dyV
+dww
+dwz
dAd
dwB
dBL
@@ -150773,8 +143646,8 @@ abj
abj
abj
acC
-anl
-anK
+ant
+anP
aoC
aoC
aqu
@@ -150783,7 +143656,7 @@ asX
asF
aoC
aoC
-alI
+axm
awq
axm
ayA
@@ -150799,14 +143672,14 @@ aEM
aEN
aNp
aLY
-aNn
+aZi
aOL
aQg
aRN
aJe
aUP
aWp
-aXO
+aUE
aZi
baX
aZs
@@ -150814,12 +143687,12 @@ bdX
bft
bcN
bec
-bjD
+bfu
blu
bhU
bov
-bqu
-bso
+aXY
+bwm
btH
aaa
bwk
@@ -150827,18 +143700,18 @@ bxw
byY
bAB
bCv
-bDU
+byU
bFy
bHn
-bJh
-bJh
-bJh
bOT
-bJh
-bJh
-bJh
+bOT
+bOT
+bOT
+bOT
+bOT
+bOT
aaa
-bYx
+bQI
cak
ccf
cdR
@@ -150860,12 +143733,12 @@ czT
cBu
cCT
cEe
-boo
+cFa
bqu
-cHM
+cHN
cJh
cKO
-cMq
+dea
cNT
cPD
cRl
@@ -151030,8 +143903,8 @@ aaa
aaa
aaa
adb
-anl
-anK
+akG
+als
aoC
apl
aqh
@@ -151047,7 +143920,7 @@ ayA
azz
aAL
aBH
-aCB
+aAK
aBY
aDM
aFF
@@ -151060,42 +143933,42 @@ aNo
aNo
aQh
aRO
-aTl
-aUQ
-aWq
+aJd
+aUU
+aWr
aXP
-aZj
+aNm
baY
aJd
bdY
bfu
-bdZ
+bcC
bgE
-bjE
-blv
-bhV
-bow
-bqv
-bsp
+bfu
+blu
+bhU
+bov
+aXY
+bwm
btH
aaa
bwl
-asz
+bqy
bwf
bAC
bCl
-bDU
+byU
bFy
-bHx
-bHx
+bWX
+bWX
bKX
bNb
bOU
-bHx
-aaa
+bWX
+bkY
abj
aaa
-bYx
+bQI
cal
ccg
cdS
@@ -151105,9 +143978,9 @@ ciR
bYx
aaa
aaa
-bHj
+bHk
cqg
-crL
+crP
csV
csV
cvI
@@ -151119,21 +143992,21 @@ csV
csV
cEY
bqu
-cHM
+cHN
cJh
cKO
-cMp
+dea
cNU
cPE
-cMq
+cUn
cSA
cUa
cVH
cXh
cYF
dlW
-daT
-dcj
+cXg
+cXg
ddN
dgD
dfv
@@ -151144,13 +144017,13 @@ dfv
dYc
dYi
dYk
-drQ
+drX
dsQ
duk
dvv
-dwy
-dxK
-dyX
+dwz
+dxL
+dwz
dAf
duk
dBV
@@ -151287,14 +144160,14 @@ acC
acC
adb
amN
-anl
-anK
+ant
+anP
aoD
apm
arM
arb
arS
-arb
+asC
atH
aut
avj
@@ -151303,12 +144176,12 @@ axo
ayB
azA
aAM
-aBI
aCC
-aBI
+aCC
+aCC
aEK
-aFG
-aGN
+aFJ
+aGK
aKv
aKx
aKx
@@ -151320,19 +144193,19 @@ aGK
aGK
aUR
aWr
-aXQ
-aZj
+aXP
+aNm
baZ
aGK
bbC
bfu
-bgG
+bfu
bhW
bfu
blw
bdU
bgX
-dxV
+bfy
bML
bsv
abj
@@ -151341,30 +144214,30 @@ abj
byZ
bAD
bCw
-bEa
+byU
bFN
-bHy
+bWX
bJj
-bKY
-bKY
+bLc
+bLc
bOV
-bHx
-bHx
-bHx
-bHx
-bST
-bST
-bST
-bST
-bST
+bWX
+bWX
+bWX
+bWX
+bYD
+bYD
+ciT
+bYD
+bYD
+ciS
+ciS
cht
cht
cht
cht
-cht
-cht
-cqc
-crL
+ygv
+crP
csV
cuk
cvK
@@ -151374,15 +144247,15 @@ czW
cBw
cCV
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKP
-cMq
-cNT
+dea
+cbr
cPF
-cMs
+cha
cSB
cUb
cVI
@@ -151390,7 +144263,7 @@ cXi
cYG
doC
daU
-cXg
+cvU
ddO
dgE
dgT
@@ -151407,10 +144280,10 @@ dum
dvw
dvx
dxL
-dyY
+dvx
dvx
duk
-dBW
+dCd
dDj
dEo
aaa
@@ -151527,23 +144400,23 @@ afc
adZ
adZ
agm
+age
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
+adZ
+aip
agA
-adZ
-adZ
-aig
-aip
-aiL
-aip
-aip
-aip
-aip
-aip
-als
alG
-aip
-aip
+adZ
+adZ
amz
-ang
+amL
ant
anW
aoC
@@ -151557,40 +144430,40 @@ aoC
avk
awt
axp
-ayC
+ayA
azB
aAN
aBJ
aCD
aCf
aDO
-aFH
+aGO
aGL
aHZ
aJh
aKz
-aJh
+aOf
aJh
aON
aJh
aRP
aTm
aUS
-aWr
+aTx
aXM
aZj
-baY
+aVb
aJd
bcB
-bfv
+bfu
bea
bgF
-bft
-blx
-bhX
-bou
-bqu
-bso
+bfu
+blu
+bhU
+bov
+aXY
+bwm
btH
aaa
abj
@@ -151598,53 +144471,53 @@ aaa
bwi
bAE
bCx
-bDU
+byU
bFO
-bHx
+bWX
bJk
bKZ
-bLb
-bOW
+bLc
+bLc
bQO
bSO
bUV
-bHx
+bWX
bYy
cam
cch
cdT
-bST
+bYD
cgQ
cgQ
cky
clW
cmX
cht
-cqc
-crM
-csW
+ygv
+crP
+csV
cul
-cvL
-cxg
+cxh
+cCX
cyt
-cyt
-cBx
+cCX
+cCX
cCW
-csW
+csV
cEZ
-bqv
+bqu
cHN
cJg
cKQ
-cMp
-cNT
-cPG
+dea
+cNS
cMq
+cUn
cSA
cTZ
cZF
cXg
-cXg
+cpJ
doE
daV
cXk
@@ -151654,20 +144527,20 @@ dfy
dfy
dfy
dfy
-dml
+dmi
dnK
-dph
+dmi
dsU
drS
dsS
-dun
+duk
dvt
dww
dQd
-dyZ
+dwz
dXq
duk
-dBW
+dCd
dDk
dEq
abj
@@ -151782,25 +144655,25 @@ aez
aeK
afh
aea
-aea
-aea
-aea
-aea
-aea
-ahU
-aea
-aiJ
-aea
-aea
-ajB
-aea
-aea
-aea
-aea
-aea
-aea
+afM
+ajZ
+ahg
+ajZ
+ahi
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ajZ
+ahi
+ahg
+ajZ
+ajZ
+ajZ
+ahi
amA
-amL
+amM
anu
anX
aoC
@@ -151812,7 +144685,7 @@ aoC
aoC
awx
aql
-apr
+aps
axq
ayA
azC
@@ -151822,32 +144695,32 @@ aCE
aDN
aDP
aFI
-aGO
-aGO
-aJi
-aKA
-aMb
-aGO
-aGO
-aQj
-aMb
+ayD
+ayD
+aFR
+aFR
+aOw
+ayD
+ayD
+aFR
+aFR
aTn
aUT
aWs
-aXS
-aZk
+aNm
+aNm
bba
aJd
bcB
bfu
-bdZ
+bcC
bgH
bfu
blu
bhU
box
bqx
-bso
+bwm
btH
aaa
abj
@@ -151870,7 +144743,7 @@ bYz
can
cci
cdU
-bST
+bYD
cgQ
cgQ
ckz
@@ -151889,14 +144762,14 @@ cBy
cCX
cEk
cFa
-bqx
-cHM
+qZt
+ukK
cJi
cKR
cMr
-cNT
+cbr
cPH
-cMp
+cUn
cSD
cTY
cVK
@@ -151911,17 +144784,17 @@ dgI
diA
djX
dlg
-dml
+dmi
dnL
dpi
dqw
drT
dsT
-dun
+duk
dvx
dvx
dxL
-dyY
+dvx
dvx
dwB
dBU
@@ -152042,33 +144915,33 @@ aeb
afN
agn
agH
-agH
-ahT
-agH
-agH
aiT
-agH
-agH
-akb
ahT
-agH
-agH
+aiT
+aiT
+aiT
+aiT
+aiT
+akb
+aiL
+agB
+aeb
alK
-agH
-agH
+aeb
+ajH
amB
-amM
-anj
+amL
+ant
anY
-alI
+axm
+apo
apo
-anx
ard
-amO
+aoE
ard
-atJ
auu
-anx
+auu
+apo
awu
axr
ayA
@@ -152078,8 +144951,8 @@ aBL
aCF
aCI
aDR
-aFJ
-aGO
+aJi
+ayD
aIa
aJj
aKB
@@ -152088,23 +144961,23 @@ aNq
aOO
aQk
aRQ
-aTo
+aTq
aUU
aWr
-aXQ
-aZj
+aNm
+aNm
bbb
aJd
bcB
bfu
-bgG
-bhW
+bfu
+aYc
bfu
bly
bfq
bov
-bqu
-bso
+aXY
+bwm
btH
aaa
abj
@@ -152114,20 +144987,20 @@ bAF
bCz
bEm
bFy
-bHx
+bWX
bJm
bLb
-bNd
-bOY
+bNe
+bLc
bQP
bSP
bUW
-bHx
+bWX
bYA
cao
ccj
cdV
-bST
+bYD
chv
ciS
ckA
@@ -152135,28 +145008,28 @@ clY
cnA
cht
cqj
-crL
+crP
csV
cuX
-cvN
+cCX
cxh
cyu
-czX
-cBz
+cCX
+cBC
dte
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKS
-cMp
-cNT
-cPG
+dea
+cNS
cMq
+cUn
cSE
cTX
-cVL
+cXe
cXe
cYI
cXe
@@ -152168,16 +145041,16 @@ dgJ
diB
djY
doF
-dml
+dmi
dnN
dpj
dqx
drU
dsV
-duo
+dum
dvt
dwz
-dxL
+day
dza
dAh
duk
@@ -152303,21 +145176,21 @@ agI
aif
agI
agI
-aiu
agI
agI
-ajH
+agI
+agI
akV
akB
alc
akB
-alI
+axm
awY
-alI
-alI
+axm
+axm
anv
anZ
-alI
+axm
app
aqk
aob
@@ -152336,10 +145209,10 @@ aCG
aDj
aEH
aFK
-aGO
+ayD
aIb
-aJk
-aKC
+aRX
+aEU
aMd
aNr
aOP
@@ -152348,19 +145221,19 @@ aRR
aNv
aUV
aWs
-aXQ
-aZj
+aNm
+aNm
bbc
bQb
bcC
bfu
bgG
-bhW
+aYe
bfu
blz
bfq
bov
-bqu
+aXY
bsq
bsv
abj
@@ -152369,13 +145242,13 @@ abj
bwf
bAG
bCl
-bDU
+byU
bFQ
-bHx
+bWX
bJn
-bLc
+bJf
bNe
-bOZ
+bLc
bQR
bSR
bUY
@@ -152398,19 +145271,19 @@ cvJ
cvY
cxJ
cyI
-czZ
-cBB
+cCX
+cBC
cDa
csV
-boo
+cFa
bqu
-cHM
+cHN
cJg
cKT
-cMq
-cNT
-cPG
-cMp
+dea
+cbr
+dea
+cUn
cRm
cJg
cVM
@@ -152423,19 +145296,19 @@ ddS
dfy
dgK
diC
-djZ
+dka
dli
-dml
+dmi
doa
dpk
-dqy
+dqz
drV
dsZ
-dun
+duk
dvx
dvx
dxL
-dyY
+dvx
dvw
duk
dBY
@@ -152563,43 +145436,43 @@ ait
aiW
aje
ajC
-ajI
+agI
akc
akC
ald
akB
alJ
alZ
-amb
-alI
+apo
+axm
anz
aoe
-alI
+axm
apq
aql
-alI
-alI
-alI
+axm
+axm
+axm
ave
-alI
-alI
-alI
+axm
+axm
+axm
axt
ayA
azF
aAR
-aBN
+aCH
aCH
aDQ
aEP
aFL
-aGO
+wXI
aIc
-aJl
-aKD
aMe
+aKD
+aKD
aNs
-aKE
+aJk
aQm
aRS
aTq
@@ -152617,8 +145490,8 @@ bjF
blA
bdU
boy
-bqu
-bso
+aXY
+bwm
btH
aaa
abj
@@ -152626,9 +145499,9 @@ aaa
bwf
bAt
bCl
-bDU
+byU
bFx
-bHx
+bWX
bJo
bLd
bNf
@@ -152636,17 +145509,17 @@ bLc
bQS
bSS
bUZ
-bHx
+bWX
cfa
caq
ccl
cdX
-cfR
+bYD
chx
-ciT
+ciS
ckC
cma
-cnC
+cnB
coG
cql
crP
@@ -152655,7 +145528,7 @@ csV
cvO
cxi
cyv
-czY
+cvO
cBA
cCZ
csV
@@ -152667,32 +145540,32 @@ cKU
cMs
cNV
cPI
-cMq
+cUn
cSF
cUc
cVN
cXn
-cYK
-cZH
+cSA
+cJg
daZ
dcn
-ddT
+ddU
dfz
dgL
diC
dka
dlj
-dmm
+dta
dnO
dpl
dqz
drW
dsW
-dun
+duk
dvy
dwA
dxN
-dyZ
+dwz
dAi
duk
dBU
@@ -152812,35 +145685,35 @@ afe
afy
afQ
agp
-agJ
+agI
agZ
ahH
-ahY
-aiq
-aiM
-aiY
+ahZ
+air
+aiN
+aiN
ajg
-ajJ
+agI
akd
-akD
+ale
ale
alz
alX
ama
amC
-alI
-alI
-alI
-alI
-apr
+axm
+axm
+axm
+axm
+aps
aqm
-alI
+axm
arV
asI
atM
auw
avm
-alI
+axm
axs
ayA
ayA
@@ -152850,32 +145723,32 @@ ayA
aDS
ayA
ayA
-aGO
-aGO
-aMw
+ayD
+ayD
+aFR
aKE
-aQo
-aGO
-aGO
-aJi
-aRT
+aFR
+ayD
+ayD
+aFR
+aFR
aTn
ayD
bai
bcI
-aZm
+ayD
bbe
bbe
bbi
bin
-bgJ
+bbi
blJ
bbi
bbe
bbe
boz
-bqu
-bso
+aXY
+bwm
btH
aaa
abj
@@ -152883,22 +145756,22 @@ aaa
bwf
aot
bCA
-bDT
+bEk
asz
bHx
bJp
bLe
bNg
bPa
-bHx
-bST
-bST
-bST
+bWX
+bYD
+bYD
+bYD
bYD
car
ccm
cdY
-bST
+bYD
chy
ciU
cjY
@@ -152906,46 +145779,46 @@ cmb
cnD
cht
cre
-crL
+crP
csZ
csV
cvP
cxj
cyw
-cAa
+cBv
cBC
-cDb
+cDf
cEl
cGK
bqu
-cHM
+cHN
cJh
cKV
-cMq
-cNT
-cPD
-cMp
+dea
+cbH
+ceQ
+cUn
cSF
cUd
cUn
cXo
cYL
cZI
-cPG
+ctr
dco
-ddU
+cSA
dfz
dgM
-diD
+diC
dkb
dlq
dnM
-dnP
+dpm
dpm
dqA
drX
dsX
-dun
+duk
dvz
dww
dxO
@@ -153071,33 +145944,33 @@ afR
agq
agI
aha
-ahG
+ahj
ahZ
air
aiN
aiN
ajh
-ajH
+agI
ake
akE
alf
akB
-alL
+aps
amb
amD
-amO
-anx
-amO
+aoE
+apo
+aoE
aoE
aps
aqn
are
arW
asJ
-atN
+aKd
aux
arW
-alI
+axm
axu
ayD
azG
@@ -153111,7 +145984,7 @@ aJm
aId
aJn
aKF
-aMg
+aKF
aNt
aQu
aSq
@@ -153131,8 +146004,8 @@ bjG
blB
bbe
boy
-bqu
-bso
+aXY
+bwm
btH
aaa
abj
@@ -153140,7 +146013,7 @@ aaa
bwf
bAs
bCB
-bEn
+bAs
bAs
bHx
bJq
@@ -153148,22 +146021,22 @@ bLf
bLf
bLc
bQT
-bST
+bYD
bVa
bWY
bYE
cas
ccn
cdZ
-bST
+bYD
chz
ciS
ckD
cmc
cnE
coH
-cqc
-crL
+ygv
+crP
cta
csV
cvQ
@@ -153175,38 +146048,38 @@ cDc
cEp
cGK
bqu
-cHM
+cHN
cJg
cKW
-cMp
+cMq
cNS
-cPC
+cRk
cMq
cSF
cUd
cVO
-cMq
+cnX
cSF
cJg
-cPG
-dcp
-ddU
+cKO
+dqW
+cSA
dfz
dgN
diE
dkc
dll
-dmo
+dta
dnQ
dpn
dqB
drY
dsY
-dun
+duk
duk
dwB
dAo
-dzc
+dBk
duk
duk
dCa
@@ -153334,7 +146207,7 @@ aiA
aiN
aiN
aiN
-ajH
+agI
akf
akF
alg
@@ -153367,8 +146240,8 @@ aGQ
aKb
aBS
aJo
-aKG
-aES
+aBS
+aCN
aCN
aBS
aKK
@@ -153376,20 +146249,20 @@ aRV
aTs
aUY
aWw
-aXW
+aBS
aZo
-bbg
+bbi
bcE
-bee
-bfy
-bgL
+bfA
+bfA
+bfA
bib
bjH
blN
bbi
bov
-bqu
-bso
+aXY
+bwm
bsv
btH
btH
@@ -153397,7 +146270,7 @@ btH
bwf
bAr
bCl
-bDU
+byU
bFR
bHx
bJr
@@ -153405,34 +146278,34 @@ bLg
bNh
bPb
bQU
-bST
+bYD
bVb
bWZ
-bYF
+bYD
cat
cco
cea
-bST
+bYD
chA
ciS
ckF
cmd
cnG
cht
-cqc
-crL
+ygv
+crP
ctk
csV
cvR
cxl
cyy
cBv
-cBH
+cCX
cDf
cEp
cGK
bqu
-cHM
+cHN
cJg
cKX
cMt
@@ -153445,25 +146318,25 @@ cVP
cXp
cYM
cKY
-cPG
-dco
-ddU
+cKO
+dqW
+cSA
dfy
dgO
diF
dkd
dlm
-dml
+dmi
dnR
dpo
dqC
drZ
dtf
-dun
+duk
dvA
dww
dxQ
-dzd
+dvE
dAk
duk
dCb
@@ -153585,77 +146458,77 @@ aeB
abj
agI
ahc
-ahG
+ahk
aib
aiB
aiN
aiN
-aiN
-ahd
+ahY
+agI
akg
-akG
+ahe
alh
agK
alN
amd
amF
alN
-alI
+axm
alN
amF
alN
-alI
-alI
+axm
+axm
arY
-amb
+apo
atO
asM
avo
-alI
+axm
axu
ayD
azI
aAV
-aBR
-aDi
-aDU
-aER
aGR
aDi
-aDU
+aTu
+aTu
+aGR
+aJv
+aTu
aJp
-aKH
-aMh
+aTu
+aNu
aNu
aNu
aTV
-azL
+aPD
aTt
-aUZ
+aSG
aWx
-aXX
+aTu
aZp
bcO
bcF
-bef
+bfz
bfz
blE
bic
-bfy
+bfA
bnf
bNB
-boA
-bqv
+cpO
+aXY
bsr
bsv
btI
btI
btJ
bwf
-aot
-bCA
-bDT
-asz
+bDU
+bEc
+bEn
+bFE
bHx
bHx
bHx
@@ -153689,7 +146562,7 @@ csV
csV
cGL
dxV
-dWO
+lso
cJk
cKY
cJg
@@ -153702,21 +146575,21 @@ cJg
cXr
cJg
cKY
-cPG
-dco
+cKO
+dqW
dlh
dfA
dfz
diH
dki
dfz
-dml
-dnS
-dpp
-dqD
-dsa
+dmi
dta
-dun
+dta
+dta
+dta
+dta
+duk
dvB
dwC
dxR
@@ -153844,108 +146717,108 @@ agI
ahd
ahJ
agI
-aiu
+agI
aiO
aiO
-aiO
-ahd
-akg
-aiw
+aig
+agI
+aiM
+ahe
ali
agK
alO
ame
amG
amQ
-any
+alk
aoc
-aoH
+apo
apw
aqp
arf
arW
-alZ
+auu
atP
-asM
-asM
+axf
+axf
aww
-axu
+aBN
ayD
azJ
-aAV
+aDI
aBS
-aCL
aCN
-aES
aCN
-aBS
+aCN
+aCN
+aJX
aEQ
aJo
aNw
aBS
aEY
aCN
-aUj
-aRW
-aDU
-aDU
+aWz
+azL
+aBS
+aBS
aWy
-aXY
+aBS
aZq
bbi
bcG
beg
bfA
-bgN
+bgS
bid
bjI
bnh
bbi
bov
-bqy
-bss
-coE
-buZ
+aXY
+bwm
+coE
+bwm
+bwm
bwm
-buZ
bza
-bAH
+bEo
bCC
bEo
-bAH
+bEo
bHA
-buZ
-buZ
-buZ
-buZ
+bwm
+bwm
+bwm
+bwm
coE
bwm
bVc
-buZ
-buZ
bwm
-buZ
-buZ
-buZ
-buZ
+bwm
+bwm
+bwm
+bwm
+bwm
+bwm
ciV
ckH
-buZ
-buZ
+bwm
+bwm
coE
cqn
crR
-buU
+cFa
cun
-bqm
+cFa
cxm
cyz
-buU
-buU
-buU
-buU
-bos
-cGC
+cFa
+cFa
+cFa
+cFa
+cFa
+bqu
cHP
dWP
cKY
@@ -153953,33 +146826,33 @@ cMu
cNR
cPL
cRn
-cRn
+cKO
cUe
-cRn
-cYU
-cYN
+ckg
+cMq
+cKO
cZJ
-dba
-dcq
-ddW
+cKO
+don
+cSA
dgx
-dgP
+cSA
diJ
dkf
-dln
+dqE
dmp
-dln
-dpq
+dqE
+cSA
dqE
dsb
dtb
-dup
+duk
dvC
dwD
dxS
-dzf
-dAm
-dBl
+dww
+dAi
+dBk
dCd
dDk
dEq
@@ -154099,7 +146972,7 @@ aeB
abj
agK
ahe
-ahK
+ahe
ahe
aiv
aiP
@@ -154111,43 +146984,43 @@ akH
alj
agK
alP
-ame
-amG
+ajI
+ajM
amR
anA
-amb
+apo
aoI
-amb
-alI
+apo
+axm
arg
arZ
asL
atQ
-alZ
+auu
avp
-ayS
+are
axv
ayE
azK
aAW
aBT
-aCM
-aDV
aET
-aDV
-aDV
+aET
+aET
+aET
+aKG
aKL
aJq
-aOQ
-aMi
-aQq
-aOR
-aUo
-aRX
-aTu
-aTu
+aIe
+aBS
+aEZ
+aCN
+aWz
+azL
+aBS
+aBS
bbh
-aXZ
+aBS
bcJ
bbe
bcH
@@ -154160,32 +147033,32 @@ blF
bbe
boB
bqz
-bst
+bva
bSi
bva
-bwn
+bva
btK
bva
bva
bCD
-bEp
-bFs
+bva
+bFM
bHB
bva
bva
bva
bva
bSi
-bwn
+bva
bVd
bva
bva
-bZU
+bYF
+bva
bva
bva
bva
bva
-bwn
ckI
bva
bva
@@ -154194,28 +147067,28 @@ cqo
crS
bva
bva
-bwn
+bva
bva
bva
bva
bva
cDd
bva
-bEp
+bva
cGD
-bsh
+kCi
dWQ
cKY
cMv
cNY
cPM
-cMs
+aMb
cSH
-cMs
cSH
-cMs
+cki
+cYO
+cYO
cYO
-cSH
dbb
dcr
ddX
@@ -154223,12 +147096,12 @@ dgy
dgQ
diI
dkg
-dlo
+dqF
dKV
-dlo
+dgQ
dpr
dqF
-dkg
+dqF
dtc
duq
dvD
@@ -154356,15 +147229,15 @@ aeC
abj
agK
ahf
-ahK
-ahe
-aiw
ahe
ahe
ahe
ahe
ahe
-aix
+ahe
+ahe
+aiY
+ahe
afA
agK
alQ
@@ -154375,116 +147248,116 @@ anC
aod
aoJ
apx
-alI
+axm
arh
-alZ
+auu
asM
atR
asK
arW
-awy
-axw
-ayD
-azL
+ayS
+osS
+wXI
+ixB
aFO
aBS
aCN
aBS
-aES
aCN
aCN
+aLa
+aBS
aBS
aBS
aBS
-aMj
aBS
aCN
aWu
aRV
-aBS
-aBS
+aRX
+aEU
aWA
-aYa
+aUG
bcK
bbe
bbe
bbi
bio
-bgJ
+bbi
blK
bbi
bbe
bbe
boC
bqA
-bsu
+bEq
bSV
-bvb
-bwo
+bEq
+bEq
bxz
bzb
-bvb
+bEq
bCE
bEq
-bEq
+bHm
bHC
-bvb
-bvb
-bvb
+bEq
+bEq
+bEq
bPc
bSV
bSU
bVe
bXa
-buW
+bSF
cau
-buW
-buW
+bSF
+pfp
cfS
-chB
-ciW
+cnw
+cnC
ckJ
cme
-buW
-cqm
+bSF
+jUC
cqp
crT
ctb
cuo
-bsf
-buW
+rjr
+bSF
cyA
-buW
-buW
-buW
-buW
+bSF
+bSF
+bSF
+bBV
cFc
cGE
cHQ
dWR
cKY
cMw
-dlp
-cPN
-cRo
-cRo
+cKV
+cKV
+aMw
+cKV
cUf
cRo
-cRo
-cRo
-cRo
-dbc
-dcn
-ddY
-dgz
-dgR
-dlc
+cKV
+cKV
+cKV
+cKV
+don
+cSF
+dil
+cSF
+cSF
dld
-dkh
+cSF
dmr
-dkh
+cSF
dps
-dkh
+cSF
dsc
dtd
duk
@@ -154612,17 +147485,17 @@ aeC
abj
abj
agK
-ahg
-ahL
ahe
+ahe
+ahD
aix
+aix
+aix
+aix
+aix
+aji
ahe
-ahe
-ahe
-ahe
-ahe
-ahe
-ahe
+ajG
agK
alR
amg
@@ -154636,32 +147509,32 @@ aqp
ari
asa
asN
-amb
+auJ
asJ
avn
awy
-axu
+aBZ
ayD
azM
aFO
aEY
aCN
aEQ
-aES
-aHz
aCN
+aHz
+aLa
aEX
aBS
aOS
-aMk
+aCN
aOS
aCN
aWz
azL
-aTv
+aTw
aUZ
-aWA
-aYb
+aWy
+aBS
bcL
bbe
bfw
@@ -154677,15 +147550,15 @@ bng
bsv
bsv
btH
-bwp
+btH
bxA
btH
btH
bsv
bsv
-bng
+bgs
bHD
-bng
+bgs
bLh
bLh
bLh
@@ -154698,8 +147571,8 @@ bYH
bYH
bYH
bYH
-cfT
-cui
+bYK
+bZi
bYK
bYH
bYH
@@ -154714,29 +147587,29 @@ cxn
cxn
cxn
cxn
-bng
+cxn
bng
cGF
-cHR
bng
bng
-cMx
-cMx
-cPO
-cPO
-cPO
-cMx
-cMx
-cXs
+bng
cYP
-cMx
+cYP
+cPO
+aQj
+cPO
+cYP
+cYP
+cYP
+cJg
+cJg
dci
ddM
dfr
cKY
cJg
-cZN
-cZN
+czB
+cEC
cJg
dms
dnT
@@ -154871,30 +147744,30 @@ abj
agK
ahh
ahe
+ahK
ahe
ahe
ahe
ahe
ahe
-ajL
aki
-aki
-alk
+ahe
+ahe
agK
alS
-ame
+ajJ
amI
-amS
+ajY
aoa
-aod
-aoJ
+ang
+apO
apz
-alI
+axm
arj
-ame
-ame
-atR
-amb
+amG
+amG
+auO
+apo
avq
awy
axw
@@ -154904,27 +147777,27 @@ aFO
aIe
aBS
aEX
-aEU
+aBS
aIe
-aCN
+aLa
aEQ
aBS
aQn
-aMk
+aCN
aQr
aCN
aKK
azL
aTw
aVa
-aWA
-aYc
+aWy
+aBS
aZu
bel
bfC
-bej
-bfE
-bgQ
+ben
+bgT
+bgT
bih
bjL
boD
@@ -154934,15 +147807,15 @@ bng
aaa
abj
aaa
-bwp
+btH
bxA
btH
aaa
abj
aaa
-bng
+bgs
bHE
-bng
+bgs
bLi
bNi
bPd
@@ -154955,8 +147828,8 @@ cav
ccp
ceb
cay
-chC
-ciY
+cax
+cax
cax
cmf
cvu
@@ -154964,36 +147837,36 @@ coI
cqq
bYH
ctd
-cuq
-bsh
+cuu
+bqv
cxn
cyB
cAc
cBE
-cDe
-cEm
+cyB
+cxn
cFd
-ckW
+hos
cmt
-cJn
+bMD
cKZ
-cMy
+cYP
cOa
-cPP
+cPQ
cRp
cSI
cUg
-cPO
-cXt
-cYQ
-cPO
-dbe
-dco
-cNT
+aQo
+cYP
+cYS
+cZL
+cKO
+aRT
+cSA
cJg
dgS
cMp
-cMp
+cFe
dFE
dmt
dnU
@@ -155126,27 +147999,27 @@ abj
abj
aaa
agK
-ahg
ahe
ahe
ahe
ahe
ahe
ahe
-ajM
+ahe
+ahe
ahe
ahe
all
agK
alT
-amg
-amg
+ajL
+ajN
amU
anC
aof
-aoI
+apP
apA
-alI
+axm
amQ
asb
asO
@@ -155154,31 +148027,31 @@ atS
auy
avr
awy
-axs
+aCd
ayD
azO
aFO
aEQ
aBS
-aEY
+aFG
aEU
-aEQ
-aCN
+aIP
+aLX
aMf
+aMz
+aNb
aBS
-aEQ
-aMj
aEX
aBS
-aWC
+aKK
aRY
-aTx
-aVb
+aDX
+aDX
aWB
aYd
aZv
bey
-bfM
+boF
bek
bfF
bgR
@@ -155189,64 +148062,64 @@ bQa
bQg
bng
aaa
-btL
+abj
btL
bwq
bxB
bzc
btL
-btL
+abj
aaa
-bng
+bgs
bHF
-bng
+bgs
bLj
bNj
bPe
bQW
bSX
bVg
-bXd
-bYI
-caw
-caw
-cec
-cec
-chD
-ciZ
-caw
-caw
-caw
-caw
-cec
-bYI
-cte
-cuq
-bsh
+bXc
+bYK
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+bYK
+ctd
+cuu
+bqv
cxn
cyC
cAd
cBF
+cAc
cxn
-cjp
+bDD
+buF
boG
-cGG
-cHS
boG
cLa
-cMy
+cYP
cOb
cPQ
cRq
cSJ
cUh
cVQ
-cXu
+cYP
cYR
-cZK
-dbf
+cZL
+cUn
dct
-cNT
+dea
cKY
dgU
diL
@@ -155383,29 +148256,29 @@ abj
abi
abj
agK
-ahi
ahe
ahe
ahe
ahe
ahe
ahe
-ajM
ahe
ahe
-alm
+ahe
+ahe
+ahe
agK
alQ
-ame
-amg
+amG
+ajL
amV
-alI
+axm
aog
aoL
apW
-alI
+axm
are
-alI
+axm
amh
amh
are
@@ -155418,26 +148291,26 @@ aFO
aBP
aBS
aEZ
-aEV
+aBS
aEZ
aBS
aEZ
aBS
aNw
-aMl
+aBS
aEZ
aBS
aWG
aRZ
aSa
-aVc
+aSa
bbj
-aYe
-aZw
+aSa
+aSa
aSb
bfN
bhZ
-bfG
+bfI
bfA
bij
bjN
@@ -155447,14 +148320,14 @@ boG
bqB
abj
btL
-bvc
+btL
bwr
bxC
bwv
-bvc
+btL
btL
abj
-bng
+bgs
buY
bxx
bLk
@@ -155462,48 +148335,48 @@ bNk
bPf
bQX
bSY
-bVg
+xLe
bXc
bZi
cax
ccq
ced
-ced
-cax
+ltg
+caw
cja
ckK
-ccq
-cax
-cax
+qmW
+mQk
+mQk
chC
-bZi
+lEt
ctf
-cur
-cvT
+cus
+bsg
cxn
cyD
+bBk
cAc
-cBF
-cDe
+cyD
+cxn
+bEH
+cGJ
boG
-cjn
-cGH
-cHT
boG
cLb
-cMy
+cYP
cOc
cPR
cRr
cSK
cUi
cVR
-cXv
+cYP
cYS
cZL
-dbg
-dcu
-dea
+cKV
+aRT
+cSF
cJg
dgV
diK
@@ -155512,17 +148385,17 @@ dls
dmu
dnW
dpw
-dqJ
+dxW
dsf
dth
dut
dvH
dwI
dxW
-dxW
+dba
dXz
dmt
-dBW
+dCd
dDh
dEq
aaa
@@ -155626,7 +148499,7 @@ aaa
abj
aaa
aaa
-abW
+kYo
ace
aco
aaa
@@ -155640,27 +148513,27 @@ aaa
abi
abj
agK
-ahj
+ahe
+ahl
+ahL
+ahe
ahe
ahe
ahe
-agK
ahe
-aji
-ajN
akj
akI
-ajK
+ahe
agK
-alI
+axm
amh
amh
-alI
-alI
-alI
+axm
+axm
+axm
aoM
-alI
-alI
+axm
+axm
abj
abj
acF
@@ -155687,7 +148560,7 @@ aKI
aXU
aSa
aTy
-aVd
+aYf
aWD
aYf
aZx
@@ -155695,7 +148568,7 @@ bbl
bfN
bif
bfH
-bgS
+aXS
bik
bjO
bbe
@@ -155705,61 +148578,61 @@ bqC
aaa
btL
bvd
-bws
+bwv
bxD
-bwu
+bwv
bAI
btL
aaa
-bng
+bgs
bHH
-bng
+bgs
bLl
bNl
bPg
-bQY
-bSZ
-bVh
-bXe
+bQW
+bSX
+bVg
+bXc
bYK
cay
ccq
cee
-ced
+ccq
cax
cjb
ckL
-cmg
-cnI
-coJ
+ccq
+cay
+cax
cqr
-crU
-ctg
-cus
-cvU
+bYK
+ctj
+cuu
+bqv
+cxn
cxn
-cyE
cAe
-cBG
cxn
cxn
cxn
+bng
cGI
-cHU
-boG
-cLc
-cMy
-cMx
-cPS
-cRs
-cSL
-cMx
-cMx
-cXw
-cYT
-cMx
-cPG
-dcp
+cJp
+dfK
+bng
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cJg
+cJg
+daZ
+dcn
ddU
cKY
diG
@@ -155769,7 +148642,7 @@ dmj
dmu
dnX
dpx
-dqK
+dvG
dsg
dti
duu
@@ -155879,15 +148752,15 @@ aaa
aaa
abj
aaa
-abW
+kYo
ace
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
ace
aco
aaa
@@ -155897,13 +148770,13 @@ abj
abi
abj
agK
-ahk
-ahk
-ahk
+agK
+agK
+agK
aiy
-agK
-agK
-agK
+aiy
+aiy
+aiu
agK
agK
agK
@@ -155913,11 +148786,11 @@ abj
acF
acF
abj
-alI
+axm
aox
aph
apY
-alI
+axm
abj
asc
asc
@@ -155941,10 +148814,10 @@ aDX
aDX
aSw
aQv
-aYt
+aKJ
aSa
aTz
-aVe
+aYg
aWE
aYg
aZy
@@ -155954,7 +148827,7 @@ bhZ
bfI
bgS
bil
-bjP
+bjL
bxy
bng
boH
@@ -155968,60 +148841,60 @@ bzd
bAJ
btL
aaa
-bng
+bgs
bHF
-bqC
+bgt
bLm
bTd
bPh
bLh
-bTa
+bSX
bVg
bXc
bYH
ccO
ccq
ccq
-ced
+ccq
cax
-cja
+oHY
ccq
ccq
ccq
coK
-chC
+cqr
bYH
-cth
-cuq
-bsh
+ctj
+cuu
+bqv
cxn
cyF
-cAf
-cCU
+bBu
+cEj
cEj
cEn
-cFe
+cxn
cGJ
-cHV
-cJo
boG
+cJo
+bRw
cKY
cOd
-cPT
-cRn
-cSM
+cKO
+cKO
+cKO
cUj
-cRn
-cRn
-cRn
+cKO
+cKO
+cKO
cZM
-dbh
-dco
-ddU
+cKO
+dqW
+cSA
cJg
dgS
cMp
-cMp
+cFA
dJE
dmt
dnY
@@ -156136,15 +149009,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
@@ -156153,12 +149026,15 @@ acp
aaa
abj
abj
-agL
-ahl
-ahM
+aaa
+aaa
+aaa
ahM
aiz
agL
+agL
+aiw
+ahM
aaa
aaa
aaa
@@ -156167,14 +149043,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-alI
+axm
aoi
-aoN
+dZP
dZS
-alI
+axm
abj
asc
asP
@@ -156198,7 +149071,7 @@ aJE
aJE
aQs
aQv
-aYt
+aKJ
aSa
aTA
aVf
@@ -156219,15 +149092,15 @@ bng
aaa
btL
bvf
-bwu
+bwv
bxF
-bwu
+bwv
bAK
btL
aaa
-bqC
+bgt
bHF
-bqC
+bgt
bLn
bLn
bLn
@@ -156239,7 +149112,7 @@ bYH
bYK
bYK
bYK
-cfT
+bYK
cgK
cjc
bYK
@@ -156248,37 +149121,37 @@ bYK
bYH
cqs
bYH
-cth
-cuq
+bwL
+bxe
bsh
cxo
-cyG
+cAf
cAg
cBI
cDg
cDg
cJl
dzi
-cHW
+cTa
cJp
-boG
+bRF
cKY
cOe
cMq
-cMp
-cNS
+cMq
+cMq
cUk
-cMq
-cMp
-cMq
+ckl
+dbi
+dbi
cZN
dbi
dco
dfE
cKY
cJg
-cZN
-cZN
+czB
+cFB
cJg
dms
dnT
@@ -156293,7 +149166,7 @@ dmt
dmt
dmt
dmt
-dbo
+cKY
dDt
cKY
cKY
@@ -156393,15 +149266,15 @@ aaa
aaa
abi
abj
-abW
+kYo
acf
aco
abj
-abW
+kYo
acf
aco
abj
-abW
+kYo
acf
aco
abj
@@ -156427,11 +149300,11 @@ aaa
aaa
aaa
aaa
-alI
+axm
dZP
dZR
dZU
-alI
+axm
abj
asc
asQ
@@ -156442,20 +149315,20 @@ awD
axB
auE
ayD
-aBb
-aBZ
-aCP
+aFR
+aFR
+aFR
aGP
aFN
aFR
aFN
aIk
-aJt
-aBZ
-aBZ
-aBZ
-aBZ
-aQw
+aFR
+aFR
+aFR
+aFR
+aFR
+aFR
aSb
aTB
aVg
@@ -156479,10 +149352,10 @@ bvg
bwv
bxG
bwv
-bvc
+btL
btL
abj
-bng
+bgs
bHI
bJt
bLn
@@ -156496,14 +149369,14 @@ bYH
caA
ccr
cef
-cfU
+chF
chF
cjd
ckM
cmh
cnJ
coL
-chC
+cqr
bYH
cnO
cti
@@ -156515,46 +149388,46 @@ cBJ
cxn
cxn
cxn
-ckV
-cmt
+xQW
boG
boG
+bSe
cKY
-cOf
+dbn
+cKV
cKV
cKV
-cSN
-cPN
cRo
-dkh
-cRo
-cZP
-dbj
-dcn
-dfG
-cZP
+cNW
+cKV
+cKV
+dci
+cMq
+don
+cSA
+dgx
+cSA
+cSA
+cHV
dgW
-dld
-dld
-cYK
dmv
-dgW
+cSA
dpA
-cYK
-cYK
-cYK
+cSA
+cSA
+cSA
duw
-cYK
+cSA
dwK
dgW
-dgW
-cYK
-dBn
+cSA
+cSA
+cJk
dCh
dDu
dEr
dFc
-dFD
+cTX
dLa
dLd
dLY
@@ -156650,15 +149523,15 @@ aaa
aaa
abj
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
-abW
+kYo
acf
aco
aaa
@@ -156684,11 +149557,11 @@ aaa
aaa
aaa
aaa
-alI
+axm
dZO
dZQ
dZT
-alI
+axm
abj
asd
afO
@@ -156701,7 +149574,7 @@ auE
abj
abj
abj
-aCQ
+aJu
aGf
gyp
aFS
@@ -156713,13 +149586,13 @@ abj
abj
abj
abj
-aSc
+aSa
aTC
aVh
aWH
aYi
aZB
-aSc
+aSa
bgW
beo
bfL
@@ -156727,17 +149600,17 @@ bgU
bim
bjS
bMn
-bnj
+bbi
abj
aaa
aaa
+aaa
btL
btL
btL
btL
btL
-btL
-btL
+aaa
aaa
bFS
bFS
@@ -156753,7 +149626,7 @@ bYH
caB
ccs
ceg
-cfV
+cml
cgL
cje
ckN
@@ -156762,20 +149635,20 @@ cnK
coM
cqt
bYH
-cth
-cuq
-bso
+ctj
+cuu
+ckH
cxn
czU
-cAf
+bBu
cBK
cDh
cEo
cxn
-ckW
-cHX
-cJq
-cJq
+cUA
+cMz
+cMz
+cMz
cMz
cOg
cOg
@@ -156783,33 +149656,33 @@ cMz
cSO
cUr
cXl
-cXK
+dbu
cUr
dbs
-dbk
+cMp
dcv
ded
dgB
dgX
-cXx
-cVT
-cXx
-cVT
-dnZ
-dpB
-cXx
-cVT
-cXx
-dux
-cXx
+dgX
cVT
dxZ
-dux
+dgX
+dnZ
+dpB
+dgX
+dgX
+dgX
+dgX
+dgX
+dgX
+dxZ
+dgX
dAt
dBo
dCi
dDv
-dgX
+dbH
dFd
dTx
dLb
@@ -156907,7 +149780,7 @@ abj
abi
abi
abj
-abW
+kYo
acf
aco
aaa
@@ -156915,7 +149788,7 @@ aaa
acE
aaa
aaa
-abW
+kYo
acf
aco
aaa
@@ -156941,11 +149814,11 @@ aaa
aaa
aaa
aaa
-alI
-alI
-alI
-alI
-alI
+axm
+axm
+axm
+axm
+axm
abj
asc
aqG
@@ -156958,39 +149831,39 @@ asd
aaa
aaa
aaa
-aCR
-aIg
-aFP
-aBZ
-aFP
-aJs
-aJv
+aFR
+aGP
+aFN
+aFR
+aFN
+aIk
+aFR
aaa
aaa
aaa
aaa
abj
-aSd
+aSa
aTD
-aVi
+aYg
aWI
-aVi
+aYg
aZC
-bbm
-bcP
-bep
+aSa
+bbi
+bes
+bbi
+bbi
+bbi
+bbi
bbi
-blG
bbi
-bjT
-blO
-bnk
abj
aaa
aaa
aaa
abj
-aaa
+aaZ
abj
aaa
abj
@@ -157010,7 +149883,7 @@ bYH
caC
cct
ceh
-cfW
+chH
chH
cjf
ckO
@@ -157019,18 +149892,18 @@ cnL
coN
cqt
bYH
-cth
-cuq
-bso
+ctj
+cuu
+ckH
cxn
czU
-cAf
+bBu
cBK
cxn
cxn
cxn
-ckW
-cHX
+cUA
+cMz
cJr
cLd
cMA
@@ -157043,27 +149916,27 @@ cXq
dcE
cZp
cUr
-dcA
-dcq
-dgA
+cKV
+cwo
+cSF
dil
-dgY
+cSF
diM
-dgY
+cSF
dlu
-dgY
-dob
-dpC
-dgY
+cSF
+dqW
+cSF
+cSF
dsi
-dgY
-dgA
+cSF
+cMq
+cSF
+diM
dlu
-dgY
-dgY
-dgA
-dlu
-cOl
+cMq
+hmC
+cKY
dCj
dDw
dEs
@@ -157076,7 +149949,7 @@ dIX
abj
dKA
dNi
-dLS
+dLT
dMx
dNk
dRh
@@ -157210,7 +150083,7 @@ aus
auC
avw
ayH
-axy
+aCm
asc
aaa
aaa
@@ -157227,19 +150100,19 @@ aaa
aaa
aaa
abj
-aSe
+aSa
aTE
aVj
aWJ
aYj
aZD
-aSe
-abj
+aSa
+aVX
beq
blC
-blH
-blL
-beq
+bbi
+aaa
+aaa
abj
abj
abj
@@ -157257,7 +150130,7 @@ bFT
bHK
bJw
bLp
-bNp
+bLp
bPl
bFS
bTb
@@ -157271,7 +150144,7 @@ cfX
chI
cjg
ckP
-cmk
+cml
cnM
coO
cqt
@@ -157280,19 +150153,19 @@ ctj
cuu
cvW
cxn
-czU
+bAd
cAi
cBL
cDh
cEq
cDe
-ckW
-cHX
+cUA
+cMz
cJs
cLe
cMB
-cMB
-cMB
+cbI
+cfw
cRu
cSQ
cVS
@@ -157302,27 +150175,27 @@ cZO
dbt
deb
dcw
-cNS
-dfC
-dfD
-dfD
-dfD
+dux
+cJk
+cKY
+cKY
+cKY
dlv
-dfF
+dCo
dof
-dfF
-dfD
-dfD
-cJg
+dCo
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
+cXJ
dSd
dvK
+cXJ
cKY
-cJg
-dSd
-dvK
-cKY
-dbo
-dDt
+dlw
cKY
cKY
cTX
@@ -157333,7 +150206,7 @@ dFG
aaa
dKB
dNW
-dLj
+deV
dMy
dNl
dRi
@@ -157419,9 +150292,9 @@ aaa
abj
abj
abv
-abG
-abG
-abG
+xKG
+xKG
+xKG
ach
acp
acp
@@ -157490,13 +150363,13 @@ aSb
aSb
aSb
aSb
-aSb
-aaa
+aVc
+aWf
ber
blD
blI
-blM
-ber
+aaa
+aaa
aaa
aaa
aaa
@@ -157514,14 +150387,14 @@ bFU
bHL
bJx
bLq
-bNq
+dDN
bPm
-bQZ
-bTe
+bFV
+bTb
bVk
bXh
bVF
-caE
+ceh
ccv
cej
cfY
@@ -157533,9 +150406,9 @@ cnM
coM
cqt
bYH
-cth
-cuq
-bso
+ctj
+cuu
+ckH
cxn
cyJ
cAf
@@ -157543,43 +150416,43 @@ cBM
cxn
cxn
cDe
-ckW
-cHX
+cUA
+cMz
cJt
cLf
-cMC
+xKN
cOi
cMC
cSP
cOg
daa
cXz
-daa
+cpc
cZQ
dbu
-dbe
-dco
-cNT
-dfD
+cKV
+cwp
+duG
+cKY
dgZ
-dha
-dfF
-dlw
+dwp
+dyk
+cKY
dmw
-doc
-dpD
-dqL
-dfD
+doh
+dpJ
+dqM
+dCr
dtl
duz
dvL
-cKY
-dtl
-duz
-dvL
-cKY
-dCk
-dDx
+nGL
+cXJ
+jkU
+fVZ
+cXJ
+cSZ
+dDE
bng
aaa
aaa
@@ -157741,19 +150614,19 @@ aaa
aaa
aaa
abj
-aSf
-aSf
-aSf
-aSf
-aSf
-aSf
abj
-aaa
+abj
+abj
+abj
+abj
+abj
+aSa
+bbi
bes
-bfO
-blG
-bip
-bjU
+bbi
+bbi
+aaa
+aaa
aaa
aaa
aaa
@@ -157770,17 +150643,17 @@ aaa
bFS
bHM
bJy
-bLr
+bNr
bNr
bPn
bRa
bTf
bVl
-bXe
+bXc
bYH
caF
ccw
-cek
+chJ
cfZ
ctV
cji
@@ -157790,7 +150663,7 @@ cnN
coP
cqu
bYH
-cth
+ctj
cuv
cvX
cxn
@@ -157800,42 +150673,42 @@ cBK
cDh
cFb
cFg
-cLm
-cHX
+ltY
+cMz
cJu
cLf
-cMD
+cMC
cOj
-cPV
+cMC
cRv
cSV
cVU
cXA
-cZZ
-cZR
-cXl
-dbe
-dcp
-def
-dfD
-dha
-dha
+dcE
+cZQ
+dbu
+cKV
+cwp
+cSF
+cJg
+dhe
+dwN
dkl
-dlx
-dmx
-dod
-dpE
+cJg
+dmB
+doh
+dpJ
dqM
-dfD
+dEu
dtm
-duz
+nRf
dvM
-cKY
-dtm
-duz
-dvM
-cKY
-dCl
+hLZ
+cXJ
+eha
+hTW
+cXJ
+cSY
dDy
cqJ
abj
@@ -157935,7 +150808,7 @@ abi
abi
abi
abj
-abW
+kYo
acj
aco
aaa
@@ -157943,7 +150816,7 @@ aaa
acG
aaa
aaa
-abW
+kYo
acj
aco
abj
@@ -157998,17 +150871,17 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSf
-aSf
-aSg
-aSg
+aaa
+aaa
+abj
abj
aaa
aaa
aaa
-bgY
+aaa
+aWC
+aaa
+aaa
aaa
aaa
aaa
@@ -158026,7 +150899,7 @@ aaa
aaa
bFV
bHN
-bJx
+sYQ
bLs
bNs
bPo
@@ -158037,7 +150910,7 @@ bXi
bYM
bYM
bXg
-cel
+bYM
bYM
bYM
bYM
@@ -158051,14 +150924,14 @@ cwa
cuw
cJc
cxn
-cyE
+cxn
cxn
cBN
cxn
cxn
cFg
-cGF
-cHX
+bHf
+cMz
cJv
cLg
cMG
@@ -158071,29 +150944,29 @@ cXB
cYW
cZS
dbv
-dbe
-dco
-cNT
+cKV
+cwp
+cSF
dfD
-dhb
-dha
-dfF
+dhe
+dwP
+dzp
dly
dAg
doe
dpF
dqN
-dfD
+dHZ
dtn
duA
dAq
-cKY
-dtn
-duA
+qgr
+vrB
+mko
dXw
-cKY
-cmt
-dDx
+cXJ
+boG
+dDE
bng
aaa
aaa
@@ -158106,7 +150979,7 @@ dFG
dXG
dPg
dQw
-dLY
+dfQ
dWU
dFG
abj
@@ -158192,15 +151065,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -158255,13 +151128,13 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSg
-aSg
-aSg
-aSg
-abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -158314,13 +151187,13 @@ cBO
cDi
cnP
cFh
-cLm
-cHX
-cJq
+ltY
+cMz
+cMz
cLh
cMF
-cJq
-cJq
+cMz
+cMz
cMz
cMz
cWd
@@ -158330,27 +151203,27 @@ cWd
cWd
dbl
dcx
-deg
-dfD
-dfD
+cwr
+cJg
+dhd
diN
dfC
-dlz
-dfD
-dog
-dfD
-dfD
-dfD
+cJg
+dmB
+doh
+dpH
+cXJ
+dJk
dMi
duB
-dvO
-cKY
-dQu
-duB
-dvO
-cKY
+dMi
+sAW
+cXJ
+xwk
+xHj
+cXJ
dCm
-dDz
+dDD
bng
aaa
dFG
@@ -158361,7 +151234,7 @@ dFG
dFG
dFG
dJW
-dLV
+dFH
dMB
dIc
dGw
@@ -158449,15 +151322,15 @@ aaa
aaa
abj
abj
-abW
+kYo
acj
aco
abj
-abW
+kYo
acj
aco
abj
-abW
+kYo
acj
aco
abj
@@ -158512,13 +151385,13 @@ aaa
aaa
aaa
abj
-aSg
-aSg
-aSf
-aSf
-aSg
-aSg
+aaa
+aaa
abj
+abj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -158540,7 +151413,7 @@ aaa
aaa
bFS
bHP
-bJA
+dDN
bLu
bNu
bPq
@@ -158561,8 +151434,8 @@ cnP
coR
cqw
crW
-ctm
crW
+byo
cxd
crW
cyL
@@ -158583,44 +151456,44 @@ cUl
cVW
cXC
cYX
-cYX
+cpK
cWd
-dbe
-dco
+cKV
+cwp
dXp
-dfD
-dhc
-dhc
-dfF
-dlA
+cKY
+cKY
+cKY
+cKY
+cKY
dmz
dol
dpG
-dqO
-dfD
-dtp
-duC
-dvP
-cKY
-dtp
-duC
-dvP
-cKY
-dCl
-dDA
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+eSe
+dAx
+cSY
+dDC
bng
abj
dFG
dGt
dHf
dId
-dIY
+dNt
dJP
dKC
dLe
-dLW
+dOd
dMC
-dNo
+dOd
dOd
dOG
dPj
@@ -158706,15 +151579,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -158774,8 +151647,6 @@ abj
aaa
aaa
abj
-abj
-abj
aaa
aaa
aaa
@@ -158795,14 +151666,16 @@ bzf
aaa
aaa
aaa
-bFS
-bFS
-bJB
-bLv
-bFS
-bFS
-bFS
-bTh
+aaa
+aaa
+bLA
+bLA
+bLA
+bLA
+bLA
+bLA
+bLA
+rOn
bVo
bXl
bYO
@@ -158811,17 +151684,17 @@ ccA
ceo
cgc
chN
-cjj
+bYM
ckT
-cmp
+bqj
cnP
coR
cqw
crW
ctn
+byo
+cwc
crW
-cwb
-cxq
cyM
crW
cBP
@@ -158829,42 +151702,42 @@ cDk
cnP
cFj
cGN
-cHY
+boG
cJw
-cLj
+xWD
cMH
-cPZ
+cWd
cRx
-cPZ
+cWd
cUm
-cVX
-cXE
+cXG
+cXG
cYY
cZU
-dbw
-dbm
-dcq
-dee
-dwp
+cUr
+cKV
+cwp
+cSF
+cJg
dhd
dhc
-dfF
-dJM
-dmx
+dBp
+cJg
+dmB
doh
dpH
-dqP
-dfD
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
-cKY
-cmt
-dDx
+dAx
+dJM
+xgR
+iFx
+iKj
+xKW
+dAx
+muK
+ifj
+dAx
+boG
+dDE
cqJ
aaa
dFH
@@ -158873,11 +151746,11 @@ dHg
dIe
dIZ
dJQ
-dIe
+dej
dLf
-dIe
+dej
dMD
-dNp
+dOH
dOe
dOH
dPk
@@ -158963,15 +151836,15 @@ aaa
aaa
abi
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
-abW
+kYo
acj
aco
aaa
@@ -159041,9 +151914,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-bsA
+rOH
btS
bsA
aaa
@@ -159052,14 +151923,16 @@ btS
bsA
aaa
aaa
-bFS
+aaa
+aaa
+bLA
bHQ
bJC
bLw
bNv
bPr
-bFS
-bTi
+mft
+rOn
bVg
bXk
bYN
@@ -159089,54 +151962,54 @@ cGO
cHZ
cJx
cLk
-cms
+cMH
des
cSR
cWd
cUo
cVY
cXF
-cVZ
+dlA
cZV
dcD
-dbc
+dlE
dcy
deh
dfF
-dha
-dhc
-dfF
+dvR
+dxA
+dBt
dbF
dmA
doi
dpI
dLP
-dfD
+dPn
dtq
-dko
+soN
dvQ
-ctu
+nfo
dya
dzm
dAu
-cWa
-dCn
-dDx
+dAx
+cSZ
+dDE
bng
abj
dFG
dGv
-dHh
+dNv
dIk
dJe
-dJR
+dNv
dKD
dLg
dLX
-dME
-dNq
+dXi
+dXi
dOf
-dOI
+dXi
dPl
dFG
dWZ
@@ -159224,7 +152097,7 @@ aaa
abj
aaa
aaa
-abW
+kYo
acj
aco
aaa
@@ -159282,41 +152155,41 @@ aaa
aaa
aaa
aaa
-abi
+abj
abj
abj
aaa
aaa
abj
-aaa
-aaa
acF
acF
acF
acF
acF
acF
-aaa
abj
abj
-bqI
+abj
+wtK
bsB
btT
bsB
aaa
bsB
-btT
-bsB
-bCI
+ixV
+emr
+lEL
abj
-bFS
+abj
+abj
+bLA
bHR
-bJD
+bxQ
bLx
-bNw
+bxQ
bPs
-bFS
-bTb
+fHe
+rOn
bVg
caz
bYM
@@ -159334,7 +152207,7 @@ cqx
crW
ctp
cuz
-cwc
+bzF
cxs
cyO
crX
@@ -159351,39 +152224,39 @@ cQa
cSS
cSU
cUp
-cVZ
+cXG
cXG
cYZ
cZW
cUr
-dbe
-dcp
-dei
-dxA
+cKV
+dtC
+cSF
+cJg
dhe
-dhc
-dfF
-dlD
+dye
+dkl
+cJg
dmB
doj
dpJ
-dqR
-dfD
+dqS
+dQu
dtr
duD
-cWb
+rsF
dwL
-cWb
-dfH
+dAx
+vbZ
dAv
-dfH
-dCo
-dDB
-bqC
+dAx
+cSZ
+dDE
+bng
aaa
dFG
dGw
-dHi
+dNr
dJa
dJf
dGw
@@ -159393,7 +152266,7 @@ dKB
dGw
dNr
dOg
-dHi
+dNr
dGw
dFG
dFG
@@ -159536,52 +152409,52 @@ abj
aaa
aaa
aaa
+aaZ
aaa
-aaa
-aaa
-abi
+mhu
+mhu
+pZf
+mhu
+pZf
+mhu
+mhu
+abj
aaa
abj
aaa
aaa
abj
aaa
-aaa
+aaZ
abj
-aaa
-aaa
-abj
-aaa
-aaa
-abj
-bnl
-boJ
bno
bsB
btS
bsB
bno
-bsB
-btS
-bsB
-bCJ
-bCJ
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
-bFS
+gcN
+vmw
+bno
+lBR
+pUv
+pUv
+lBR
+bLA
+bLA
+llI
+bLA
+mft
+mft
+bLA
bQz
bVB
bVD
bYM
-caL
-caL
-caL
-caL
-caL
+bYM
+bYM
+bYM
+bYM
+bYM
bYM
ckW
cmr
@@ -159602,7 +152475,7 @@ cFl
cGP
cIb
aFx
-cLm
+cRy
cMJ
des
cST
@@ -159615,28 +152488,28 @@ cZX
cWd
dbn
dcz
-cNT
-dfD
+cSF
+cKY
dhf
diO
-dfF
-dlE
+dCn
+cKY
dmC
dok
dpK
dqS
-dfD
+dRx
dts
duE
-aOx
-aOx
-dvS
-aOx
+rje
+uQK
+dAx
+kVM
dAw
-aOx
-aOx
-dDC
+dAx
+cSY
dDC
+bng
abj
dFG
dGx
@@ -159651,7 +152524,7 @@ dGw
dNs
dOh
dOJ
-dPm
+dIc
dPU
dQx
dXf
@@ -159791,13 +152664,17 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-abj
abi
-aaa
+abi
+abi
+abj
+mhu
+ekR
+hcQ
+mhu
+ygp
+ekR
+mhu
abj
abj
abj
@@ -159807,49 +152684,45 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-bnm
+bsA
boW
bqL
bsZ
btV
bxJ
+vnm
bno
-bzi
-btV
-bsZ
+eSX
+hZF
bEw
bEr
bFX
bMc
-bJE
+bFX
bLy
-bJE
-bJE
+bFX
+bFX
bRd
bTj
-bVh
+bVg
bXn
bYP
-bhf
+bXW
ccD
cer
cgf
-bLA
+hTV
cHu
ckX
-cms
+cqI
cnP
coS
cqz
crW
-ctr
+crW
cuB
cwd
-cxu
+crW
cyQ
cAl
cBS
@@ -159859,8 +152732,8 @@ cFm
cGQ
cIc
aFx
-cGF
-cHR
+dlw
+bng
cWd
cWc
cWc
@@ -159870,30 +152743,30 @@ cWd
cWd
cWd
cWd
-dbo
+cKY
dec
-dej
-dfD
-dfD
-dfD
-dfD
-dlz
-dfD
+cKY
+cKY
+cKY
+cKY
+cKY
+cKY
+dpt
+dpt
dpt
-dfD
-dfD
-dfD
-dtt
-duF
-aOx
-dwM
-dyb
-dzn
dAx
-dyc
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
+dAx
dCp
dDD
-dDC
+cqJ
aaa
dFI
dGy
@@ -159903,10 +152776,10 @@ dXc
dJT
dXE
dLi
-dLZ
-dMF
+dOd
+dFI
dNt
-dOi
+dOk
dOK
dWV
dPV
@@ -160050,15 +152923,15 @@ abj
aaa
aaa
abj
-aaZ
aaa
aaa
-abi
-aaa
-abj
-aaa
-aaa
-abj
+mhu
+wgn
+eud
+wVr
+eqc
+tpo
+mhu
aaa
aaa
aaa
@@ -160077,16 +152950,16 @@ bvm
bwy
bxK
bzg
-bAM
+bzg
bCL
-bEs
-bFY
+bJF
+bJF
bHT
-bJF
-bJF
+wVz
+wVz
bNx
-bJF
-bJF
+gJk
+meB
bTk
bVp
bXB
@@ -160095,7 +152968,7 @@ caM
ccE
ces
chK
-bLA
+hTV
cjm
ckW
cmr
@@ -160111,50 +152984,50 @@ cyR
cxv
cBT
cDo
-cuw
+bDB
cFn
cGR
cId
aFx
cME
-cMK
+diP
cOo
cOo
-cRy
-cRy
-cUt
-cWa
+diP
+diP
+dtu
+cjn
cXD
cZc
cqC
-dbp
+boG
dcB
dek
-cWa
+cjn
dhg
diP
diP
dlF
dmD
-dqW
+diP
diP
diP
dsj
dtu
-duG
-aOx
-dwN
+boG
+gpX
+cMH
dyc
dzo
-dAx
-dyc
-dyb
+hjo
+cjn
+obN
dDE
-dEt
+bng
aaa
dFJ
dGz
-dHl
+dJi
dJc
dXh
dJU
@@ -160305,17 +153178,17 @@ abj
aaa
abj
aaa
-aaa
-abj
-aaa
-aaa
-aaa
-abi
-aaa
-abi
-aaa
-aaa
-abj
+tgE
+tgE
+tgE
+tgE
+mhu
+hdV
+mGO
+uCE
+pXX
+gSt
+mhu
aaa
aaa
aaa
@@ -160336,15 +153209,15 @@ bxL
bHS
bAN
bCM
-bEt
-bFZ
+bHU
+bHU
bHU
bHU
bLz
bHU
-bHU
-bHU
-bTl
+mtR
+mHP
+bLz
bVq
bXp
bYR
@@ -160352,10 +153225,10 @@ bhf
ccF
cet
cgh
-bLA
-cjn
+hTV
+bqj
ckW
-cms
+cqI
cnP
coT
cqB
@@ -160374,11 +153247,11 @@ cGS
cIe
aFx
cLn
-cML
-cML
+cbm
+cbm
cQd
cRz
-cSW
+cjF
cUu
cWb
cWb
@@ -160389,25 +153262,25 @@ dcC
del
dfH
dhh
-cSW
-dby
-dby
-dmJ
-don
-dby
-cSW
-cSW
+cjF
+cHW
+cHW
+cLL
+cHW
+cHW
+cjF
+cjF
dtv
duH
-aOx
+dyd
dwO
dyd
-dzp
+dfH
dAy
-dBp
-dyc
+dfH
+iVO
dDF
-dEt
+bqC
abj
dFG
dGA
@@ -160417,7 +153290,7 @@ dXi
dJV
dGw
dLk
-dMb
+dXi
dMH
dNv
dOk
@@ -160562,20 +153435,20 @@ abj
abj
abj
abj
-abj
-abj
-abj
-abj
-abj
-abi
-aaa
-abi
-aaa
-aaa
-aGT
-aGV
+tgE
+iMM
+voo
+qZI
+mhu
+ssp
+mhu
+mhu
+mhu
+tOM
+mhu
+aml
bbn
-aGT
+ygH
bex
bfR
bhb
@@ -160585,34 +153458,34 @@ blS
bno
boN
bqN
-bsE
+kyq
btX
-bvo
+bqK
+esa
bno
-bzt
bCK
-bAN
-bId
-bno
-bGa
-bGa
-bGa
+bCK
+bCK
+bLA
+bCK
+bCK
+bCK
bLA
bGa
-bGa
-bGa
-bLA
-bWe
-bGa
-bYS
-bLA
-bLA
-bGd
+rDp
+pgF
+hTV
+hTV
+hTV
+hTV
+iDa
+hOL
+hOL
cgi
-bLA
+hTV
cjo
ckY
-cmt
+brM
cnP
cnP
cnP
@@ -160627,7 +153500,7 @@ cnP
cnP
cnP
cFw
-bmW
+bHg
cIm
aFx
aFx
@@ -160638,39 +153511,39 @@ aFx
cSX
cUv
cXI
-cXJ
-cXJ
+dlz
+dlz
dcF
-cXJ
-cXJ
-cXJ
+dlz
+dlz
+dlz
dfI
dhi
dfI
dfI
dfI
-dmE
+dev
dfI
dfJ
dfJ
dfI
-dtw
-duI
+xWD
+duL
+aOx
+aOx
+dvT
aOx
-dwP
-dyb
-dyb
dAz
-dyc
-dyb
-dDG
aOx
+aOx
+dDG
+dDG
abj
dFG
dGw
-dHn
+dGw
dIl
-dJg
+dGw
dJW
dGw
dLl
@@ -160679,7 +153552,7 @@ dGw
dNw
dOl
dON
-dPm
+dIc
dPX
dQA
dXf
@@ -160819,24 +153692,24 @@ acF
aaa
abj
aaa
-aaa
-abj
-aaa
-aaa
-aaa
-abj
-aaa
-abi
-abj
-abj
-aGT
+tgE
+boG
+boG
+aOR
+mhu
+qXF
+nPe
+lZw
+uYW
+rTE
+pcv
aZE
bbo
bcU
bex
bhc
blp
-bqw
+blp
bka
blT
bno
@@ -160844,39 +153717,39 @@ boO
bru
bsF
bvl
-bvp
-boJ
+bqK
+nDV
bCN
bzh
bAO
bCO
-bno
+bLB
bGb
-bHV
+bAO
bJG
bLB
bNy
bHV
bRe
-bLB
+hTV
bWr
bXV
-bYT
-bLB
+hTV
+jCU
+ccG
ccG
-ceu
cgj
-bLA
+hTV
cjp
ckW
-cmu
-cnQ
+brS
+bgs
coU
-cqC
+cJn
ctc
-ctu
-cuE
-cwg
+cqI
+brS
+cqI
aFx
cyT
aFv
@@ -160912,16 +153785,16 @@ dpL
dqT
dfI
dtx
-duI
-dvR
+duL
+aOx
dwQ
-dye
+dyb
dzq
-dAA
+dAB
dBq
dCq
dDH
-aOx
+dDG
abj
abj
dFG
@@ -161076,17 +153949,17 @@ acF
abj
abj
abj
-abi
-abi
-abi
-abj
-abj
-abj
-abj
-abj
-aaa
-aaa
-aGT
+tgE
+oBE
+eqY
+boG
+mhu
+vsy
+gBV
+hzb
+jqB
+fdI
+ppj
aZF
bbp
bcV
@@ -161101,48 +153974,48 @@ boP
bqO
bsG
btY
-bvq
+bqO
+klk
bno
-bxO
bzj
bAP
bCP
-bno
+mft
bGc
-bHW
-bJH
-bCS
-bNz
-blX
-bRf
+bAP
+bCP
bLB
+bNz
+oXm
+bRf
+hTV
bWs
bXW
bYU
-bLB
-ccH
-cev
+bXW
+bXW
+bXW
cgk
-bLA
+hTV
cjq
ckZ
-cmv
+gGu
cnR
-coV
+gGu
cqD
-coV
-ctv
+gGu
+khY
cuF
-cms
+cqI
aFx
cyU
aFv
aFv
aFv
cEt
-cFq
-cGU
-cIg
+bEY
+cGV
+bKv
cEu
cAq
cAq
@@ -161151,7 +154024,7 @@ cQe
aFx
cSZ
cUw
-cXJ
+dlz
cZe
dab
dcH
@@ -161168,17 +154041,17 @@ diS
diS
doo
dsk
-dts
-cqE
-dvR
-dwR
-dyf
-dyf
-dAB
-dyf
-dCr
-dDI
+dtx
+kSX
aOx
+dwR
+dBq
+dCu
+dAB
+dBq
+dyb
+dDI
+dEt
abj
abj
dFH
@@ -161333,29 +154206,29 @@ acF
aaa
aaa
abj
-aaa
-abj
-aaa
-aaa
-abj
-aGT
-aGT
-aGT
-aGT
-aGT
-aGT
+ygH
+ygH
+aqq
+yez
+mhu
+mhu
+mhu
+mhu
+mhu
+mhu
+mhu
aZG
bbq
-aGT
-aGT
-aGT
+ygH
+ygH
+ygH
bex
-bit
+bha
bkc
bjY
bno
-boQ
-bqP
+bno
+bno
bsH
btZ
boJ
@@ -161363,41 +154236,41 @@ bno
bno
bzk
bAQ
-bno
-bno
-bGd
+fzQ
+bLB
+bzk
bHX
-bJI
+fzQ
bLB
bGd
bPt
bRg
-bLB
-bWe
-bXs
-bYS
-bLB
-bhf
-cew
-bRg
-bLA
+hTV
+hTV
+hTV
+hTV
+jav
+wdH
+wdH
+nQJ
+hTV
cjr
cla
-cmw
cjr
-cjn
+cjr
+bqj
cqE
-bqC
-bqB
+bgt
+bwR
ckV
-cwh
+brS
aFx
cyV
cAn
aFw
aHA
aFx
-cFq
+bEY
cGV
cIh
aFx
@@ -161408,7 +154281,7 @@ cQf
aFx
boG
cUx
-cXJ
+dlz
cZf
dac
dcI
@@ -161425,15 +154298,15 @@ diT
diS
dtB
dmK
-dts
+dtz
duJ
dvS
dwS
dyg
-dyg
+eQh
dAC
-dyg
-dyg
+uVQ
+dBq
dDJ
dEt
aaa
@@ -161588,14 +154461,14 @@ aaa
aaa
acF
abj
-abj
abi
aaa
-abj
-abj
-abj
-abj
-aGT
+aqq
+tFK
+qeU
+abQ
+aKS
+ygH
aSh
aTF
aVk
@@ -161614,40 +154487,40 @@ bnp
boR
bqQ
bsI
-bua
-boR
-boR
+bnp
+gKi
+lAG
bxP
-bzl
+gKi
bAR
bCQ
bEu
bGe
bHY
-bEu
+gDv
bLC
-bNA
-bHY
+bEu
+hfN
bRh
bTm
-bVu
bEu
+nYz
bYV
caN
-ccI
-cex
+bEu
+bEu
cgl
-bGa
+fUG
cjs
clb
cmy
cnS
-cqi
+ctc
cqE
csd
-cjn
+bqj
ckW
-cwh
+brS
aFx
aFx
aFx
@@ -161665,7 +154538,7 @@ aFx
aFx
cSY
cUy
-cXJ
+dlz
cZg
dab
ddR
@@ -161682,17 +154555,17 @@ diS
diR
dqV
dfI
-dtt
+oDD
duK
dvS
dwT
dyb
-dzo
-dAD
dyb
-dzo
+dAD
+dBq
+dyb
dDK
-dEt
+aOx
aaa
abj
dFG
@@ -161845,53 +154718,53 @@ aaa
aaa
aaa
aaa
-aaa
abi
abj
-abj
-aGT
-aGU
-aGU
-aGT
+ygH
+aJx
+nli
+abQ
+aPv
+ygH
aSi
aTG
-aTG
-aTG
+nHs
+rbw
aYl
aZI
bbs
-aGV
+aml
beA
bfW
-bhf
+bLB
biv
bke
blW
-bnq
+blW
boS
bqR
-bsJ
-bub
-bub
+bHZ
bub
+loP
+tJH
bub
bzm
-bAS
-bCR
-bEv
-bGf
bHZ
-bJJ
+bub
+bub
+bub
+jUH
+bub
bub
bNH
-bHZ
+sEN
bRi
-bub
-bVv
+mKe
+blW
blW
bnq
caO
-ccJ
+blW
cey
cgm
chQ
@@ -161902,18 +154775,18 @@ cnT
coX
cqF
cse
-bng
+bgs
cuG
-cwi
+cjm
aFx
aKh
cAo
cBW
cAq
aFx
-cFq
-cGU
-cIg
+bEY
+cGV
+bKv
aFx
cLp
cMN
@@ -161922,7 +154795,7 @@ cQg
aFx
cTa
cUv
-cXJ
+dlz
cZh
dac
dem
@@ -161940,16 +154813,16 @@ diR
dtE
dsl
dty
-dpO
+sZT
aOx
dwU
dyh
dzr
-dyb
+tSS
dBr
dCs
dDL
-dDC
+aOx
abj
abj
abj
@@ -162102,55 +154975,55 @@ aaa
aaa
aaa
aaa
-aaa
abi
aaa
-abj
-aGT
-aNC
-aOT
-aGT
+ygH
+uUu
+kju
+abQ
+aKU
+ygH
aSj
aTH
aVl
aWL
-aYm
+aYk
aZJ
bbt
bdi
beB
-bfX
+bfW
bkg
biw
-bkf
+bHW
+blX
blX
-bnr
bkf
bqS
-bsK
-bkf
-bkf
+blX
+reH
+hHM
bwA
bxQ
bnr
bAT
-bCS
-bEB
-bGg
+bxQ
+bxQ
+bxQ
bNm
-bJK
-bLD
-bLD
+bxQ
+bxQ
bLD
+mEG
bRj
-bLD
-bVw
+bxQ
+bxQ
bXt
bYW
-cge
-bGg
+bNm
+bxQ
cez
-bRj
+bxQ
chR
cju
cld
@@ -162159,9 +155032,9 @@ cjr
coY
cqG
csf
-bqC
+bgt
cuH
-cwj
+bqj
aFx
cyW
cAp
@@ -162169,7 +155042,7 @@ cAq
cAq
cEu
cFs
-cGU
+cGV
cIj
cJy
cLp
@@ -162179,7 +155052,7 @@ cQi
aFx
cSY
cUv
-cXJ
+dlz
cZi
daR
deo
@@ -162196,17 +155069,17 @@ diR
dpM
dqX
dfI
-dtx
-dpO
-bLn
+xWD
+ezR
+aOx
dwV
-bLn
-bLn
-bLn
-bLn
-bLn
-bLn
-bLn
+glQ
+glQ
+pPC
+glQ
+moa
+iiM
+aOx
abj
abi
abi
@@ -162361,62 +155234,62 @@ aaa
aaa
aaa
abj
-aaa
-abj
-aGT
-aMq
+ygH
+xDn
+aJx
+iUc
aOX
-aGT
-aGT
-aGT
-aGU
-aGT
-aGT
-aZN
-bbu
-aGT
-aGT
+ygH
+ygH
+ygH
+aqq
+ygH
+ygH
+bOc
+bbt
+ygH
+ygH
bfY
bhh
bhh
-bhi
+bwE
blY
-bns
-bhi
+bhh
+uSJ
bqT
bsL
buc
-bhh
-bhh
-bxR
+xXw
+bsL
+biv
bzn
-bAU
-bhh
-bEx
-bGh
-bEx
-bEx
-bJL
+bLB
+bLB
+yds
+fzQ
+bLB
+goP
+goP
bNI
-bJL
-bEx
-bEx
-bVx
+jgO
+jAm
+oSH
+goP
bXu
bYX
-bEx
-ccK
+jIs
+jIs
ceA
-bLA
-bLA
+jIs
+jIs
cjv
cle
-cmA
+cjv
cjr
-boH
+brS
bHF
-boH
-bng
+brS
+bgs
cuH
cmq
aFx
@@ -162425,8 +155298,8 @@ cAq
cBX
aKk
aFx
-cFt
-cGU
+cFv
+cGV
cIk
aFx
cLq
@@ -162435,8 +155308,8 @@ cLp
cQh
aFx
cTb
-cUz
-cXJ
+cUA
+dlz
cZj
daS
dep
@@ -162453,17 +155326,17 @@ dop
dpN
dqY
dfI
-dtw
-duI
-bLn
+dtx
+duL
+dvT
dwW
-dyi
-dzs
-dwZ
-dBs
+dCt
+dCt
+rTc
+dCt
dCt
dDM
-bLn
+dEt
abj
aaa
aaa
@@ -162612,28 +155485,28 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abi
-abj
-abj
+aaa
aaa
abj
-aGT
+abj
+aml
+kOC
+ofZ
aND
-aOV
+abQ
aQx
-aSk
-aMq
+aQB
+aJx
aVm
aWM
-aYn
+aJx
aZL
-bbu
-aGT
+bbt
+ygH
bfU
-bhe
+aZX
bhh
bix
bmO
@@ -162641,39 +155514,39 @@ blZ
bnt
boT
bqU
-bsM
+bsL
bkj
bvr
-bhh
-bmf
-bnB
+bsL
+biv
+uiw
bAV
-bhh
+uYc
bEy
bGi
-bIb
-bJL
-bLE
+bLB
+uoV
+vOc
bND
-bPu
+glX
bRk
bTn
-bVy
-bXv
-bYY
-bJL
+goP
+bXu
+bYX
+jIs
ccL
ceB
-cgn
-bLA
+ccL
+jIs
cjw
-clf
-cmB
+tVO
+cjz
cjr
coZ
csb
csg
-bng
+bgs
ckX
cmr
aFx
@@ -162683,7 +155556,7 @@ aFx
aFx
aFx
cFu
-cGU
+cGV
cIk
aFx
aFx
@@ -162693,19 +155566,19 @@ aFx
aFx
cjn
cUv
-cXJ
-cXJ
+dlz
+dlz
dbr
deq
-cXJ
-cXJ
+dlz
+dlz
dYa
dfI
dfI
dfI
dfI
dhi
-dmK
+cLW
dfI
dfJ
dfJ
@@ -162714,13 +155587,13 @@ dtz
duL
dvT
dwX
-dwX
-dzt
-dAE
-dBt
+dyb
dCu
-dDN
-dym
+dAE
+dyb
+dCu
+tHf
+dEt
abj
abj
abi
@@ -162869,15 +155742,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
-abj
-abj
-abj
-abj
-aGV
+ygH
+ygH
+qJC
+ygH
+ygH
+ipD
+abQ
aNE
aPb
aQy
@@ -162888,7 +155761,7 @@ baP
aYo
aZM
bbv
-aGT
+ygH
beC
bfZ
bhi
@@ -162898,39 +155771,39 @@ bma
bnu
boU
bqV
-bsN
+bsL
bud
bvs
-bhh
-bxS
+bsL
+biv
bzo
bAW
-bhh
+tQg
bEz
bGj
-bIc
+bLB
bJM
bLF
bNE
bPv
bRl
-bNE
+obL
csM
-bXw
-bYZ
-dYW
+bXu
+bYX
+jIs
ccM
ceC
cgo
-bLA
+jIs
cjx
-clf
+tVO
cut
cjr
cpa
cqI
csh
-bng
+bgs
ckW
cmr
aFx
@@ -162940,7 +155813,7 @@ cBY
cyY
bmW
cFv
-cGR
+cGV
cIl
bmW
cyY
@@ -162951,33 +155824,33 @@ aFx
cTc
cUA
cqC
-ctu
-ctu
-ctu
+cMH
+cMH
+cMH
dbx
cqC
det
-cWa
+cjn
dhq
cqC
-dko
+boG
cqC
dqU
doq
doq
-ctu
+cMH
dbx
-dtA
-duI
-bLn
+xWD
+ujH
+aOx
dwY
dyj
-dwZ
-dAE
+nCz
+dyb
dBu
dCv
-dDN
-dym
+vLN
+dDG
abj
abj
aaa
@@ -163126,78 +155999,78 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
+aqq
+reo
aGT
-aGT
-aJw
-aGT
-aGT
+swV
+ygH
+nFL
+aKU
aNF
-aPc
-aQz
+aKS
+abQ
aSm
-aMq
+aJx
aVo
aWO
-aMq
+aJx
aZK
-bbu
-aGU
-aGT
-aJC
+bbt
+aqq
+ygH
+aJA
bhh
biz
bki
bmb
-bnv
+bkl
boV
bqW
-bsO
+bsL
bue
bvt
bwB
-bxS
+biv
bzp
-bAX
-bhh
-bEy
+bLB
+shi
+rTL
bGk
-bEy
+bLB
bGp
bLG
-bNF
+nkh
bPw
-bWh
-bTo
+hTr
+gwZ
bVA
-bXx
+bXu
bZa
-bGp
+sWi
ccN
ceD
cgp
-bLA
+jIs
cjy
-clg
+ukv
cmD
cjr
-bng
-cqJ
-bng
-bng
+bgs
+bws
+bgs
+bgs
cuH
-cms
+cqI
aFx
cyZ
cAr
cAr
cAr
cEv
-cFt
-cGU
+cFv
+cGV
cIk
cEv
cAr
@@ -163228,13 +156101,13 @@ duN
duM
bLn
dwZ
-dyk
-dyj
-dyj
-dyj
-dwZ
-dyj
-dym
+bLn
+bLn
+bLn
+bLn
+bLn
+bLn
+bLn
abj
abi
aaa
@@ -163384,59 +156257,59 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
+ygH
+xda
aGU
aIl
aJx
aKR
aMq
aNG
-aOV
+abQ
aSn
aWN
-aMq
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
+aJx
ble
bbw
bcY
-aGT
+ygH
aaa
bhh
biA
bki
bmc
-bnw
+bkl
bmd
bqX
-bsP
-bue
+bsL
+meU
bvu
-bhh
-bxT
+bsL
+biv
bzq
bAY
-bhh
-bEy
+uod
+ncZ
bGl
-bNV
+bLB
bJN
-bJN
-bNG
+bLG
+nkh
bPx
-bJN
+bRl
bNG
bXb
-bXX
-bZb
-bJN
+bXu
+bYX
+jIs
cgg
ceE
cgq
-bLA
+jIs
cjz
clg
cmE
@@ -163444,7 +156317,7 @@ cjr
aaa
aaa
abj
-cqJ
+bws
cLm
cwk
aFx
@@ -163453,9 +156326,9 @@ cAs
cAs
cAs
bmW
-cFt
+bFh
cGT
-cIk
+bKD
bmW
cLr
cAs
@@ -163479,11 +156352,11 @@ cqJ
dfK
bng
dev
-aeB
-aeB
-dtC
-aeB
-aeB
+bng
+vMI
+cSL
+cUM
+bLn
dxa
dyl
dzu
@@ -163491,7 +156364,7 @@ dAF
dBv
dCw
dDO
-dEu
+bLn
abj
abi
abj
@@ -163642,21 +156515,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aml
+feV
aGV
aIm
aJJ
aKS
-aMr
-aNH
+aKU
+aNF
aOY
aQB
-aSo
-aMq
+aPe
+aJx
aVm
aWP
-aYn
+aJx
aZO
bbx
bcZ
@@ -163664,36 +156537,36 @@ beD
abj
bhh
biB
-bkj
-bmd
-bnx
+bkl
+bkl
+bkl
bqJ
bqY
-bsQ
+bsL
buf
bxN
-bhh
-bxS
-bxS
-bAV
-bhh
-bEA
+bsL
+biv
+vvQ
+ljZ
+sYo
+jsV
bGn
-bIe
-bJN
-bLH
-bLH
+bLB
+wpr
bLH
+gxd
+sCu
bRn
bTp
-bXo
-bXz
+goP
+bXu
bZc
-bJN
+jIs
ccP
ceF
-cgr
-bJI
+ccP
+jIs
cjB
clh
cmH
@@ -163703,7 +156576,7 @@ abj
csi
csi
cuI
-cwl
+csi
aFx
aFx
bmW
@@ -163711,7 +156584,7 @@ bmW
aFx
aFx
cFw
-bmW
+bHg
cIm
aFx
aFx
@@ -163735,20 +156608,20 @@ dfK
abj
bng
diW
-dpO
-aeB
-dtF
-duO
-dGZ
-aeB
-bLn
+duL
+bng
+iBK
+oTo
+mzg
+xlS
dym
-bLn
-bLn
-bLn
dym
-bLn
-bLn
+fou
+tgs
+gTw
+luc
+dDN
+mDm
abj
abi
abj
@@ -163899,17 +156772,17 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aGT
+ygH
+blR
+rZK
aIn
aKT
aSp
-aMs
+aSp
aNI
aOZ
aQC
-aSp
+xbS
aTJ
aVp
aWQ
@@ -163917,40 +156790,40 @@ aYp
aZP
bbv
bfT
-aGT
+ygH
aaa
bhi
biC
-bkk
+bkl
bme
bny
boX
-bqZ
-bsR
+bqY
+bsL
bug
bvw
-bhh
+bsL
+biv
bwC
-bwC
-bAZ
-bhh
+bLB
+shi
bGm
-bIf
-bLY
-bJN
-bLI
-bNJ
+bGk
+bLB
+goP
+goP
+bNI
bQn
-bQn
-bQn
-bXq
-bXz
-bZd
-caR
-ccP
-ceE
-cgs
-bLA
+tFw
+goP
+goP
+bXu
+bYX
+jIs
+jIs
+jIs
+jIs
+jIs
cjz
cli
cmG
@@ -163960,12 +156833,12 @@ aaa
csi
ctw
cuK
-cwm
+ctx
ctx
czb
cAt
cBZ
-ctx
+jHa
ctx
cFx
cGX
@@ -163993,19 +156866,19 @@ aaa
cqJ
dmF
dor
-aeB
-dtG
+cPC
+cPC
dtD
-dHZ
-aeC
-abj
-abj
-abj
-abj
-abj
-abj
-abj
-abj
+cPC
+cPC
+iwQ
+tks
+dAF
+tgs
+kxq
+fJA
+dDN
+mDm
abj
aaa
aaa
@@ -164156,58 +157029,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aGV
+aml
+npj
+eCs
aIo
aJA
aKU
-aMt
+aKS
aNJ
aPa
aQD
-aQE
-aMq
+aKU
+aJx
aVq
aWO
-aMq
+aJx
aZQ
bby
-aMq
-aGT
+aJx
+ygH
abj
bhh
biD
bkl
-bkl
+oei
bnz
boY
-bra
-bsS
-bkl
-bvt
-bwC
-bxU
+bqY
+bsL
+usl
+vhT
+bsL
+biv
bzr
bBa
-bhh
-bEC
-bGo
-bEC
-bJN
-bLJ
+bBa
+bBa
+bBa
+bBa
+bBa
+bBa
bPy
bPz
bRo
-bTq
-bVE
-bXA
+bBa
+bBa
+bXt
bZe
caS
ccQ
ceG
cgr
-bJI
+bLA
ckE
clf
cnF
@@ -164217,7 +157090,7 @@ abj
csj
ctx
cuL
-cwn
+czc
cxx
czc
czc
@@ -164250,19 +157123,19 @@ abj
cqJ
dot
dos
-aeB
-dRx
-dGq
-dIa
-aeB
-abj
-abi
-abi
-abi
-abj
-abi
-abi
-abi
+cPC
+cRf
+cSM
+cVL
+cPC
+dAF
+yiO
+tks
+tks
+tks
+dAF
+tks
+mDm
abj
abj
abj
@@ -164412,58 +157285,58 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
-aGT
+ygH
+ngm
+mtL
aIp
-aJB
+aJx
aKV
-aMq
+fFd
aNK
-aOV
-aQE
+abQ
+aKU
aTb
-aMq
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
+aJx
bOc
-bbu
+bbt
bdb
-aGT
+ygH
aaa
bhh
biE
bkm
bkm
-bnA
+bkm
boZ
brb
bsT
buh
bvx
bwD
-bxV
-bzs
-bBb
-bhh
-bEx
-bGp
-bEx
-bJN
+biw
+blX
+blX
+blX
+blX
+blX
+mHf
+tRM
bLK
bPA
bQo
-bQo
-bQo
-bXr
-bYC
+eLI
+blX
+blX
+blX
caP
-bJN
+mlJ
ccR
ceH
-cgo
+xIo
bLA
cjr
clj
@@ -164474,22 +157347,22 @@ aaa
csj
ctx
cuM
-cwo
+cuM
cxy
-ctC
+bAm
cuM
cuM
cAu
cEw
cFz
+bIg
cFz
-cIp
cJA
cLt
cuM
cOt
cOt
-cRC
+cuM
cTe
cUG
cOt
@@ -164507,19 +157380,19 @@ aaa
cqJ
cqJ
bng
-aeC
-aeC
+cPC
+cRC
dGr
-aeC
-aeC
-abj
-aaa
-aaa
-abj
-aaa
-aaa
-abj
-abj
+uAP
+cPC
+vFf
+pBz
+ojw
+koC
+lzY
+phv
+wAE
+fTZ
aaa
abj
aaa
@@ -164668,58 +157541,58 @@ aaa
aaa
aaa
aaZ
-aaa
-aaa
abi
abj
-aGT
-aGT
-aJC
-aGT
-aGU
+ygH
+tge
+eQg
+nbE
+aqq
+njE
+eNI
aNL
-aPc
-aNO
+aKS
+aKS
aSr
-aMq
+aJx
aVr
aZr
-aYn
+aJx
aZR
-bbs
-bdc
+tiS
+bcZ
beD
abj
bhh
biF
bkn
bmf
-bnB
+bxS
bpa
brc
-bsU
+bsL
bui
bsU
-bwE
-bmf
-bIa
+bsL
+bEx
+bJL
bBc
-bhh
-abj
-aaa
-abj
-bJN
-bLL
-bNK
+bJL
+bEx
+bEx
+kzg
+tFO
+bIe
+bEx
bPB
bRp
bTr
-bVG
+jQY
bNK
bZg
-bJN
-ccS
-bHW
+bLA
+shi
+ulE
ccS
bLA
aaa
@@ -164731,16 +157604,16 @@ aaa
csj
cty
cuM
-cwp
-cxz
-czd
+cLt
+cxA
+cze
cAu
cuM
cDr
cEx
cze
cze
-cIq
+cze
cJB
cLu
cuM
@@ -164764,19 +157637,19 @@ abj
abj
abj
abj
-abj
-aeC
+cPC
+odY
dGs
-aeC
-abj
-aaa
-aaa
-abi
-abi
-abj
-abi
-abi
-abi
+sPS
+cPC
+bLn
+mDm
+bLn
+bLn
+bLn
+mDm
+bLn
+bLn
abi
abj
aaa
@@ -164925,27 +157798,27 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abi
abj
-abj
-abj
-aaa
-abj
-aGT
+ygH
+ygH
+pWQ
+ygH
+ygH
+tvq
+aKU
aNM
-aQA
-aQF
-aQF
+aKS
+aPe
+aPe
aTK
aVs
baS
aYq
-aZS
+aZM
bbv
bdd
-aGU
+aqq
aaa
bhh
biG
@@ -164954,31 +157827,31 @@ bmg
bnC
bpb
brd
-bro
-biG
-biG
-bhh
-bhh
-bhh
-bhh
-bhh
-abj
+bsL
+bsL
+bsL
+bsL
+bEx
+bLE
+vCk
+bPu
+qVp
+nvc
+tah
+pRg
+jCt
+bJL
+vEh
+spP
+sTz
+jQY
aaa
abj
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bJN
-bLA
-ceI
-bLA
-bLA
+aaa
+aaa
+abj
+aaa
+aaa
aaa
abj
abj
@@ -164988,7 +157861,7 @@ abj
csj
ctz
cuM
-cwp
+cLt
cxA
cze
cAu
@@ -165021,19 +157894,19 @@ abi
aaa
abi
abi
-abj
-aeC
+cPS
+cPS
dGX
-aeC
+cPS
+cPS
+abj
+abj
+abj
+abj
+abj
abj
abj
-abi
-abi
-aaa
-aaa
abj
-aaa
-aaa
abj
abj
abi
@@ -165185,24 +158058,24 @@ aaa
aaa
aaa
aaa
+abj
aaa
-aaa
-abj
-abj
-abj
+qli
+isz
+vif
aMu
aNN
aPd
aQG
aSs
-aMq
+aJx
aVt
aWO
-aMq
-aZK
+aJx
+mTx
bbz
-aGT
-aGT
+ygH
+ygH
abj
abj
biG
@@ -165215,20 +158088,20 @@ bsV
buj
biG
aaa
-aaa
-abj
-aaa
-aaa
-abj
-aaa
-abj
-abj
-abj
-abj
-abj
+bEx
+tNO
+ejA
+wWy
+eWX
+ykx
+rkB
+xuC
+vGw
+iXX
+knI
bWC
-abj
-aaa
+nJr
+jQY
aaa
abj
aaa
@@ -165245,14 +158118,14 @@ aaa
csj
ctA
cuM
-cwp
+cLt
cxA
cze
cAu
cuM
cDr
cEx
-cFA
+cze
cze
cze
cJB
@@ -165279,18 +158152,18 @@ aaa
aaa
aaa
abj
-aaa
+cPS
dKx
+cPS
abj
abj
-aaa
+abi
+abi
+abi
abj
-aaa
-aaa
-abW
-acf
-aco
-aaa
+abi
+abi
+abi
aaa
abj
aaa
@@ -165442,11 +158315,11 @@ aaa
aaa
aaa
aaa
-aaa
abi
-abj
aaa
-abj
+pWQ
+qqW
+aKU
aJC
aNO
aPe
@@ -165455,10 +158328,10 @@ aPj
aMv
aMv
aMv
-aGT
-aZK
-bbu
-aJw
+aMv
+bOc
+bbt
+qJC
aaa
abj
aaa
@@ -165472,28 +158345,28 @@ bmh
buk
biH
abj
-abi
-abi
+bEx
+upW
+bNF
+nom
+bWh
+bTo
+nit
+bXx
+xGi
+bEx
+mmw
+tdA
+lmR
+pSA
abj
-abi
-abi
-abi
-abi
+alW
abj
-abi
-abi
-abi
-abi
abj
-abi
-abi
-abi
-abi
-abi
+alW
abj
-abi
-abi
abj
+alW
abj
abi
abi
@@ -165502,15 +158375,15 @@ abj
csj
ctB
cuM
-cwq
+cuM
cxB
czf
cuM
cuM
cAu
cEy
-cFB
cGZ
+bIB
cGZ
cJC
cLt
@@ -165535,22 +158408,22 @@ aaa
aaa
aaa
aaa
+abj
+cPS
+qRT
+cPS
+abj
+abj
abi
abj
-acg
+aaa
+aaa
abj
aaa
-abW
-ace
-aco
aaa
-abW
-acf
-aco
aaa
-abW
-acf
-aco
+abj
+aaa
aaa
abj
aaa
@@ -165699,12 +158572,12 @@ aaa
aaa
aaa
aaa
-aaa
abi
-abj
-abj
-abj
-aGT
+aaa
+ygH
+ggp
+aKU
+hch
aNP
aPf
aQI
@@ -165712,9 +158585,9 @@ aMv
aTL
aVu
aWS
-aGT
+aMv
aZT
-bbs
+mmJ
bde
abj
abj
@@ -165729,20 +158602,20 @@ bsW
bul
bvy
aaa
-abj
-aaa
-aaa
-abj
-abj
-aaa
-abj
-abj
-abj
-aaa
-abj
-abj
-aaa
-abj
+bEx
+bEx
+bEA
+fDE
+bEx
+bEA
+faB
+kYe
+hcU
+bEx
+haD
+lFi
+fPC
+jQY
aaa
abj
aaa
@@ -165759,7 +158632,7 @@ aaa
csj
ctB
cuM
-cwo
+cuM
cxC
czg
czg
@@ -165767,9 +158640,9 @@ czg
czg
czg
cFC
+bIE
czg
-czg
-czg
+bOp
czg
czg
czg
@@ -165794,20 +158667,20 @@ aaa
aaa
abj
aaa
-acp
+fGG
abj
abj
-abW
-acf
-aco
aaa
-abW
-acf
-aco
+abj
+aaa
+aaa
+dak
+daC
+dbc
+aaa
+aaa
+abj
aaa
-abW
-acf
-aco
aaa
abi
aaa
@@ -165956,11 +158829,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
abj
-aaa
-aKW
+abj
+ygH
+ygH
+aMv
aMv
aMv
aMv
@@ -165971,44 +158844,44 @@ aVv
aWT
aYr
aZP
-bbv
-aJC
+gGJ
+pWQ
aaa
abj
aaa
biJ
bkr
bmh
-bnG
+brn
bpf
brh
bmh
bum
biJ
abj
-abj
-abi
-abi
-abi
+ngg
+qYC
+qYC
+qYC
+kiL
+kkM
+fEr
+gTW
+fox
+ngg
+phF
+jIV
+tmo
+jQY
abj
abj
abj
abj
abj
abj
-abi
-abi
-abi
-abi
abj
abj
abj
-abi
-abi
-abi
-abi
-abj
-abi
abj
abj
abi
@@ -166016,24 +158889,24 @@ abj
csj
ctB
ctB
-cwr
-cxD
+ctB
+ctB
czh
cAv
cAv
cAv
-cxD
+ctB
cFD
cHa
cHa
cJD
-cLv
+cWh
cMR
cMR
cQo
cMR
-cLv
-cUM
+cWh
+cWh
cWh
cXO
csj
@@ -166051,21 +158924,21 @@ aaa
aaa
abi
abj
-acp
+cSN
abj
aaa
-abW
-acf
-aco
-abj
-abW
-acf
-aco
-abj
-abW
-acf
-aco
-abj
+dak
+daz
+dbc
+aaa
+dak
+daC
+dbc
+aaa
+dak
+daC
+dbc
+aaa
abj
aaa
aaa
@@ -166226,42 +159099,42 @@ aSt
aTN
aVw
aWU
-aYs
-aZU
+aMv
+bOc
bbA
-aGT
+ygH
abj
abj
abj
biG
bks
bmh
-bnH
+bmh
bpg
bri
bsX
bun
biG
aaa
-abj
+ePS
+wmQ
+esj
+kii
+kii
+kii
+iTV
+gTW
+rNi
+iVV
+miL
+frI
+tmo
+jQY
aaa
abj
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
aaa
aaa
@@ -166306,22 +159179,22 @@ aaa
aaa
aaa
aaa
-abi
+abj
aaa
-acp
+cTN
abj
abj
-abW
-acf
-aco
+dak
+daC
+dbc
aaa
-abW
-acf
-aco
+dak
+daC
+dbc
aaa
-abW
-acf
-aco
+dak
+daC
+dbc
aaa
abi
aaa
@@ -166483,10 +159356,10 @@ aSu
aTO
aVx
aWV
-aGT
+aMv
aZW
bbB
-aGT
+ygH
abj
aaa
abj
@@ -166500,25 +159373,25 @@ bsY
biG
biG
aaa
+ePS
+mqS
+xom
+wIT
+vJK
+hTk
+gwn
+idq
+xgm
+kGF
+miL
+eNt
+lJT
+pSA
+aaa
abj
+aaa
+aaa
abj
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -166565,25 +159438,25 @@ aaa
aaa
abi
abj
-acp
+cTN
abj
aaa
-abW
-acf
-aco
-aaa
+dak
+daC
+dbc
+abj
+dak
+daC
+dbc
+abj
+dak
+daC
+dbc
abj
-acg
abj
aaa
-abW
-acf
-aco
aaa
-abi
-abj
-abi
-abi
+aaa
aaa
aaa
aaa
@@ -166735,47 +159608,47 @@ abj
aIO
aNS
aPi
-aQL
-aSv
+aQJ
+aSt
aTP
aVy
aWW
-aGT
+aMv
aZX
bbD
-aGT
+ygH
abj
aaa
abj
aaa
-biG
+aZw
bmk
-bnJ
+baJ
bpi
brk
bmk
-biG
+aZw
aaa
aaa
+ePS
+rSe
+dJI
+mEk
+mEk
+mEk
+ibR
+pOB
+fjJ
+ngg
+vce
+ohh
+weF
+jQY
+aaa
abj
aaa
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaZ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+abj
aaa
aaa
aaa
@@ -166820,25 +159693,22 @@ aaa
aaa
aaa
aaa
-abj
+abi
aaa
-acp
+cTN
abj
+abj
+dak
+daC
+dbc
aaa
-abj
-acg
-abj
-abj
-abj
-acp
-abj
-abj
-abj
-acg
-abj
+dak
+daC
+dbc
aaa
-aaa
-abj
+dak
+daC
+dbc
aaa
abi
aaa
@@ -166903,6 +159773,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
"}
(223,1,1) = {"
aaa
@@ -166997,42 +159870,42 @@ aMv
aTQ
aVz
aWX
-aGT
+aMv
bad
bbH
-aGU
+aqq
abj
aaa
abj
aaa
-biG
+aZw
bml
-bnH
+bbm
bpj
brl
bta
-biG
+aZw
+abj
+abj
+ePS
+xUI
+fEF
+kTO
+gxJ
+eDh
+uJk
+lEr
+wMd
+ngg
+pvv
+raK
+mfI
+jQY
+abj
+abj
abj
abj
abj
-aaa
-abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -167079,24 +159952,24 @@ aaa
aaa
abi
abj
-acp
-dPn
-abG
-abG
-abG
-abG
-abG
-abG
-ach
-acp
-acp
-acp
-dPn
-abG
-abG
-abG
-dJk
+cTN
abj
+aaa
+dak
+daC
+dbc
+aaa
+abj
+cSN
+abj
+aaa
+dak
+daC
+dbc
+aaa
+abi
+abj
+abi
abi
aaa
aaa
@@ -167254,24 +160127,37 @@ aMv
aTR
aVA
aWY
-aGT
-aZW
-bbB
-aGT
-aMq
+aMv
+iLL
+oVe
+ygH
+aJx
abj
abj
abj
-biG
+aZw
bmm
bnK
-bpj
+myN
brm
btb
-biG
+aZw
aaa
abj
-aaa
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+ngg
+jQY
+jYK
+moy
+jQY
abj
abj
aaa
@@ -167288,19 +160174,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
abj
csj
aaa
@@ -167334,29 +160207,29 @@ aaa
aaa
aaa
aaa
+abj
+aaa
+cTN
+abj
+aaa
+abj
+cSN
+abj
+abj
+abj
+cTN
+abj
+abj
+abj
+cSN
+abj
+aaa
+aaa
+abj
+aaa
abi
aaa
aaa
-abj
-aaa
-abj
-aci
-abj
-abj
-abj
-acp
-abj
-abj
-abj
-aci
-abj
-aaa
-aaa
-abj
-aaa
-abj
-aaa
-aaa
aaa
aaa
aaa
@@ -167511,41 +160384,41 @@ aMv
aMv
aPj
aPj
-aGT
+aMv
bda
bbE
bdf
-aMq
+aJx
aaa
abj
aaa
-biG
+aZw
bmn
bnL
bpk
-brn
+beI
btR
-biG
+aZw
abj
abj
aaa
abj
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+abj
+abj
+vbN
+abj
+abj
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
+abj
+abj
aaa
aaa
aaa
@@ -167592,24 +160465,24 @@ aaa
aaa
aaa
abi
-abi
abj
-abj
-aaa
-abW
-acj
-aco
-aaa
-abj
-aci
-abj
-aaa
-abW
-acj
-aco
-aaa
-abi
-abi
+cTN
+ewF
+cYU
+cYU
+cYU
+cYU
+cYU
+cYU
+dbm
+cTN
+cTN
+cTN
+ewF
+cYU
+cYU
+cYU
+rnO
abj
abi
aaa
@@ -167772,37 +160645,37 @@ aZV
brz
bvB
bdg
-beD
+fcg
aaa
abj
aaa
-biG
-biG
-bmg
+aZw
+aZw
+baJ
bpl
bro
-biG
-biG
+aZw
+aZw
aaa
abj
abj
+abj
+abi
+abi
+abi
+abi
+abj
+abi
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
+abj
abi
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -167848,27 +160721,27 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-abj
-abj
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
abi
aaa
aaa
+abj
aaa
+abj
+daG
+abj
+abj
+abj
+cTN
+abj
+abj
+abj
+daG
+abj
+aaa
+aaa
+abj
+aaa
+abj
aaa
aaa
aaa
@@ -168023,13 +160896,13 @@ aaZ
aaa
aaa
abj
-aMq
-aMq
-aMq
+aJx
+aJx
+aJx
bfS
-bbG
+abQ
bdh
-aMq
+aJx
aaa
abj
aaa
@@ -168043,23 +160916,23 @@ aaa
aaa
abj
aaa
+abj
+abj
+aaa
+abj
+abj
+aaa
abi
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
aaa
aaa
aaa
@@ -168105,22 +160978,25 @@ aaa
aaa
aaa
aaa
+abi
+abi
+abj
+abj
aaa
+dak
+daT
+dbc
aaa
+abj
+daG
+abj
+aaa
+dak
+daT
+dbc
aaa
abi
-aaa
-abW
-acj
-aco
-abj
-abW
-acj
-aco
-abj
-abW
-acj
-aco
+abi
abj
abi
aaa
@@ -168185,9 +161061,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
"}
(228,1,1) = {"
aaa
@@ -168282,11 +161155,11 @@ aaa
aaa
aaa
abj
-aMq
+aJx
bab
bcW
bab
-aMq
+aJx
abj
abi
abi
@@ -168300,23 +161173,23 @@ abi
abi
abj
aaa
+abj
+abj
+abj
abi
+abi
+abi
+abj
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+abj
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
aaa
aaa
aaa
@@ -168365,21 +161238,21 @@ aaa
aaa
aaa
aaa
+abj
+abj
+dak
+daT
+dbc
+aaa
+dak
+daT
+dbc
+aaa
+dak
+daT
+dbc
+aaa
abi
-abj
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abj
aaa
aaa
aaa
@@ -168539,11 +161412,11 @@ aaa
aaa
abi
abj
-aMq
+aJx
bac
-bbG
-bbG
-aMq
+abQ
+abQ
+aJx
aaa
aaa
aaa
@@ -168558,22 +161431,22 @@ aaa
aaa
aaa
abj
+abj
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+mkp
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+mkp
+abj
+abi
aaa
aaa
aaa
@@ -168621,21 +161494,21 @@ aaa
aaa
aaa
aaa
-aaa
+vXX
abi
aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
-abW
-acj
-aco
-aaa
+dak
+daT
+dbc
+abj
+dak
+daT
+dbc
+abj
+dak
+daT
+dbc
+abj
abi
aaa
aaa
@@ -168796,11 +161669,11 @@ aaa
aaa
abi
abj
-aMq
+aJx
bpr
bbI
bpr
-aMq
+aJx
abj
abj
abi
@@ -168814,23 +161687,23 @@ abi
abj
aaa
aaa
+abj
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+oEG
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+fhF
+oEG
+abj
+abj
aaa
aaa
aaa
@@ -168878,22 +161751,22 @@ aaa
aaa
aaa
aaa
-aaa
+vXX
abi
+abj
+dak
+daT
+dbc
aaa
+dak
+daT
+dbc
aaa
+dak
+daT
+dbc
aaa
-aaa
-aaa
-abW
-acj
-aco
-aaa
-aaa
-aaa
-aaa
-aaa
-abi
+abj
aaa
aaa
aaa
@@ -169053,21 +161926,11 @@ aaa
aaa
aaa
abj
-aMq
+aJx
bae
bbJ
bae
-aMq
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aJx
aaa
aaa
aaa
@@ -169081,11 +161944,21 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
aaa
aaa
+bPS
+oEG
+mkp
+abj
+abj
+abj
+mkp
+oEG
+bPS
aaa
aaa
aaa
@@ -169137,20 +162010,20 @@ aaa
aaa
aaa
abi
-abi
-abj
-abi
-abi
-aaa
aaa
+dak
+daT
+dbc
aaa
+dak
+daT
+dbc
aaa
+dak
+daT
+dbc
aaa
abi
-abj
-abi
-abj
-abj
aaa
aaa
aaa
@@ -169310,15 +162183,11 @@ aaa
aaa
aaa
aaa
-aGT
+ygH
bae
bbK
bae
-aGT
-aaa
-aaa
-aaa
-aaa
+ygH
aaa
aaa
aaa
@@ -169332,6 +162201,7 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
@@ -169339,8 +162209,11 @@ aaa
aaa
aaa
aaa
+abj
aaa
+abj
aaa
+abj
aaa
aaa
aaa
@@ -169393,22 +162266,22 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-abi
-abi
-abj
-abi
-abi
-abj
abi
aaa
aaa
aaa
aaa
aaa
+dak
+daT
+dbc
+aaa
+aaa
+aaa
+aaa
+aaa
+abi
+aaa
aaa
aaa
aaa
@@ -169585,6 +162458,7 @@ aaa
aaa
aaa
aaa
+abi
aaa
aaa
aaa
@@ -169592,12 +162466,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abi
+abi
+abi
+abi
aaa
aaa
aaa
@@ -169650,21 +162523,21 @@ aaa
aaa
aaa
aaa
+abi
+abi
+abj
+abi
+abi
aaa
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abj
+abi
+abj
+abj
aaa
aaa
aaa
@@ -169842,7 +162715,7 @@ aaa
aaa
aaa
aaa
-aaa
+abj
aaa
aaa
aaa
@@ -169911,13 +162784,13 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abi
+abi
+abj
+abi
+abi
+abj
+abi
aaa
aaa
aaa
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 0eed170f63f..d72b8a9dfa6 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -14,6 +14,14 @@
},
/turf/space,
/area/space/nearstation)
+"aac" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
"aaD" = (
/obj/effect/landmark{
name = "carpspawn"
@@ -249,8 +257,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -277,6 +284,9 @@
icon_state = "4-8"
},
/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -315,7 +325,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -344,9 +353,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -374,6 +380,17 @@
/obj/effect/spawner/window/shuttle,
/turf/simulated/floor/plating,
/area/shuttle/pod_2)
+"acw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"acx" = (
/obj/structure/cable{
d2 = 2;
@@ -410,8 +427,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -420,16 +442,20 @@
/obj/item/plant_analyzer,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/permabrig)
"acD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -449,7 +475,6 @@
/area/security/permabrig)
"acI" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = 32
},
@@ -470,21 +495,13 @@
/area/security/permabrig)
"acL" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
/obj/structure/cable/yellow,
-/turf/simulated/floor/plating,
-/area/security/permabrig)
-"acM" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/security/permabrig)
"acN" = (
@@ -492,11 +509,9 @@
/area/security/permabrig)
"acO" = (
/obj/machinery/door/poddoor{
- density = 1;
icon_state = "pdoor1";
id_tag = "SecJusticeChamber";
- name = "Justice Vent";
- opacity = 1
+ name = "Justice Vent"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
@@ -532,8 +547,7 @@
icon_state = "4-8"
},
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-13";
- tag = "icon-plant-13"
+ icon_state = "plant-13"
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -592,7 +606,6 @@
network = list("SS13","Prison")
},
/obj/item/radio/intercom/locked/prison{
- dir = 2;
name = "Prison Intercom (General)";
pixel_y = 24
},
@@ -616,23 +629,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/permabrig)
-"acZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -651,7 +654,6 @@
/area/security/permabrig)
"adb" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -661,14 +663,12 @@
},
/area/security/permabrig)
"adc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "warndark";
- tag = "icon-warndark (NORTHWEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"add" = (
@@ -677,18 +677,16 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "warndark";
- tag = "icon-warndark (NORTHEAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"ade" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "warndark";
- tag = "icon-warndark (NORTH)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"adf" = (
@@ -761,8 +759,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
@@ -803,7 +800,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/reagent_containers/food/condiment/peppermill{
pixel_x = 3
},
@@ -811,6 +807,8 @@
pixel_x = -3;
pixel_y = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"adr" = (
@@ -823,13 +821,6 @@
icon_state = "floorgrime"
},
/area/security/permabrig)
-"ads" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/permabrig)
"adt" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
@@ -864,19 +855,19 @@
/turf/simulated/floor/plating,
/area/security/permabrig)
"adx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/sparker{
- dir = 2;
id = "executionburn";
pixel_x = -25
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "warndark";
- tag = "icon-warndark (WEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"ady" = (
@@ -885,10 +876,12 @@
name = "mounted justice flash";
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "warndark";
- tag = "icon-warndark (EAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"adz" = (
@@ -896,16 +889,18 @@
/obj/item/clothing/suit/straight_jacket,
/obj/item/clothing/glasses/sunglasses/blindfold,
/obj/item/clothing/mask/muzzle,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/electropack,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/permabrig)
"adA" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -944,12 +939,14 @@
/area/security/permabrig)
"adE" = (
/obj/item/radio/intercom/locked/prison{
- dir = 2;
name = "Prison Intercom (General)";
pixel_y = -28
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -984,8 +981,7 @@
/obj/item/clothing/shoes/magboots,
/obj/machinery/camera{
c_tag = "Engineering Secure Storage South";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1038,14 +1034,14 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/item/toy/cards/deck,
+/obj/item/toy/cards/deck,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/item/toy/cards/deck,
-/obj/item/toy/cards/deck,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"adS" = (
/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"adT" = (
@@ -1080,10 +1076,6 @@
/turf/simulated/floor/plating,
/area/security/permabrig)
"adY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table,
/obj/item/folder/red{
pixel_x = 3
@@ -1094,6 +1086,8 @@
/obj/item/storage/fancy/cigarettes,
/obj/item/flash,
/obj/item/reagent_containers/spray/pepper,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1105,36 +1099,25 @@
},
/area/security/podbay)
"aea" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "warndark";
- tag = "icon-warndark (SOUTHWEST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aeb" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 2;
name = "justice injector"
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "warndark";
- tag = "icon-warndark (SOUTHEAST)"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "warndark";
- tag = "icon-warndark"
+ icon_state = "warndark"
},
/area/security/permabrig)
"aed" = (
@@ -1176,6 +1159,7 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"aeq" = (
@@ -1214,6 +1198,7 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -1228,21 +1213,9 @@
icon_state = "floorgrime"
},
/area/security/permabrig)
-"aeu" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/permabrig)
"aev" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -1257,19 +1230,16 @@
/area/security/permabrig)
"aex" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
id_tag = "executionfireblast";
- name = "blast door";
opacity = 0
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkredfull"
},
/area/security/permabrig)
"aey" = (
@@ -1279,9 +1249,6 @@
req_access_txt = "3"
},
/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/window/reinforced{
dir = 8
},
@@ -1298,7 +1265,6 @@
density = 0;
icon_state = "open";
id_tag = "executionfireblast";
- name = "blast door";
opacity = 0
},
/turf/simulated/floor/plasteel{
@@ -1308,21 +1274,17 @@
"aez" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
id_tag = "executionfireblast";
- name = "blast door";
opacity = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "darkredfull"
},
/area/security/permabrig)
"aeA" = (
@@ -1345,10 +1307,13 @@
/turf/space,
/area/solar/auxstarboard)
"aeB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light,
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"aeC" = (
@@ -1381,13 +1346,19 @@
})
"aeO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/permabrig)
"aeP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -1399,30 +1370,19 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/permabrig)
"aeR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/security/permabrig)
-"aeS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -1493,13 +1453,9 @@
pixel_x = -3;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/machinery/alarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 4;
- icon_state = "alarm0";
locked = 0;
name = "all-access air alarm";
pixel_x = -24;
@@ -1507,7 +1463,6 @@
req_one_access = "0"
},
/obj/machinery/door_control{
- dir = 2;
id = "SecJusticeChamber";
layer = 4;
name = "Justice Vent Control";
@@ -1550,9 +1505,6 @@
},
/area/security/permabrig)
"aeY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/table,
/obj/item/flashlight/lamp,
/obj/structure/reagent_dispensers/peppertank{
@@ -1564,7 +1516,6 @@
/area/security/permabrig)
"aeZ" = (
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 1;
name = "Prisoner Education Chamber APC";
pixel_y = 24
@@ -1577,7 +1528,7 @@
name = "educational injections";
pixel_x = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel{
@@ -1585,16 +1536,13 @@
},
/area/security/permabrig)
"afa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
name = "old sink";
pixel_y = 28
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1617,10 +1565,19 @@
id_tag = "permabolt3";
name = "Cell 3"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/permabrig)
+"afl" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
"afo" = (
/obj/structure/cable{
d2 = 8;
@@ -1639,7 +1596,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -1675,8 +1631,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -1693,6 +1649,8 @@
id_tag = "permabolt1";
name = "Cell 1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -1713,12 +1671,8 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -1757,7 +1711,6 @@
name = "Cell Bolt Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -1765,9 +1718,6 @@
},
/area/security/permabrig)
"afB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/machinery/light{
dir = 8
},
@@ -1775,6 +1725,9 @@
dir = 4;
pixel_x = -23
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -1789,24 +1742,18 @@
},
/area/security/permabrig)
"afD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/structure/chair/office/dark{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/structure/chair/office/dark{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/permabrig)
"afE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -1819,7 +1766,9 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1856,9 +1805,8 @@
/turf/simulated/wall/mineral/titanium,
/area/shuttle/pod_3)
"afO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1908,10 +1856,12 @@
pixel_x = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1922,11 +1872,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -1945,13 +1892,15 @@
/obj/machinery/light_switch{
pixel_x = 26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1962,9 +1911,11 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1993,9 +1944,8 @@
id = "insaneflash";
pixel_x = 26
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 7;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -2007,6 +1957,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -2029,8 +1985,7 @@
"agc" = (
/obj/machinery/camera{
c_tag = "Atmospherics - Starboard Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/lattice,
/turf/space,
@@ -2099,6 +2054,7 @@
/turf/simulated/floor/plating,
/area/shuttle/pod_3)
"agm" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -2127,10 +2083,8 @@
id = "PCell 3";
pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -2170,24 +2124,12 @@
/turf/simulated/floor/plating,
/area/security/hos)
"ags" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/machinery/flasher{
id = "PCell 2";
pixel_x = -28
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/permabrig)
-"agu" = (
-/obj/structure/table,
-/obj/item/paper,
-/obj/item/pen{
- pixel_x = -3;
- pixel_y = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -2202,7 +2144,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -2212,10 +2156,8 @@
id = "PCell 1";
pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- layer = 2.4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -2228,11 +2170,7 @@
pixel_y = 5
},
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitered"
},
/area/security/permabrig)
@@ -2241,11 +2179,7 @@
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/obj/machinery/iv_drip,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitered"
},
/area/security/permabrig)
@@ -2255,14 +2189,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitered"
},
/area/security/permabrig)
@@ -2290,7 +2219,7 @@
pixel_x = 27;
pixel_y = 29
},
-/obj/machinery/suit_storage_unit/security/secure,
+/obj/machinery/suit_storage_unit/security/hos,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -2374,8 +2303,7 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2387,11 +2315,8 @@
},
/obj/machinery/meter,
/obj/machinery/door/window/westleft{
- base_state = "left";
dir = 1;
- icon_state = "left";
- name = "gas ports";
- req_access_txt = "0"
+ name = "gas ports"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2411,8 +2336,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -2423,8 +2348,6 @@
name = "Long-Term Cell 3";
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -2439,8 +2362,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -2450,8 +2373,6 @@
name = "Long-Term Cell 1";
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -2515,17 +2436,13 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"agZ" = (
/obj/machinery/space_heater,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2555,9 +2472,6 @@
},
/area/security/hos)
"ahd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -2578,8 +2492,13 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2590,8 +2509,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ahf" = (
@@ -2607,8 +2525,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ahg" = (
@@ -2625,8 +2542,7 @@
},
/obj/machinery/portable_atmospherics/canister/sleeping_agent,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahk" = (
@@ -2650,15 +2566,27 @@
icon_state = "dark"
},
/area/security/podbay)
+"ahq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
"ahx" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/computer/security/telescreen{
desc = "Used for watching Prison Wing holding areas.";
name = "Prison Monitor";
@@ -2670,8 +2598,13 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2681,8 +2614,7 @@
},
/obj/machinery/space_heater,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahA" = (
@@ -2707,26 +2639,36 @@
/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/item/wrench,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ahB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
+"ahC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"ahD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -2741,8 +2683,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2764,11 +2708,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2778,10 +2724,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2794,8 +2743,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2813,9 +2764,6 @@
pixel_y = 25;
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/flasher_button{
id = "PCell 2";
pixel_x = 6;
@@ -2826,8 +2774,13 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2842,10 +2795,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2861,8 +2813,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2870,9 +2824,8 @@
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2887,9 +2840,6 @@
pixel_y = 25;
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/flasher_button{
id = "PCell 1";
pixel_x = 6;
@@ -2900,21 +2850,13 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/security/permabrig)
-"ahN" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2926,9 +2868,6 @@
pixel_x = 1;
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -2939,11 +2878,15 @@
},
/obj/machinery/camera{
c_tag = "Prison Hallway Starboard";
- dir = 2;
network = list("SS13","Prison")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2953,9 +2896,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/flasher_button{
id = "insaneflash";
pixel_y = 26
@@ -2965,12 +2905,13 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2986,8 +2927,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -2999,8 +2942,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within.";
@@ -3023,12 +2965,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/permabrig)
@@ -3050,10 +2991,6 @@
},
/area/security/armoury)
"ahV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/machinery/light/small{
dir = 1
},
@@ -3073,11 +3010,9 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29;
pixel_y = 23
@@ -3088,12 +3023,10 @@
/area/security/hos)
"ahX" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = -32;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -3121,12 +3054,10 @@
/area/security/hos)
"aib" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = 32;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_scrubber,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -3140,10 +3071,6 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3165,9 +3092,7 @@
/area/security/podbay)
"aig" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -3184,8 +3109,7 @@
"aih" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3210,8 +3134,7 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3230,8 +3153,7 @@
"ail" = (
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3239,8 +3161,7 @@
"aim" = (
/obj/structure/closet/boxinggloves,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3251,16 +3172,14 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
"aio" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3275,14 +3194,11 @@
/obj/item/grenade/barrier,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aiq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -3304,7 +3220,6 @@
pixel_y = -3
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 30
},
@@ -3313,9 +3228,6 @@
},
/area/security/armoury)
"aiw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/light/small{
dir = 1
},
@@ -3331,18 +3243,14 @@
"aix" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/security/permabrig)
"aiy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3375,9 +3283,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3386,29 +3291,17 @@
"aiC" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_y = -22
},
/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
-"aiD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/permabrig)
"aiE" = (
/obj/structure/table,
/obj/item/folder/red{
@@ -3420,17 +3313,13 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiF" = (
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3441,10 +3330,6 @@
dir = 1;
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3457,23 +3342,23 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/security/permabrig)
"aiI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
},
/area/security/permabrig)
"aiJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -3487,7 +3372,6 @@
"aiL" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/chair/comfy/black{
@@ -3510,14 +3394,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
- },
-/area/security/armoury)
-"aiN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "vault"
},
/area/security/armoury)
"aiO" = (
@@ -3534,8 +3411,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aiP" = (
@@ -3563,16 +3439,13 @@
/turf/space,
/area/solar/auxport)
"aiS" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiT" = (
@@ -3587,8 +3460,7 @@
},
/obj/item/storage/box/prisoner,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiU" = (
@@ -3601,8 +3473,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aiV" = (
@@ -3627,7 +3498,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -3666,7 +3536,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -3674,8 +3543,7 @@
"ajb" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -3693,36 +3561,28 @@
/turf/simulated/floor/plating,
/area/security/hos)
"ajd" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"aje" = (
-/obj/structure/closet/secure_closet/brig{
- anchored = 1
- },
+/obj/structure/closet/secure_closet/brig,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/permabrig)
"ajf" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -3746,8 +3606,7 @@
/obj/item/storage/fancy,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"aji" = (
@@ -3793,9 +3652,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -3833,13 +3689,12 @@
/obj/item/storage/box/masks,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"ajv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -3879,8 +3734,7 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"ajy" = (
@@ -3906,15 +3760,13 @@
},
/obj/machinery/camera{
c_tag = "Head of Security's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"ajA" = (
@@ -3929,8 +3781,7 @@
"ajC" = (
/obj/machinery/power/solar_control{
id = "foreport";
- name = "Fore Port Solar Control";
- track = 0
+ name = "Fore Port Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -3940,7 +3791,6 @@
/area/maintenance/auxsolarport)
"ajD" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -3969,7 +3819,6 @@
/area/security/permabrig)
"ajG" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
name = "Prison Wing";
req_access_txt = "1"
@@ -3978,6 +3827,8 @@
/area/security/permabrig)
"ajH" = (
/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/security/permabrig)
"ajI" = (
@@ -3988,7 +3839,6 @@
/turf/simulated/wall,
/area/security/permabrig)
"ajJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 4
},
@@ -4019,8 +3869,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajL" = (
@@ -4037,16 +3886,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajM" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajN" = (
@@ -4059,6 +3906,9 @@
/area/maintenance/auxsolarport)
"ajO" = (
/obj/structure/bed/dogbed,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"ajP" = (
@@ -4087,8 +3937,7 @@
/obj/structure/dispenser/oxygen,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"ajS" = (
@@ -4097,7 +3946,6 @@
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"ajT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -4115,20 +3963,6 @@
icon_state = "redfull"
},
/area/security/permabrig)
-"ajU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "Prison Gate";
- name = "Security Blast Door";
- opacity = 0
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/permabrig)
"ajV" = (
/turf/simulated/wall,
/area/security/armoury)
@@ -4137,8 +3971,7 @@
/obj/item/storage/box/teargas,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/armoury)
"ajX" = (
@@ -4154,18 +3987,19 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/hos)
"ajZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"aka" = (
@@ -4176,20 +4010,27 @@
/obj/effect/landmark/start{
name = "Head of Security"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/security/hos)
"akb" = (
-/turf/simulated/floor/carpet,
-/area/security/hos)
-"akc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/turf/simulated/floor/carpet,
+/area/security/hos)
+"akc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akd" = (
@@ -4198,12 +4039,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"ake" = (
@@ -4226,7 +4067,6 @@
"akg" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Armory APC";
pixel_x = 1;
pixel_y = -24
@@ -4234,19 +4074,17 @@
/obj/machinery/light,
/obj/machinery/camera/motion{
c_tag = "Armory - Internal";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/armoury)
"akh" = (
@@ -4255,8 +4093,10 @@
name = "\improper Recreation Area"
})
"aki" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness{
@@ -4264,8 +4104,10 @@
})
"akj" = (
/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness{
@@ -4278,8 +4120,8 @@
})
"akl" = (
/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -4297,9 +4139,8 @@
name = "\improper Recreation Area"
})
"akn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
@@ -4323,8 +4164,6 @@
req_access = null;
req_access_txt = "3"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/armoury)
"aks" = (
@@ -4349,8 +4188,7 @@
/obj/item/clothing/head/helmet/riot,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akv" = (
@@ -4358,8 +4196,7 @@
pixel_y = 8
},
/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
@@ -4370,10 +4207,6 @@
icon_state = "1-4";
tag = "90Curve"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -4390,7 +4223,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -4419,8 +4251,7 @@
"akA" = (
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akB" = (
@@ -4432,23 +4263,22 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/mob/living/simple_animal/hostile/retaliate/araneus,
/turf/simulated/floor/carpet,
/area/security/hos)
"akC" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/item/clothing/head/beret/sec,
/obj/item/clothing/suit/jacket/pilot,
/obj/machinery/alarm{
pixel_y = 24
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -4464,8 +4294,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"akF" = (
@@ -4477,17 +4306,14 @@
/obj/machinery/light/small,
/obj/machinery/camera{
c_tag = "Security - EVA Storage";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/permabrig)
"akG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -4529,11 +4355,12 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"akK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -4567,10 +4394,11 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"akO" = (
@@ -4584,21 +4412,13 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
"akP" = (
/obj/machinery/camera{
- c_tag = "Engineering - Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Engineering - Storage"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/suit_storage_unit/engine/secure,
@@ -4613,12 +4433,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"akR" = (
@@ -4627,7 +4443,6 @@
name = "Prison Wing";
req_access_txt = "1"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -4652,17 +4467,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/carpet,
/area/security/hos)
"akT" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/security/glass{
name = "Prison Wing";
req_access_txt = "1"
@@ -4682,12 +4490,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/hos)
"akV" = (
@@ -4696,8 +4500,7 @@
},
/obj/machinery/camera{
c_tag = "Security - Secure Gear Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/flasher/portable,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -4740,7 +4543,6 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 26
},
@@ -4749,13 +4551,15 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/main)
"ala" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/armoury)
"alb" = (
@@ -4771,9 +4575,7 @@
dir = 1
},
/obj/machinery/door/window/eastright{
- base_state = "right";
dir = 8;
- icon_state = "right";
name = "Fitness Ring"
},
/turf/simulated/floor/plasteel{
@@ -4829,7 +4631,7 @@
/obj/machinery/alarm{
pixel_y = 24
},
-/obj/machinery/atmospherics/unary/vent_pump,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -4859,16 +4661,16 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/armoury)
@@ -4938,6 +4740,8 @@
name = "privacy shutters";
opacity = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/security/hos)
"alv" = (
@@ -4951,7 +4755,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
@@ -5027,9 +4830,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/security/hos)
"alB" = (
@@ -5038,6 +4840,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -5051,8 +4855,7 @@
"alD" = (
/obj/structure/closet/secure_closet/security,
/obj/machinery/camera{
- c_tag = "Atmospherics - Control Room";
- network = list("SS13")
+ c_tag = "Atmospherics - Control Room"
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -5060,12 +4863,14 @@
/area/security/main)
"alE" = (
/obj/machinery/light_switch{
- dir = 2;
name = "light switch ";
pixel_y = -22
},
/obj/structure/table/reinforced,
/obj/item/book/manual/security_space_law,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -5099,20 +4904,7 @@
},
/turf/simulated/floor/plating,
/area/security/podbay)
-"alJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/podbay)
"alK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -5142,14 +4934,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
},
/area/security/brig)
"alO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
@@ -5195,8 +4985,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/security/hos)
"alS" = (
@@ -5210,6 +4998,9 @@
pixel_y = -28
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -5227,7 +5018,7 @@
/turf/simulated/floor/plating,
/area/maintenance/fore)
"alX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -5252,7 +5043,6 @@
name = "referee suit"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness{
@@ -5269,18 +5059,6 @@
name = "\improper Recreation Area"
})
"amc" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault"
- },
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
-"amd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -5372,13 +5150,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
-"amp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
"amq" = (
/obj/structure/table,
/obj/item/restraints/handcuffs,
@@ -5392,6 +5163,9 @@
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -5399,7 +5173,6 @@
"amr" = (
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Port Solar Access";
req_access_txt = "10"
},
@@ -5408,13 +5181,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
"ams" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -5423,7 +5194,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/mirror{
@@ -5472,7 +5242,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/simulated/floor/plasteel,
@@ -5491,19 +5260,14 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/main)
-"amz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"amA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -5530,11 +5294,8 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -5571,8 +5332,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5625,10 +5386,10 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -5671,12 +5432,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -5690,8 +5450,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amN" = (
@@ -5705,11 +5464,9 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -5717,24 +5474,10 @@
"amO" = (
/turf/simulated/wall,
/area/security/main)
-"amP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
- },
-/area/security/main)
"amQ" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amR" = (
@@ -5744,21 +5487,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
- },
-/area/security/main)
-"amT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/structure/closet/secure_closet/security,
-/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amU" = (
@@ -5768,8 +5498,7 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/main)
"amV" = (
@@ -5812,27 +5541,10 @@
icon_state = "dark"
},
/area/security/podbay)
-"amY" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/brig)
"amZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/security/armoury)
"ana" = (
@@ -5841,25 +5553,16 @@
name = "Evidence Storage";
req_access_txt = "3"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/security/armoury)
"anb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/armoury)
@@ -5903,7 +5606,7 @@
/obj/structure/chair{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -5945,6 +5648,11 @@
"anq" = (
/turf/simulated/wall/r_wall,
/area/engine/mechanic_workshop)
+"anr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/ntrep)
"ans" = (
/turf/simulated/wall,
/area/maintenance/auxsolarstarboard)
@@ -5974,25 +5682,24 @@
/area/maintenance/disposal)
"any" = (
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"anz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"anA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"anB" = (
@@ -6008,6 +5715,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -6018,10 +5728,13 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -6037,10 +5750,13 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -6048,24 +5764,10 @@
"anE" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"anG" = (
-/obj/item/vending_refill/cola,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"anH" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/power/apc{
dir = 1;
name = "Fore Maintenance APC";
@@ -6075,6 +5777,12 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"anI" = (
@@ -6130,14 +5838,15 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/security/armoury)
"anM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -6148,33 +5857,32 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/security/main)
-"anN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/security/main)
+"anN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/security/main)
"anO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -6189,8 +5897,6 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -6235,9 +5941,14 @@
pixel_y = 10
},
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/main)
"anV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
@@ -6279,14 +5990,11 @@
/turf/simulated/floor/plasteel,
/area/security/armoury)
"aoc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -6311,6 +6019,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -6323,8 +6034,7 @@
"aog" = (
/obj/machinery/camera{
c_tag = "Security - Office - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -6358,10 +6068,10 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aok" = (
@@ -6390,20 +6100,16 @@
name = "Evidence Storage";
req_access_txt = "3"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/armoury)
"aoo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -6418,8 +6124,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aoq" = (
@@ -6431,8 +6136,7 @@
},
/obj/machinery/camera{
c_tag = "Brig - Infirmary";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6446,28 +6150,17 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitered"
},
/area/security/brig)
-"aos" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aot" = (
/obj/structure/closet{
name = "Evidence Closet"
@@ -6475,8 +6168,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aou" = (
@@ -6499,8 +6191,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aow" = (
@@ -6509,13 +6200,11 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aox" = (
@@ -6524,17 +6213,6 @@
icon_state = "red"
},
/area/security/main)
-"aoy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault"
- },
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
"aoA" = (
/obj/structure/chair{
dir = 8
@@ -6556,7 +6234,6 @@
pixel_y = 24
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -6565,8 +6242,8 @@
},
/area/crew_quarters/sleep)
"aoF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -6576,21 +6253,15 @@
/area/maintenance/starboard)
"aoH" = (
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
/area/security/main)
"aoI" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -6605,6 +6276,7 @@
/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -6655,7 +6327,6 @@
},
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right";
layer = 3
},
@@ -6688,7 +6359,6 @@
"aoW" = (
/obj/structure/table,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 26
},
@@ -6719,10 +6389,13 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"aoZ" = (
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -6732,18 +6405,18 @@
name = "Secure Storage Room";
req_access_txt = "65"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"apb" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -6799,6 +6472,10 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 30
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -6816,9 +6493,7 @@
},
/area/security/brig)
"apk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -6843,19 +6518,13 @@
/area/security/brig)
"apm" = (
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"apn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
+/turf/simulated/floor/plasteel,
/area/security/brig)
"apo" = (
/obj/structure/closet{
@@ -6863,19 +6532,13 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/security/warden)
"app" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"apq" = (
@@ -6886,28 +6549,30 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"apr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"aps" = (
/obj/item/storage/fancy/donut_box,
/obj/structure/table,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"apt" = (
@@ -6920,26 +6585,19 @@
},
/area/security/main)
"apu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"apv" = (
/obj/structure/table,
/obj/item/storage/box/evidence,
/obj/item/storage/box/evidence,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"apx" = (
@@ -6974,6 +6632,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
@@ -7000,8 +6661,6 @@
/obj/effect/landmark/start{
name = "Head of Security"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/main)
"apF" = (
@@ -7011,8 +6670,7 @@
"apG" = (
/obj/machinery/camera{
c_tag = "Security - Office - Starboard";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -7048,18 +6706,17 @@
/turf/simulated/floor/engine,
/area/security/podbay)
"apL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7077,17 +6734,14 @@
/obj/effect/landmark{
name = "JoinLateCryo"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7108,7 +6762,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/flasher{
id = "secentranceflasher";
@@ -7120,8 +6773,7 @@
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 1;
- icon_state = "airlock_unres_helper"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -7130,13 +6782,11 @@
/area/security/brig)
"apQ" = (
/obj/machinery/sleeper{
- dir = 4;
- icon_state = "sleeper-open"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"apR" = (
@@ -7159,15 +6809,6 @@
icon_state = "left";
name = "Fitness Ring"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
-"apU" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7175,9 +6816,8 @@
name = "\improper Recreation Area"
})
"apV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
@@ -7215,7 +6855,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness{
@@ -7228,7 +6867,6 @@
/area/security/brig)
"aqc" = (
/obj/machinery/door/airlock/maintenance{
- name = "maintenance access";
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -7266,9 +6904,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -7291,8 +6926,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"aqq" = (
@@ -7313,7 +6947,6 @@
"aqs" = (
/obj/machinery/door/window/eastright{
base_state = "left";
- dir = 4;
icon_state = "left";
name = "Danger: Conveyor Access";
req_access_txt = "12"
@@ -7325,8 +6958,8 @@
/area/maintenance/disposal)
"aqt" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aqu" = (
@@ -7344,7 +6977,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
@@ -7367,8 +7003,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"aqy" = (
@@ -7379,8 +7014,7 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "windoor";
- req_access_txt = "0"
+ name = "windoor"
},
/obj/item/book/manual/engineering_hacking,
/obj/item/tape/random,
@@ -7444,15 +7078,6 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aqH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/security/brig)
"aqI" = (
/obj/structure/table,
/obj/machinery/firealarm{
@@ -7462,8 +7087,7 @@
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/warden)
"aqJ" = (
@@ -7472,21 +7096,11 @@
icon_state = "redcorner"
},
/area/security/brig)
-"aqK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/security/warden)
"aqL" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aqM" = (
@@ -7497,16 +7111,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -7517,8 +7121,7 @@
"aqN" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"aqO" = (
@@ -7527,17 +7130,17 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -7546,18 +7149,16 @@
name = "\improper Recreation Area"
})
"aqP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -7565,14 +7166,15 @@
},
/area/security/brig)
"aqQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqR" = (
@@ -7582,16 +7184,14 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqS" = (
@@ -7600,7 +7200,6 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -7615,13 +7214,11 @@
},
/obj/machinery/camera{
c_tag = "Security - Gear Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"aqU" = (
@@ -7630,6 +7227,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
@@ -7647,6 +7245,7 @@
},
/area/security/main)
"aqW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "red"
@@ -7691,8 +7290,6 @@
"arb" = (
/obj/structure/table/reinforced,
/obj/item/paper,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/main)
"arc" = (
@@ -7701,6 +7298,8 @@
pixel_x = -3;
pixel_y = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/main)
"ard" = (
@@ -7718,18 +7317,17 @@
/obj/machinery/door/airlock/public/glass{
name = "Cryodorms"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7746,31 +7344,27 @@
req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"arh" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -7784,8 +7378,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"arj" = (
@@ -7798,9 +7391,7 @@
},
/area/security/brig)
"arl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -7809,7 +7400,6 @@
/obj/structure/chair{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -7819,6 +7409,9 @@
})
"arn" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
@@ -7827,6 +7420,9 @@
/obj/structure/chair{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -7848,35 +7444,8 @@
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"art" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"aru" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"arv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
"arw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -7915,10 +7484,6 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"arF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/machinery/conveyor/east{
id = "garbage"
},
@@ -7927,7 +7492,6 @@
/area/maintenance/disposal)
"arG" = (
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Danger: Conveyor Access";
req_access_txt = "12"
},
@@ -7937,9 +7501,6 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"arH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7949,6 +7510,12 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"arI" = (
@@ -7971,47 +7538,21 @@
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"arL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"arM" = (
/obj/machinery/door/window/westleft{
- base_state = "left";
dir = 4;
- icon_state = "left";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
-"arN" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"arO" = (
/obj/machinery/mineral/stacking_unit_console{
- dir = 2;
machinedir = 8;
pixel_x = 32
},
@@ -8037,8 +7578,11 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
@@ -8048,8 +7592,7 @@
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/security/warden)
"arR" = (
@@ -8057,6 +7600,12 @@
dir = 4
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"arS" = (
@@ -8065,8 +7614,7 @@
},
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/security/warden)
"arT" = (
@@ -8087,20 +7635,13 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"arV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/security/warden)
"arW" = (
@@ -8113,9 +7654,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"arX" = (
@@ -8126,8 +7664,7 @@
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"arY" = (
@@ -8137,10 +7674,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"arZ" = (
@@ -8164,16 +7697,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/security/armoury)
-"asc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/security/brig)
"asd" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
@@ -8186,10 +7709,12 @@
/obj/machinery/light/small,
/obj/structure/table,
/obj/item/hand_labeler,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"asf" = (
@@ -8197,15 +7722,13 @@
name = "Evidence Closet"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/security/evidence)
"asg" = (
@@ -8229,11 +7752,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -8275,15 +7795,12 @@
dir = 1;
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -8294,17 +7811,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -8325,8 +7838,9 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -8348,8 +7862,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"asr" = (
@@ -8361,6 +7874,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -8378,16 +7894,10 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
- sortType = 21;
- tag = "icon-pipe-j1s (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ sortType = 21
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -8407,27 +7917,24 @@
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
/area/security/main)
"asu" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
-"asv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
@@ -8447,13 +7954,15 @@
icon_state = "pipe-j2s";
sortType = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
/area/security/main)
"asx" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -8504,6 +8013,12 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"asB" = (
@@ -8512,13 +8027,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -8542,42 +8054,17 @@
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
-"asD" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
"asE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
})
-"asF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
"asI" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
@@ -8588,9 +8075,9 @@
"asK" = (
/obj/machinery/camera{
c_tag = "Gravity Generator Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -8600,13 +8087,11 @@
/obj/machinery/door/airlock/public/glass{
name = "Primary Tool Storage"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"asM" = (
@@ -8616,11 +8101,10 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -8642,8 +8126,6 @@
name = "Gravity Generator Area";
req_access_txt = "19; 61"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -8653,20 +8135,17 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Infirmary";
- req_access_txt = "0"
+ name = "Infirmary"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitered";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitered"
},
/area/security/brig)
"asS" = (
@@ -8688,8 +8167,7 @@
"asU" = (
/obj/machinery/power/solar_control{
id = "forestarboard";
- name = "Fore Starboard Solar Control";
- track = 0
+ name = "Fore Starboard Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -8699,8 +8177,7 @@
/area/maintenance/auxsolarstarboard)
"asV" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -8724,6 +8201,9 @@
icon_state = "1-2"
},
/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -8751,13 +8231,11 @@
name = "Disposal Conveyor Access";
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"atd" = (
/obj/machinery/power/apc{
- dir = 2;
name = "Disposal APC";
pixel_y = -24
},
@@ -8766,14 +8244,17 @@
/turf/simulated/floor/plating,
/area/maintenance/disposal)
"ate" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -8786,19 +8267,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"atg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -8832,9 +8315,6 @@
name = "Port Maintenance"
})
"atl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -8844,12 +8324,11 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"atm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -8859,6 +8338,12 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"ato" = (
@@ -8867,10 +8352,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -8878,7 +8362,6 @@
"atp" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -8886,9 +8369,6 @@
dir = 4;
pixel_y = -28
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -8900,8 +8380,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"atr" = (
@@ -8912,12 +8392,10 @@
/area/security/brig)
"ats" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -8926,8 +8404,7 @@
/obj/item/storage/box/cups,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"atv" = (
@@ -8937,19 +8414,22 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"atw" = (
/obj/machinery/camera{
c_tag = "Security - Gear Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -8957,18 +8437,14 @@
/area/security/brig)
"atx" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"aty" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/simulated/floor/plasteel,
@@ -8978,15 +8454,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/main)
@@ -8998,6 +8473,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"atB" = (
@@ -9031,6 +8507,8 @@
/obj/structure/table,
/obj/item/folder/red,
/obj/item/flash,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/main)
"atH" = (
@@ -9057,6 +8535,12 @@
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/storage/primary)
"atK" = (
@@ -9069,22 +8553,16 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 2
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/security/brig)
"atM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -9093,8 +8571,7 @@
"atN" = (
/obj/structure/closet/lasertag/red,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9106,8 +8583,7 @@
/obj/item/clothing/accessory/red,
/obj/item/clothing/head/soft/red,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9119,8 +8595,7 @@
/obj/item/clothing/accessory/blue,
/obj/item/clothing/head/soft/blue,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9128,8 +8603,7 @@
"atQ" = (
/obj/structure/closet/lasertag/blue,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9139,7 +8613,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -9157,9 +8630,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/fitness{
@@ -9193,8 +8664,7 @@
/obj/machinery/light,
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9230,9 +8700,6 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aue" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -9244,8 +8711,8 @@
pixel_y = 1
},
/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -9255,9 +8722,7 @@
dir = 1;
location = "Disposals"
},
-/obj/structure/plasticflaps{
- opacity = 0
- },
+/obj/structure/plasticflaps,
/obj/machinery/door/window/northright{
dir = 2;
name = "delivery door";
@@ -9290,8 +8755,7 @@
pixel_y = 8
},
/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -9302,10 +8766,6 @@
icon_state = "1-4";
tag = "90Curve"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -9322,7 +8782,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -9334,9 +8793,6 @@
name = "Brig Emergency Storage";
req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -9345,6 +8801,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/security/brig)
"aup" = (
@@ -9353,9 +8815,6 @@
/turf/space,
/area/space/nearstation)
"auq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -9411,7 +8870,6 @@
name = "Port Maintenance"
})
"aux" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
@@ -9430,21 +8888,10 @@
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"auA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"auB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/item/bucket_sensor,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -9492,22 +8939,16 @@
"auH" = (
/obj/machinery/vending/coffee,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
"auI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -9566,8 +9007,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -9590,8 +9030,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -9607,7 +9046,7 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -9615,8 +9054,9 @@
},
/area/security/warden)
"auS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -9632,19 +9072,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -9654,8 +9084,7 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"auV" = (
@@ -9668,22 +9097,13 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel,
/area/security/brig)
"auW" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/security/brig)
"auX" = (
@@ -9692,8 +9112,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -9726,14 +9145,8 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -9749,13 +9162,10 @@
name = "Evidence Storage";
req_access_txt = "3"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/security/warden)
"avc" = (
@@ -9786,18 +9196,13 @@
/obj/structure/urinal{
pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/security/brig)
"avf" = (
/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
+ name = "Unisex Restroom"
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -9815,13 +9220,15 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/processing)
"avh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -9830,19 +9237,13 @@
/obj/structure/sign/nosmoking_1{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/security/brig)
"avj" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -9853,7 +9254,6 @@
/obj/machinery/door/airlock/security{
name = "Interrogation Monitoring";
req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/turf/simulated/floor/plasteel{
@@ -9893,9 +9293,6 @@
},
/area/security/main)
"avo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -9906,28 +9303,14 @@
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
-"avp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock{
- name = "Unisex Restroom";
- req_access_txt = "0"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/security/brig)
-"avq" = (
-/obj/machinery/cryopod/right,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/sleep)
"avr" = (
/turf/simulated/wall,
/area/crew_quarters/mrchangs)
@@ -9939,6 +9322,9 @@
},
/area/security/processing)
"avt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -9951,8 +9337,10 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -10002,10 +9390,6 @@
},
/area/crew_quarters/courtroom)
"avC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -10023,47 +9407,45 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"avF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"avG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"avH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/power/terminal,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"avI" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
/obj/machinery/hologram/holopad,
@@ -10074,11 +9456,7 @@
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
@@ -10088,8 +9466,7 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -10102,7 +9479,6 @@
pixel_y = 23
},
/obj/machinery/status_display{
- density = 0;
pixel_y = 32
},
/obj/machinery/conveyor/north{
@@ -10121,7 +9497,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
@@ -10148,9 +9523,6 @@
},
/area/engine/mechanic_workshop)
"avQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -10172,19 +9544,12 @@
icon_state = "1-4"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"avS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/machinery/light,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
@@ -10218,12 +9583,7 @@
/area/engine/gravitygenerator)
"avW" = (
/obj/machinery/door/airlock/maintenance_hatch{
- name = "Supply Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ name = "Supply Bay Bridge Access"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -10266,25 +9626,13 @@
/area/crew_quarters/sleep)
"awb" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/conveyor/north{
id = "QMLoad2"
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"awc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Supply Bay Bridge Access";
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"awd" = (
/turf/simulated/wall/r_wall,
/area/security/processing)
@@ -10295,10 +9643,6 @@
name = "Port Maintenance"
})
"awf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/machinery/light,
/obj/effect/landmark{
name = "xeno_spawn";
@@ -10314,14 +9658,11 @@
name = "Storage Room";
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"awh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Brig Maintenance";
- req_access_txt = "0";
req_one_access_txt = "63;12"
},
/obj/structure/disposalpipe/segment,
@@ -10330,6 +9671,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"awi" = (
@@ -10353,29 +9696,12 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Labor Camp Desk";
- req_access_txt = "0"
+ name = "Labor Camp Desk"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/brig)
-"awk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/engine/gravitygenerator)
"awl" = (
/obj/structure/table,
/obj/machinery/light/small{
@@ -10401,6 +9727,9 @@
icon_state = "2-8"
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"awo" = (
@@ -10430,9 +9759,6 @@
name = "\improper Recreation Area"
})
"awr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10442,6 +9768,12 @@
icon_state = "4-8"
},
/obj/item/roller,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitered"
},
@@ -10460,6 +9792,12 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -10475,8 +9813,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"awu" = (
@@ -10538,19 +9880,6 @@
icon_state = "redcorner"
},
/area/security/brig)
-"awB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"awC" = (
/obj/machinery/newscaster/security_unit{
pixel_x = 32;
@@ -10565,7 +9894,6 @@
/area/security/brig)
"awD" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -10639,12 +9967,15 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/processing)
"awK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
@@ -10652,7 +9983,6 @@
name = "Port Maintenance"
})
"awL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -10700,12 +10030,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -10713,11 +10042,10 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -10733,6 +10061,9 @@
},
/obj/structure/chair/office/light,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"awV" = (
@@ -10750,9 +10081,7 @@
/obj/machinery/door_control{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
@@ -10763,15 +10092,18 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"awZ" = (
@@ -10783,19 +10115,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/fore)
-"axa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/fore)
"axb" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
@@ -10809,22 +10137,19 @@
name = "Gravity Generator Room";
req_access_txt = "19;23"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"axd" = (
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -10833,7 +10158,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
"axe" = (
@@ -10844,8 +10168,7 @@
/obj/machinery/door_control{
id = "supplybridge";
name = "Shuttle Bay Space Bridge Control";
- pixel_y = 27;
- req_access_txt = "0"
+ pixel_y = 27
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
@@ -10853,11 +10176,11 @@
name = "Port Maintenance"
})
"axf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -10885,18 +10208,15 @@
/obj/machinery/door_control{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = -5;
pixel_y = -3;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/door_control{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = -3;
- req_access_txt = "0"
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -10909,11 +10229,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
@@ -10936,18 +10257,6 @@
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"axm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
@@ -10955,32 +10264,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"axo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"axp" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -11006,9 +10289,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"axs" = (
@@ -11017,12 +10297,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j1s";
sortType = 2
},
/turf/simulated/floor/plating,
@@ -11041,15 +10317,15 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
"axu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -11060,6 +10336,12 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"axv" = (
@@ -11071,12 +10353,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;63"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12;63"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
@@ -11104,6 +10388,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -11118,6 +10405,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -11132,13 +10422,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"axA" = (
@@ -11169,6 +10462,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -11181,9 +10477,7 @@
},
/obj/structure/table/wood,
/obj/item/radio/intercom{
- broadcasting = 0;
frequency = 1424;
- listening = 1;
name = "Interrogation Intercom";
pixel_y = -31
},
@@ -11203,25 +10497,17 @@
icon_state = "pipe-c"
},
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
},
/area/security/processing)
-"axI" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"axK" = (
/obj/structure/sign/pods,
/turf/simulated/wall/r_wall,
@@ -11246,6 +10532,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -11272,12 +10564,8 @@
name = "Cabin Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/bed,
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
@@ -11300,15 +10588,15 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"axS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
@@ -11338,11 +10626,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -11381,10 +10666,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aya" = (
@@ -11392,11 +10680,20 @@
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
"ayb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
"ayc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -11413,21 +10710,18 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aye" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -11436,21 +10730,20 @@
id_tag = "Cabin4";
name = "Cabin 5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"ayg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/sleep)
@@ -11459,13 +10752,15 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/sleep)
"ayi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/sleep)
"ayk" = (
@@ -11473,36 +10768,11 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"ayl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"aym" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"ayn" = (
/obj/structure/closet,
/obj/item/stock_parts/matter_bin,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"ayo" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Storage Room";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"ayp" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
@@ -11523,10 +10793,11 @@
base_state = "right";
dir = 2;
icon_state = "right";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/warden)
"ayr" = (
@@ -11539,10 +10810,13 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ays" = (
@@ -11585,15 +10859,14 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ayw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
name = "Gear Room";
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
/obj/structure/disposalpipe/segment,
@@ -11603,8 +10876,6 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"ayx" = (
@@ -11656,13 +10927,6 @@
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"ayD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"ayE" = (
/obj/machinery/alarm{
dir = 4;
@@ -11688,7 +10952,6 @@
/turf/simulated/floor/plating,
/area/maintenance/fore)
"ayH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -11711,6 +10974,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"ayK" = (
@@ -11719,15 +10985,6 @@
/area/quartermaster/miningdock{
name = "\improper Mining Office"
})
-"ayL" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/security/brig)
"ayN" = (
/obj/structure/closet/radiation,
/obj/structure/sign/securearea{
@@ -11759,7 +11016,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/northeast,
@@ -11773,6 +11029,7 @@
},
/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"ayT" = (
@@ -11790,7 +11047,6 @@
},
/area/security/warden)
"ayV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -11818,9 +11074,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Warden's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Warden's Office"
},
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -11839,8 +11093,7 @@
id = "armoryshutter";
name = "Armory Shutter";
pixel_x = 5;
- pixel_y = -3;
- req_access_txt = "0"
+ pixel_y = -3
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -11853,9 +11106,6 @@
},
/area/security/processing)
"ayZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "redfull"
@@ -11868,32 +11118,14 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/processing)
-"azb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
- },
-/area/security/processing)
"azc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -11902,16 +11134,18 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitered"
},
/area/security/brig)
"azd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
@@ -11933,12 +11167,6 @@
/obj/machinery/atmospherics/unary/portables_connector,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"azg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
"azh" = (
/obj/machinery/light/small{
dir = 4;
@@ -11971,9 +11199,6 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"azo" = (
@@ -11996,7 +11221,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -12008,7 +11232,12 @@
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"azr" = (
@@ -12026,11 +11255,14 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -12042,8 +11274,7 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- icon_state = "stage_stairs";
- tag = "icon-stage_stairs"
+ icon_state = "stage_stairs"
},
/area/security/podbay)
"azu" = (
@@ -12064,17 +11295,6 @@
icon_state = "yellow"
},
/area/engine/engineering)
-"azw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = "0"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
"azx" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -12087,9 +11307,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"azA" = (
@@ -12110,9 +11327,6 @@
},
/area/security/brig)
"azB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -12161,9 +11375,6 @@
name = "north bump";
pixel_y = 24
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -12225,9 +11436,6 @@
},
/area/engine/engineering)
"azK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -12242,6 +11450,15 @@
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -12251,6 +11468,12 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fore)
"azN" = (
@@ -12263,9 +11486,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -12291,12 +11511,17 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;50"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12;50"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
@@ -12309,7 +11534,6 @@
"azR" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/disposalpipe/segment,
@@ -12317,19 +11541,7 @@
/area/quartermaster/sorting{
name = "\improper Warehouse"
})
-"azS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"azT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -12341,6 +11553,7 @@
req_access_txt = "48"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
@@ -12381,9 +11594,6 @@
/area/crew_quarters/sleep)
"aAa" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -12404,7 +11614,12 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/security/brig)
"aAc" = (
@@ -12416,11 +11631,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -12433,13 +11648,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"aAe" = (
@@ -12447,7 +11659,6 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -12473,9 +11684,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -12492,10 +11700,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -12526,9 +11730,11 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -12550,8 +11756,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -12574,23 +11779,9 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"aAs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -12606,17 +11797,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
},
/area/security/processing)
"aAu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 6;
@@ -12640,6 +11828,9 @@
"aAx" = (
/obj/structure/table,
/obj/item/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -12658,6 +11849,9 @@
dir = 8;
network = list("interrogation")
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -12678,13 +11872,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
-"aAD" = (
-/obj/structure/chair/wood{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/wood,
-/area/crew_quarters/mrchangs)
"aAE" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
@@ -12697,23 +11884,12 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aAG" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
"aAH" = (
/obj/machinery/camera{
c_tag = "Dormitories - Fore";
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -12726,9 +11902,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
dir = 1;
@@ -12740,6 +11913,12 @@
dir = 1
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aAJ" = (
@@ -12756,9 +11935,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
dir = 1;
@@ -12791,8 +11967,6 @@
name = "Holding Cell";
req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -12804,6 +11978,9 @@
network = list("MiniSat","tcomm");
pixel_x = -29
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "yellow"
@@ -12834,6 +12011,9 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aAX" = (
@@ -12844,12 +12024,13 @@
name = "Port Maintenance"
})
"aAY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aAZ" = (
@@ -12865,12 +12046,13 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aBb" = (
@@ -12881,73 +12063,45 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
},
/area/security/brig)
-"aBh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aBi" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Brig - Hallway - Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
-/obj/machinery/door_timer{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = -32
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "red"
},
/area/security/brig)
-"aBj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aBl" = (
-/obj/machinery/door_timer{
- id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
+/obj/machinery/door_timer/cell_4{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "red"
- },
-/area/security/brig)
-"aBm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "red"
+ dir = 4;
+ icon_state = "redcorner"
},
/area/security/brig)
"aBn" = (
-/obj/machinery/door_timer{
- id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
+/obj/machinery/door_timer/cell_5{
+ pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
/area/security/brig)
"aBo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
@@ -12959,7 +12113,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
@@ -12970,34 +12123,29 @@
/turf/simulated/floor/plating,
/area/crew_quarters/sleep)
"aBs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/public/glass{
name = "Cryodorms"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/sleep)
"aBu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/security/brig)
"aBw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
@@ -13007,7 +12155,6 @@
/obj/machinery/door/airlock/public/glass{
name = "Recreation Area"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -13019,12 +12166,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
@@ -13046,14 +12191,6 @@
icon_state = "dark"
},
/area/security/brig)
-"aBD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aBE" = (
/obj/structure/chair{
dir = 4
@@ -13073,12 +12210,8 @@
name = "Dorm Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aBG" = (
@@ -13092,14 +12225,6 @@
icon_state = "dark"
},
/area/security/brig)
-"aBH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aBI" = (
/turf/simulated/wall,
/area/crew_quarters/locker/locker_toilet{
@@ -13122,45 +12247,29 @@
},
/area/security/podbay)
"aBL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d2 = 4;
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
"aBM" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aBN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/public/glass{
name = "Fore Primary Hallway"
},
@@ -13169,9 +12278,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
"aBO" = (
@@ -13185,8 +12291,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aBP" = (
@@ -13198,16 +12308,16 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aBQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
@@ -13216,17 +12326,19 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aBS" = (
/obj/structure/chair/wood{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aBT" = (
@@ -13244,10 +12356,10 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/plating,
@@ -13271,20 +12383,6 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aBW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"aBX" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13294,13 +12392,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aBY" = (
@@ -13331,13 +12429,16 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aCa" = (
@@ -13350,6 +12451,9 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -13361,9 +12465,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -13387,7 +12488,6 @@
/obj/machinery/door/airlock/public/glass{
name = "Recreation Area"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -13403,12 +12503,6 @@
"aCg" = (
/turf/simulated/wall/r_wall,
/area/engine/engineering)
-"aCh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
"aCi" = (
/obj/machinery/newscaster{
pixel_y = 32
@@ -13436,10 +12530,6 @@
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -13450,12 +12540,7 @@
pixel_y = -26;
req_access_txt = "1"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
@@ -13466,6 +12551,8 @@
icon_state = "1-2"
},
/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep)
"aCn" = (
@@ -13525,12 +12612,13 @@
/area/security/brig)
"aCw" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aCx" = (
@@ -13565,9 +12653,7 @@
"aCA" = (
/obj/structure/table,
/obj/item/folder/red,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/radio/intercom{
broadcasting = 1;
frequency = 1424;
@@ -13575,9 +12661,6 @@
name = "Interrogation Intercom";
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -13585,7 +12668,6 @@
"aCB" = (
/obj/structure/table/reinforced,
/obj/structure/closet/fireaxecabinet{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -13657,6 +12739,8 @@
name = "Cell 1";
req_access_txt = "2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -13691,6 +12775,8 @@
name = "Cell 2";
req_access_txt = "2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -13717,14 +12803,13 @@
name = "Cell 3";
req_access_txt = "2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
/area/security/brig)
"aCK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
id_tag = "innerbrig";
@@ -13732,9 +12817,10 @@
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 1;
- icon_state = "airlock_unres_helper"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -13751,15 +12837,13 @@
icon_state = "2-8"
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/security/glass{
id_tag = "innerbrig";
name = "Brig";
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 1;
- icon_state = "airlock_unres_helper"
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -13812,19 +12896,12 @@
req_access = null;
req_access_txt = "4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/detectives_office)
"aCS" = (
/turf/simulated/wall,
/area/security/detectives_office)
"aCT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13834,6 +12911,12 @@
icon_state = "4-8"
},
/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitered"
},
@@ -13842,9 +12925,6 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/alarm{
- pixel_y = 26
- },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -13909,18 +12989,17 @@
pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aCZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -13930,20 +13009,20 @@
/area/maintenance/starboard)
"aDb" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/highsecurity{
name = "Gravity Generator Foyer";
req_access_txt = "10"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"aDc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aDd" = (
@@ -13962,14 +13041,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"aDf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/engineering)
"aDg" = (
/obj/structure/table,
/obj/machinery/computer/crew,
@@ -13978,14 +13049,14 @@
},
/area/security/warden)
"aDi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/camera{
c_tag = "Engineering Supermatter Fore";
dir = 8;
network = list("SS13","engine")
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -14133,12 +13204,14 @@
name = "Warden"
},
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/security/warden)
"aDE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -14147,8 +13220,8 @@
},
/area/security/nuke_storage)
"aDF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -14157,6 +13230,12 @@
/area/security/nuke_storage)
"aDG" = (
/obj/machinery/nuclearbomb,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -14168,8 +13247,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -14177,9 +13256,8 @@
},
/area/security/nuke_storage)
"aDI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -14205,9 +13283,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -14226,8 +13301,8 @@
id = "Cell 1";
pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -14244,15 +13319,12 @@
},
/area/security/brig)
"aDO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -14262,32 +13334,31 @@
id = "Cell 2";
pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/brig)
"aDQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/flasher{
id = "Cell 3";
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/brig)
"aDR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
@@ -14309,7 +13380,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "red"
@@ -14325,18 +13395,6 @@
icon_state = "floorgrime"
},
/area/security/brig)
-"aDW" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/brig)
"aDX" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
@@ -14405,6 +13463,10 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -14425,10 +13487,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"aEc" = (
@@ -14443,11 +13504,11 @@
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"aEd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -14512,13 +13573,6 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEl" = (
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"aEm" = (
/obj/machinery/washing_machine,
/turf/simulated/floor/plasteel{
@@ -14528,8 +13582,7 @@
"aEn" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14562,18 +13615,15 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -14586,14 +13636,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -14609,10 +13658,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
@@ -14652,10 +13701,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
@@ -14669,9 +13718,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
@@ -14679,6 +13725,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aEw" = (
@@ -14691,9 +13740,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -14702,6 +13748,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aEx" = (
@@ -14720,8 +13769,7 @@
/obj/machinery/door/window/southright{
dir = 4;
name = "Engineering Deliveries";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -14761,11 +13809,12 @@
name = "\improper Mining Office"
})
"aEC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -14779,13 +13828,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aEE" = (
@@ -14846,22 +13895,6 @@
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"aEN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"aEO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
})
@@ -14876,9 +13909,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
@@ -14892,6 +13923,9 @@
pixel_y = 28;
req_access_txt = "48"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -14919,13 +13953,10 @@
},
/obj/machinery/door/window/westleft{
base_state = "right";
- dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
name = "Security Desk";
req_access_txt = "1"
},
@@ -14934,6 +13965,9 @@
},
/area/security/brig)
"aET" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -14941,10 +13975,8 @@
name = "\improper Warehouse"
})
"aEU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -14956,7 +13988,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -14982,13 +14013,6 @@
icon_state = "vault"
},
/area/security/nuke_storage)
-"aEY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bluegrid{
- icon_state = "gcircuit";
- luminosity = 2
- },
-/area/security/nuke_storage)
"aEZ" = (
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
@@ -15056,8 +14080,7 @@
},
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/flasher{
id = "PRelease";
@@ -15107,20 +14130,9 @@
icon_state = "red"
},
/area/security/brig)
-"aFn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/brig)
"aFo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -15132,38 +14144,24 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/brig)
"aFq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/security/brig)
-"aFr" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -15176,8 +14174,7 @@
},
/obj/machinery/camera{
c_tag = "Detective's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -15185,6 +14182,7 @@
/area/security/detectives_office)
"aFt" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -15195,10 +14193,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"aFv" = (
@@ -15219,7 +14213,6 @@
"aFx" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/secure_data,
@@ -15233,7 +14226,6 @@
/area/maintenance/fore)
"aFz" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
@@ -15250,8 +14242,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -15268,23 +14258,9 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aFD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
"aFE" = (
/obj/structure/closet/emcloset,
/obj/machinery/status_display{
- density = 0;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
@@ -15375,7 +14351,6 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 28
},
@@ -15386,15 +14361,6 @@
icon_state = "barber"
},
/area/crew_quarters/sleep)
-"aFL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"aFM" = (
/obj/structure/rack{
dir = 8;
@@ -15447,12 +14413,13 @@
req_access_txt = "48"
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -15471,27 +14438,27 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/flasher{
id = "Cell 4";
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/brig)
"aFX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/brig)
"aFY" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -15504,14 +14471,11 @@
/area/engine/engineering)
"aGb" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/obj/machinery/camera{
- c_tag = "Engineering - Fore";
- dir = 2;
- network = list("SS13")
+ c_tag = "Engineering - Fore"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -15519,7 +14483,6 @@
"aGc" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/northwest,
@@ -15551,8 +14514,7 @@
},
/obj/machinery/camera{
c_tag = "Mining Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/mineral/equipment_vendor,
/turf/simulated/floor/plasteel{
@@ -15564,10 +14526,8 @@
})
"aGi" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/item/storage/box/donkpockets,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -15575,15 +14535,16 @@
name = "\improper Warehouse"
})
"aGj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -15637,26 +14598,19 @@
/area/security/nuke_storage)
"aGo" = (
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "vault"
},
/area/security/nuke_storage)
"aGp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "vault"
},
@@ -15673,10 +14627,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "vault"
@@ -15686,8 +14636,8 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -15723,9 +14673,6 @@
/turf/simulated/floor/plating,
/area/construction)
"aGx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
id_tag = "outerbrig";
@@ -15733,9 +14680,10 @@
req_access_txt = "63"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 1;
- icon_state = "airlock_unres_helper"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -15761,7 +14709,6 @@
name = "Security Desk";
req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -15789,8 +14736,8 @@
/area/security/brig)
"aGC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aGD" = (
@@ -15799,16 +14746,19 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/security/detectives_office)
"aGE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/flasher{
id = "Cell 5";
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -15822,9 +14772,6 @@
},
/area/security/processing)
"aGG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"aGH" = (
@@ -15841,8 +14788,10 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -15859,11 +14808,8 @@
})
"aGL" = (
/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
+ name = "Unisex Showers"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -15921,13 +14867,10 @@
name = "Mime"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
@@ -15941,23 +14884,22 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aGU" = (
+/obj/machinery/door/airlock/tranquillite,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
-/obj/machinery/door/airlock/tranquillite,
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
"aGV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
"aGW" = (
@@ -15966,7 +14908,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"aGX" = (
@@ -15991,8 +14932,7 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/camera{
c_tag = "Mining Dock";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -16015,8 +14955,8 @@
name = "Storage Wing"
})
"aHc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -16120,6 +15060,9 @@
/obj/effect/landmark/start{
name = "Shaft Miner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
@@ -16128,7 +15071,6 @@
/obj/structure/closet/secure_closet/miner,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -16140,13 +15082,8 @@
})
"aHu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -16154,8 +15091,10 @@
name = "\improper Warehouse"
})
"aHv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -16184,6 +15123,9 @@
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -16191,9 +15133,6 @@
name = "\improper Warehouse"
})
"aHy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/light_construct/small{
dir = 4
},
@@ -16209,13 +15148,13 @@
locked = 1;
req_access_txt = "53"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -16233,8 +15172,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-20";
layer = 4.1;
- pixel_y = 3;
- tag = "icon-plant-20"
+ pixel_y = 3
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -16258,20 +15196,18 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/bluegrid{
icon_state = "gcircuit";
luminosity = 2
},
/area/security/nuke_storage)
"aHL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
@@ -16279,7 +15215,6 @@
/area/security/brig)
"aHM" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
@@ -16289,7 +15224,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
@@ -16299,15 +15233,15 @@
},
/area/security/brig)
"aHO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aHP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -16319,7 +15253,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -16348,18 +15281,15 @@
/obj/machinery/door_control{
id = "Secure Gate";
name = "Cell Window Control";
- normaldoorcontrol = 0;
pixel_x = 5;
pixel_y = 27;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/door_control{
id = "briglockdown";
name = "Brig Lockdown Control";
pixel_x = 5;
- pixel_y = 37;
- req_access_txt = "0"
+ pixel_y = 37
},
/obj/machinery/light/small{
dir = 1
@@ -16390,6 +15320,7 @@
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 3
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -16400,12 +15331,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/obj/machinery/flasher_button{
id = "holdingflash";
name = "holding cell flasher button";
@@ -16415,16 +15340,16 @@
},
/obj/machinery/camera{
c_tag = "Brig - Desk";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29;
pixel_y = -2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -16444,9 +15369,8 @@
},
/area/crew_quarters/sleep)
"aHW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -16456,14 +15380,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"aHY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -16525,8 +15449,8 @@
/turf/simulated/floor/plating,
/area/bridge)
"aIc" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
@@ -16547,7 +15471,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -16561,27 +15485,18 @@
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
/area/maintenance/fore)
-"aIh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
"aIi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIk" = (
@@ -16591,8 +15506,7 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -16604,6 +15518,7 @@
pixel_y = 8
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aIm" = (
@@ -16617,6 +15532,9 @@
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
"aIn" = (
@@ -16629,6 +15547,9 @@
pixel_y = 32
},
/obj/structure/closet/secure_closet/mime,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
"aIp" = (
@@ -16639,9 +15560,6 @@
/area/crew_quarters/sleep)
"aIq" = (
/obj/structure/statue/tranquillite/mime,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
"aIr" = (
@@ -16652,10 +15570,6 @@
/turf/simulated/wall,
/area/crew_quarters/sleep)
"aIs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/item/flag/mime,
/turf/simulated/floor/mineral/tranquillite,
/area/crew_quarters/sleep)
@@ -16667,21 +15581,19 @@
/area/crew_quarters/sleep)
"aIu" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIv" = (
@@ -16691,10 +15603,13 @@
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"aIw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"aIy" = (
@@ -16721,15 +15636,17 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIC" = (
@@ -16762,42 +15679,41 @@
},
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"aIE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aIG" = (
@@ -16836,21 +15752,14 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aII" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aIJ" = (
+/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/effect/decal/cleanable/cobweb2,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -16869,15 +15778,6 @@
name = "Shaft Miner"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock{
- name = "\improper Mining Office"
- })
-"aIP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
})
@@ -16887,10 +15787,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock{
@@ -16902,11 +15800,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"aIS" = (
@@ -16962,17 +15855,16 @@
name = "Storage Wing"
})
"aIY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/construction/Storage{
name = "Storage Wing"
@@ -16998,7 +15890,6 @@
"aJa" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel,
@@ -17015,10 +15906,21 @@
codes_txt = "patrol;next_patrol=1.5-Fore-Central";
location = "1-BrigCells"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJe" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJf" = (
@@ -17027,6 +15929,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJg" = (
@@ -17035,14 +15943,17 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJh" = (
@@ -17051,6 +15962,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJi" = (
@@ -17064,16 +15981,11 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/fore)
-"aJj" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -17087,7 +15999,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
@@ -17097,13 +16009,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJm" = (
@@ -17112,23 +16019,15 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=1-BrigCells";
location = "0-SecurityDesk"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/mob/living/simple_animal/bot/secbot/beepsky,
/turf/simulated/floor/plasteel,
@@ -17139,9 +16038,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aJp" = (
@@ -17163,9 +16059,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -17178,15 +16072,11 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -17205,16 +16095,12 @@
/area/security/detectives_office)
"aJt" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/machinery/light{
dir = 1;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/obj/machinery/meter,
/turf/simulated/floor/engine,
@@ -17233,10 +16119,9 @@
},
/obj/machinery/camera{
c_tag = "Restrooms";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -17274,7 +16159,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/warden)
"aJz" = (
@@ -17284,12 +16168,10 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -17303,11 +16185,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -17318,8 +16200,7 @@
"aJB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -17330,7 +16211,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -17350,10 +16231,10 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -17362,6 +16243,10 @@
/area/crew_quarters/sleep)
"aJD" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -17378,13 +16263,13 @@
"aJG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aJI" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -17392,9 +16277,7 @@
/area/engine/equipmentstorage)
"aJJ" = (
/obj/effect/spawner/window/reinforced/plasma,
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
/turf/simulated/floor/engine,
/area/engine/engineering)
"aJK" = (
@@ -17411,13 +16294,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"aJM" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/engine/equipmentstorage)
"aJN" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow,
@@ -17443,9 +16319,6 @@
icon_state = "1-4"
},
/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
"aJR" = (
@@ -17459,10 +16332,10 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -17475,17 +16348,13 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -17505,21 +16374,6 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
-"aJU" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"aJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/engine,
-/area/engine/engineering)
"aJW" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10;
@@ -17549,26 +16403,12 @@
"aJZ" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ req_access_txt = "10"
},
/turf/simulated/floor/engine,
/area/engine/engineering)
-"aKb" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
"aKc" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -17586,7 +16426,6 @@
pixel_x = -5
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock{
@@ -17598,13 +16437,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock{
@@ -17620,7 +16456,6 @@
name = "\improper Mining Office"
})
"aKg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -17631,26 +16466,26 @@
name = "Vault Storage"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "vault";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "vault"
},
/area/construction/Storage{
name = "Storage Wing"
})
"aKi" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aKj" = (
@@ -17726,24 +16561,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/hallway/primary/fore)
-"aKt" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -17754,18 +16571,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security-Storage Backroom";
req_access = null;
req_access_txt = "63"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -17776,17 +16587,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -17798,12 +16603,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -17822,16 +16621,13 @@
},
/area/hallway/primary/fore)
"aKy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -17839,9 +16635,6 @@
},
/area/hallway/primary/fore)
"aKz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -17851,7 +16644,6 @@
dir = 1;
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -17874,6 +16666,8 @@
name = "Cell 4";
req_access_txt = "2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -17896,18 +16690,14 @@
name = "Cell 5";
req_access_txt = "2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
},
/area/security/brig)
"aKC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -17921,9 +16711,7 @@
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Fore Primary Hallway Cells";
- dir = 2;
- network = list("SS13")
+ c_tag = "Fore Primary Hallway Cells"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -17931,30 +16719,11 @@
},
/area/hallway/primary/fore)
"aKE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/hallway/primary/fore)
-"aKF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -17966,21 +16735,37 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
-"aKI" = (
+"aKH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/security/brig)
+"aKI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
"aKK" = (
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
@@ -17989,7 +16774,6 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -18049,7 +16833,6 @@
"aKS" = (
/obj/machinery/light/small,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
@@ -18064,17 +16847,6 @@
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
-"aKU" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"aKV" = (
/obj/machinery/firealarm{
dir = 4;
@@ -18097,7 +16869,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start{
@@ -18143,7 +16914,6 @@
"aLc" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/newscaster{
@@ -18165,12 +16935,6 @@
c_tag = "Dormitories - Aft";
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -18178,23 +16942,12 @@
/area/crew_quarters/sleep)
"aLe" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/sleep)
"aLf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -18202,17 +16955,9 @@
/obj/machinery/light/small,
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
@@ -18220,19 +16965,22 @@
/obj/effect/landmark/start{
name = "Clown"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
"aLi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
@@ -18243,24 +16991,26 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/chair/office/dark,
/obj/effect/landmark/start{
name = "Clown"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aLk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aLl" = (
/obj/structure/closet/secure_closet/clown,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aLo" = (
@@ -18274,11 +17024,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting{
@@ -18381,6 +17129,12 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"aLx" = (
@@ -18470,8 +17224,6 @@
name = "Courtroom";
opacity = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -18485,15 +17237,15 @@
dir = 8;
name = "Mix Bypass"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"aLP" = (
@@ -18503,10 +17255,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -18525,6 +17275,7 @@
/area/engine/equipmentstorage)
"aLS" = (
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aLT" = (
@@ -18536,8 +17287,7 @@
/area/quartermaster/storage)
"aLU" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -18548,38 +17298,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
})
"aLW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "browncorner"
- },
-/area/construction/Storage{
- name = "Storage Wing"
- })
-"aLX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "browncorner"
@@ -18593,11 +17316,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "browncorner"
@@ -18611,27 +17331,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "browncorner"
- },
-/area/construction/Storage{
- name = "Storage Wing"
- })
-"aMa" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "browncorner"
@@ -18654,17 +17353,20 @@
"aMc" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"aMd" = (
/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -18672,13 +17374,6 @@
"aMe" = (
/obj/structure/table,
/obj/machinery/recharger,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -18695,7 +17390,9 @@
/turf/simulated/floor/plating,
/area/turret_protected/ai_upload)
"aMh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -18707,17 +17404,10 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
-"aMj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redcorner"
- },
-/area/hallway/primary/fore)
"aMk" = (
/turf/simulated/wall,
/area/crew_quarters/courtroom)
@@ -18812,7 +17502,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 8
},
@@ -18825,34 +17514,21 @@
icon_state = "neutralcorner"
},
/area/crew_quarters/sleep)
-"aMu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
"aMw" = (
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/sleep)
"aMx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/item/flag/clown,
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aMy" = (
/obj/structure/closet/wardrobe/pjs,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/sleep)
"aMz" = (
@@ -18892,10 +17568,6 @@
/area/crew_quarters/sleep)
"aMC" = (
/obj/structure/statue/bananium/clown,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/wood,
/area/crew_quarters/sleep)
"aMD" = (
@@ -18909,17 +17581,20 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fore)
-"aME" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"aME" = (
/obj/machinery/light/small{
dir = 1
},
@@ -18927,9 +17602,6 @@
pixel_y = 30
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
@@ -18948,9 +17620,6 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aMH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -18958,30 +17627,16 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
})
-"aMI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/engine,
-/area/engine/engineering)
"aMJ" = (
/obj/machinery/door/window{
dir = 1;
- name = "glass door";
- req_access_txt = "0"
+ name = "glass door"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -18990,7 +17645,6 @@
"aMK" = (
/obj/machinery/light/small,
/obj/machinery/power/apc{
- dir = 2;
name = "Restrooms APC";
pixel_y = -26
},
@@ -18998,7 +17652,7 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -19031,9 +17685,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19051,18 +17702,16 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aMS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aMT" = (
@@ -19071,16 +17720,16 @@
icon_state = "map-left-MS";
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -19088,9 +17737,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -19105,36 +17751,32 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aMX" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aMY" = (
@@ -19143,13 +17785,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/camera{
- c_tag = "Cargo Bay - Fore";
- dir = 2;
- network = list("SS13")
+ c_tag = "Cargo Bay - Fore"
},
/obj/structure/sign/double/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -19157,8 +17794,11 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -19168,24 +17808,21 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/southeastcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aNa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/decal/warning_stripes/yellow,
@@ -19199,9 +17836,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -19213,12 +17847,10 @@
},
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aNc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -19228,8 +17860,11 @@
dir = 4
},
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -19249,6 +17884,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -19267,6 +17908,12 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -19283,7 +17930,6 @@
},
/obj/machinery/requests_console{
department = "Mining";
- departmentType = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -19308,11 +17954,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -19328,28 +17974,26 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
})
"aNk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/construction/Storage{
@@ -19357,9 +18001,6 @@
})
"aNl" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -19370,9 +18011,11 @@
req_access = null;
req_access_txt = "63"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -19413,41 +18056,23 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/courtroom)
-"aNr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/hallway/primary/fore)
"aNs" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aNt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
@@ -19468,8 +18093,6 @@
/area/crew_quarters/courtroom)
"aNw" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
@@ -19499,12 +18122,12 @@
},
/obj/machinery/camera{
c_tag = "Storage Wing - Security Access Door";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -19535,9 +18158,6 @@
},
/area/crew_quarters/courtroom)
"aND" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -19546,32 +18166,11 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
-"aNE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/mining{
- name = "Cargo Bay";
- req_access_txt = "0";
- req_one_access_txt = "48;50"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/construction/Storage{
- name = "Storage Wing"
- })
"aNF" = (
/obj/structure/rack{
dir = 8;
@@ -19600,8 +18199,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21";
- layer = 4.1;
- tag = "icon-plant-21"
+ layer = 4.1
},
/turf/simulated/floor/wood,
/area/lawoffice)
@@ -19614,19 +18212,12 @@
/turf/simulated/floor/wood,
/area/lawoffice)
"aNJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Fore Primary Hallway APC";
pixel_y = -27
},
/obj/structure/cable/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -19644,17 +18235,10 @@
name = "\improper Restrooms"
})
"aNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -19669,29 +18253,6 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aNN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
-"aNO" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
-"aNP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"aNQ" = (
/turf/simulated/wall,
/area/hallway/secondary/construction{
@@ -19703,7 +18264,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
@@ -19713,14 +18273,12 @@
"aNS" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/field/generator{
- anchored = 0;
state = 2
},
/turf/simulated/floor/plating,
/area/storage/secure)
"aNT" = (
/obj/machinery/field/generator{
- anchored = 0;
state = 2
},
/turf/simulated/floor/plating,
@@ -19731,9 +18289,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Engineering - Secure Storage";
- dir = 2;
- network = list("SS13")
+ c_tag = "Engineering - Secure Storage"
},
/turf/simulated/floor/plating,
/area/storage/secure)
@@ -19744,18 +18300,20 @@
"aNX" = (
/obj/machinery/camera{
c_tag = "Cargo Bay - Storage Wing Entrance";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
})
"aNY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -19765,20 +18323,20 @@
dir = 4
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aOa" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
+ req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/engine,
/area/engine/engineering)
"aOb" = (
@@ -19800,9 +18358,6 @@
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
"aOf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -19813,9 +18368,8 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
@@ -19870,6 +18424,9 @@
pixel_y = -30
},
/obj/item/restraints/handcuffs,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -19877,7 +18434,6 @@
"aOk" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel,
@@ -19899,13 +18455,6 @@
},
/turf/simulated/floor/plating,
/area/quartermaster/storage)
-"aOs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
"aOu" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
@@ -19928,7 +18477,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -19939,50 +18487,31 @@
})
"aOx" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/construction/Storage{
name = "Storage Wing"
})
"aOy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12;63;48;50"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"aOz" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/simulated/floor/plating,
@@ -19998,16 +18527,6 @@
icon_state = "dark"
},
/area/crew_quarters/sleep)
-"aOC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/public/glass{
- name = "Primary Tool Storage"
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "brown"
- },
-/area/storage/primary)
"aOD" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -20030,16 +18549,6 @@
"aOG" = (
/turf/simulated/wall/r_wall,
/area/turret_protected/ai_upload)
-"aOH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "redcorner"
- },
-/area/hallway/primary/fore)
"aOK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
@@ -20059,12 +18568,6 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -20096,8 +18599,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/crew_quarters/courtroom)
"aOS" = (
@@ -20157,18 +18659,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/security/brig)
"aOZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -20179,8 +18677,7 @@
"aPa" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -20197,23 +18694,16 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/security/brig)
-"aPc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -20273,19 +18763,11 @@
/turf/simulated/floor/plating,
/area/storage/secure)
"aPm" = (
-/obj/machinery/door_timer{
- dir = 1;
- id = "Cell 4";
- name = "Cell 4";
- pixel_y = 32
- },
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Brig - Hallway - Entrance";
- dir = 2;
- network = list("SS13")
+ c_tag = "Brig - Hallway - Entrance"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -20306,8 +18788,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -20324,7 +18806,6 @@
"aPr" = (
/obj/structure/table,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -20334,8 +18815,7 @@
"aPs" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -20367,12 +18847,10 @@
cell_type = 25000;
dir = 1;
name = "Engineering Engine Super APC";
- pixel_x = 0;
pixel_y = 24;
shock_proof = 1
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -20402,7 +18880,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel,
@@ -20416,12 +18893,15 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/binary/valve/digital/open{
name = "Output Release"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"aPz" = (
@@ -20527,14 +19007,6 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aPJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
"aPK" = (
/obj/structure/table,
/obj/machinery/computer/guestpass,
@@ -20544,8 +19016,7 @@
"aPL" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -20560,12 +19031,10 @@
pixel_y = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -20593,20 +19062,9 @@
/area/quartermaster/storage)
"aPP" = (
/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/item/stack/ore/glass,
/obj/item/stack/ore/iron,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aPQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aPR" = (
@@ -20625,7 +19083,6 @@
"aPS" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/obj/structure/mirror{
@@ -20637,41 +19094,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aPT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"aPU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge Access";
- req_access_txt = "19"
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"aPV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -20687,12 +19110,12 @@
name = "Port Maintenance"
})
"aPW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/machinery/atm{
pixel_y = -32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/mrchangs)
"aPX" = (
@@ -20718,6 +19141,8 @@
charge = 100;
maxcharge = 15000
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -20757,9 +19182,7 @@
/area/storage/primary)
"aQd" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -20768,12 +19191,6 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aQg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload)
"aQh" = (
/obj/machinery/porta_turret,
/turf/simulated/floor/plasteel{
@@ -20807,16 +19224,13 @@
/obj/machinery/alarm{
pixel_y = 23
},
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"aQp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -20825,9 +19239,6 @@
},
/area/hallway/primary/fore)
"aQr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -20837,46 +19248,23 @@
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/courtroom)
"aQt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
"aQu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/wood,
/area/lawoffice)
"aQv" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -20889,39 +19277,27 @@
name = "\improper Restrooms"
})
"aQw" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/lawoffice)
"aQx" = (
/obj/machinery/photocopier,
/obj/machinery/camera{
c_tag = "Law Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aQy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
"aQz" = (
/obj/structure/closet/secure_closet/personal,
/obj/item/clothing/under/assistantformal,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQA" = (
@@ -20936,8 +19312,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQB" = (
@@ -20949,8 +19324,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQC" = (
@@ -20971,17 +19345,15 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aQG" = (
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -21010,8 +19382,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aQJ" = (
@@ -21020,7 +19391,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -21028,6 +19398,8 @@
/area/crew_quarters/locker)
"aQK" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -21036,7 +19408,6 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -21045,13 +19416,9 @@
"aQM" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/light_switch{
pixel_x = -26
},
@@ -21063,9 +19430,6 @@
name = "\improper Garden"
})
"aQN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -21074,9 +19438,7 @@
name = "\improper Garden"
})
"aQO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
@@ -21181,8 +19543,7 @@
/obj/machinery/door/airlock/engineering/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -21203,15 +19564,12 @@
/obj/machinery/door/airlock/engineering/glass{
heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aRe" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -21225,8 +19583,7 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/structure/cable{
d1 = 1;
@@ -21275,41 +19632,21 @@
/obj/machinery/portable_atmospherics/pump,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aRo" = (
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"aRp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"aRq" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
"aRs" = (
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 10
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 10
+ },
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aRt" = (
@@ -21317,9 +19654,7 @@
pixel_x = -28
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -21336,9 +19671,7 @@
pixel_x = 28
},
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower,
/turf/simulated/floor/plasteel{
@@ -21362,7 +19695,6 @@
/area/turret_protected/ai_upload)
"aRB" = (
/obj/machinery/power/apc{
- dir = 2;
name = "Storage Wing APC";
pixel_y = -27
},
@@ -21375,8 +19707,11 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -21386,9 +19721,7 @@
name = "Storage Wing"
})
"aRC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
@@ -21409,6 +19742,7 @@
dir = 4;
name = "Prosecution"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "red"
@@ -21429,14 +19763,12 @@
icon_state = "1-8"
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
/obj/machinery/camera{
c_tag = "Storage Wing";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light,
/obj/structure/cable/yellow{
@@ -21444,6 +19776,8 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -21464,6 +19798,7 @@
dir = 8;
name = "Defense"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "green"
@@ -21477,32 +19812,23 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/courtroom)
-"aRK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/lawoffice)
"aRL" = (
/obj/effect/landmark/start{
name = "Internal Affairs Agent"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/wood,
/area/lawoffice)
"aRM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/wood,
/area/lawoffice)
@@ -21519,12 +19845,8 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -21534,7 +19856,6 @@
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/wood,
@@ -21545,8 +19866,9 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/security/brig)
@@ -21554,11 +19876,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 8
},
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plasteel{
@@ -21583,7 +19902,6 @@
name = "Judge"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -21591,40 +19909,17 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Courtroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Courtroom"
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "blue"
},
/area/crew_quarters/courtroom)
-"aRT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
-"aRU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/locker)
"aRV" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -21646,13 +19941,12 @@
/turf/simulated/floor/wood,
/area/lawoffice)
"aRX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aRY" = (
@@ -21660,7 +19954,6 @@
codes_txt = "patrol;next_patrol=14.5-Recreation";
location = "14.3-Lockers-Dorms"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -21678,7 +19971,6 @@
name = "\improper Garden"
})
"aSa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -21691,6 +19983,7 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aSc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -21801,26 +20094,14 @@
/area/shuttle/pod_1)
"aSt" = (
/obj/item/storage/toolbox/mechanical,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/simulated/floor/plating,
/area/construction)
-"aSu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/construction)
"aSv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/construction)
"aSw" = (
@@ -21830,8 +20111,6 @@
"aSy" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/courtroom)
"aSz" = (
@@ -21883,14 +20162,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aSF" = (
@@ -21902,7 +20181,6 @@
pixel_y = -5
},
/obj/machinery/door_control{
- dir = 2;
id = "QMLoaddoor2";
layer = 4;
name = "Loading Doors";
@@ -21913,20 +20191,14 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"aSG" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
"aSH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/effect/landmark{
name = "JoinLateCryo"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -21956,7 +20228,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/plasteel{
@@ -21979,7 +20250,6 @@
},
/area/quartermaster/qm)
"aSM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -21998,36 +20268,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"aSO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"aSP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"aSR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
"aSS" = (
/obj/structure/table,
/obj/item/assembly/igniter{
@@ -22072,9 +20312,7 @@
dir = 8
},
/obj/machinery/door/window/westleft{
- base_state = "left";
dir = 2;
- icon_state = "left";
layer = 3.1;
name = "Cyborg Upload Console Window";
req_access_txt = "16"
@@ -22125,6 +20363,7 @@
dir = 4;
name = "Prosecution"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
@@ -22145,33 +20384,16 @@
/area/crew_quarters/courtroom)
"aTd" = (
/obj/item/radio/beacon,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/crew_quarters/courtroom)
-"aTe" = (
-/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
- },
-/obj/structure/curtain/open/shower,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/crew_quarters/locker/locker_toilet{
- name = "\improper Restrooms"
- })
"aTf" = (
/obj/structure/chair{
dir = 8;
name = "Defense"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "green"
@@ -22192,7 +20414,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = -25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/landmark/start{
@@ -22206,17 +20427,9 @@
})
"aTh" = (
/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
+ dir = 8
},
/obj/structure/curtain/open/shower,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -22224,32 +20437,18 @@
name = "\improper Restrooms"
})
"aTi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atm{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
-"aTj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/lawoffice)
"aTk" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/lawoffice)
"aTm" = (
@@ -22302,10 +20501,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aTt" = (
@@ -22317,10 +20512,6 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -22331,39 +20522,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"aTv" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"aTw" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aTx" = (
@@ -22381,10 +20539,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aTy" = (
@@ -22396,10 +20551,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aTz" = (
@@ -22411,10 +20564,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -22431,14 +20580,7 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ name = "Garden"
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/construction{
@@ -22453,12 +20595,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -22504,6 +20640,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -22525,8 +20662,7 @@
/obj/machinery/disposal,
/obj/machinery/camera{
c_tag = "Garden";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -22553,13 +20689,13 @@
/area/engine/engineering)
"aTK" = (
/obj/structure/window/plasmareinforced,
-/obj/machinery/atmospherics/pipe/manifold/visible/supply{
- dir = 8
- },
/obj/machinery/power/rad_collector{
anchored = 1
},
/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/manifold/visible/supply{
+ dir = 8
+ },
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aTL" = (
@@ -22628,12 +20764,11 @@
name = "Quartermaster";
req_access_txt = "41"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -22647,11 +20782,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22668,12 +20802,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
@@ -22688,6 +20817,9 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"aUa" = (
@@ -22720,12 +20852,10 @@
"aUd" = (
/obj/structure/window/reinforced,
/obj/effect/decal/warning_stripes/arrow{
- dir = 8;
- icon_state = "4"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 8;
- icon_state = "3"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -22739,12 +20869,9 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aUf" = (
/obj/item/reagent_containers/spray/plantbgone,
/obj/item/reagent_containers/glass/bottle/nutrient/ez,
@@ -22769,14 +20896,12 @@
"aUh" = (
/obj/machinery/camera{
c_tag = "Engineering - Central";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aUi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/command/glass{
name = "Bridge Access";
req_access_txt = "19"
@@ -22800,7 +20925,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/item/aiModule/quarantine,
+/obj/item/aiModule/crewsimov,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22811,7 +20936,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"aUl" = (
@@ -22820,6 +20944,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22839,6 +20966,12 @@
icon_state = "motion0";
uses = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22850,7 +20983,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/item/aiModule/freeform,
+/obj/item/aiModule/nanotrasen,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22873,23 +21006,27 @@
codes_txt = "patrol;next_patrol=0-SecurityDesk";
location = "16-Fore"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aUq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
@@ -22907,8 +21044,6 @@
name = "Courtroom";
req_access_txt = "42"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -22945,8 +21080,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/lawoffice)
"aUw" = (
@@ -22962,28 +21095,22 @@
},
/area/storage/primary)
"aUx" = (
-/obj/machinery/door_timer{
- dir = 1;
- id = "Cell 5";
- name = "Cell 5";
- pixel_y = 32
+/obj/machinery/door_timer/cell_1{
+ pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "red"
+ icon_state = "redcorner"
},
/area/security/brig)
"aUy" = (
/obj/structure/table,
/obj/item/storage/pill_bottle/dice,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"aUz" = (
-/obj/structure/chair/stool{
- pixel_y = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aUC" = (
@@ -22996,13 +21123,23 @@
pixel_x = 4;
pixel_y = -4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aUE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -23023,7 +21160,6 @@
})
"aUH" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -23040,23 +21176,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"aUJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "kitchenwindow";
- name = "kitchen shutters";
- opacity = 0
- },
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/kitchen)
"aUK" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -23074,8 +21193,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aUN" = (
@@ -23096,7 +21214,6 @@
id = "AI";
pixel_y = 24
},
-/obj/machinery/atmospherics/unary/vent_scrubber,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -23114,13 +21231,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -23183,12 +21300,11 @@
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -23222,12 +21338,11 @@
dir = 4
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -23263,7 +21378,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aVk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -23281,7 +21395,6 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/scrubber,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 26
},
@@ -23290,40 +21403,29 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"aVo" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"aVp" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 30
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -23335,22 +21437,17 @@
name = "Port Maintenance"
})
"aVr" = (
-/obj/machinery/disposal{
- pixel_y = 0
- },
+/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/camera{
- c_tag = "Locker Room Starboard";
- dir = 2;
- network = list("SS13")
+ c_tag = "Locker Room Starboard"
},
/obj/structure/sign/pods{
pixel_y = 30
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"aVs" = (
@@ -23393,13 +21490,11 @@
/obj/structure/table,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Cargo Bay - Starboard";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/paper_bin{
pixel_x = -1;
@@ -23409,24 +21504,11 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aVw" = (
-/obj/structure/table,
-/obj/item/aiModule/asimov,
-/obj/item/aiModule/freeformcore,
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
-/obj/item/aiModule/corp,
-/obj/item/aiModule/paladin,
-/obj/item/aiModule/robocop,
/obj/machinery/flasher{
id = "AI";
pixel_y = 24
},
+/obj/machinery/smartfridge/secure/circuits/aiupload/experimental,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -23434,7 +21516,6 @@
"aVx" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Upload APC";
pixel_y = -24
},
@@ -23447,9 +21528,6 @@
dir = 1;
network = list("SS13","RD","AIUpload")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"aVy" = (
@@ -23463,14 +21541,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -23487,43 +21559,28 @@
dir = 1;
network = list("SS13","RD","AIUpload")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai_upload)
"aVA" = (
-/obj/structure/table,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
- },
-/obj/structure/window/reinforced,
/obj/machinery/flasher{
id = "AI";
pixel_y = 24
},
-/obj/item/aiModule/antimov,
-/obj/item/aiModule/oxygen,
-/obj/item/aiModule/oneCrewMember,
-/obj/item/aiModule/purge,
+/obj/machinery/smartfridge/secure/circuits/aiupload/highrisk,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai_upload)
"aVB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/wood,
/area/lawoffice)
"aVD" = (
@@ -23540,6 +21597,14 @@
icon_state = "dark"
},
/area/crew_quarters/courtroom)
+"aVF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"aVG" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
@@ -23553,10 +21618,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -23574,9 +21637,6 @@
},
/area/crew_quarters/locker)
"aVJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -23587,71 +21647,51 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aVK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aVL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/camera{
- c_tag = "Crew Quarters Entrance";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ c_tag = "Crew Quarters Entrance"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aVO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aVP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -23660,9 +21700,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"aVQ" = (
@@ -23671,12 +21708,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -23716,26 +21747,23 @@
/obj/item/clothing/mask/balaclava,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aVY" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -23744,17 +21772,6 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aVZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
"aWa" = (
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -23797,7 +21814,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/cigbutt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -23823,10 +21839,7 @@
/turf/simulated/floor/engine,
/area/engine/engineering)
"aWh" = (
-/obj/machinery/camera/autoname{
- dir = 2;
- network = list("SS13")
- },
+/obj/machinery/camera/autoname,
/obj/machinery/hologram/holopad,
/obj/machinery/power/apc{
dir = 1;
@@ -23862,12 +21875,9 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aWk" = (
/obj/machinery/door_control{
id = "lawyer_blast";
@@ -23890,9 +21900,6 @@
/turf/simulated/floor/wood,
/area/lawoffice)
"aWm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -23903,9 +21910,6 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aWn" = (
@@ -23924,15 +21928,14 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aWo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/security/brig)
"aWp" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/obj/structure/closet/firecloset,
@@ -23943,13 +21946,13 @@
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"aWr" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = 32
},
@@ -23961,14 +21964,6 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aWs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"aWt" = (
/obj/structure/table,
/obj/item/folder/yellow,
@@ -23982,6 +21977,9 @@
departmentType = 2;
pixel_x = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
"aWu" = (
@@ -23993,17 +21991,14 @@
},
/obj/machinery/requests_console{
department = "Tool Storage";
- departmentType = 0;
pixel_x = 30
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Tool Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -24016,7 +22011,6 @@
/area/maintenance/fore)
"aWw" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -24113,18 +22107,6 @@
/obj/structure/shuttle/engine/propulsion/burst,
/turf/simulated/wall/mineral/titanium,
/area/shuttle/pod_1)
-"aWH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/construction)
-"aWI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/construction)
"aWK" = (
/obj/structure/rack{
dir = 1
@@ -24157,8 +22139,7 @@
pixel_x = -26
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aWO" = (
@@ -24172,18 +22153,11 @@
/obj/structure/chair/office/dark{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -24193,7 +22167,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -24212,7 +22185,6 @@
gpstag = "QM0"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/qm)
@@ -24221,15 +22193,11 @@
icon_state = "crateopen";
opened = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
name = "2maintenance loot spawner"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aWT" = (
@@ -24240,9 +22208,10 @@
/area/storage/primary)
"aWU" = (
/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j1"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"aWV" = (
@@ -24267,18 +22236,14 @@
name = "Engineering Power Monitoring Console"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Engineering - Power Monitoring";
- dir = 2;
- network = list("SS13")
+ c_tag = "Engineering - Power Monitoring"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aWY" = (
@@ -24287,8 +22252,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -24301,17 +22266,6 @@
icon_state = "dark"
},
/area/turret_protected/ai_upload)
-"aXa" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/fore)
"aXb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -24327,15 +22281,20 @@
codes_txt = "patrol;next_patrol=16-Fore";
location = "15-Court"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"aXg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -24343,16 +22302,7 @@
"aXi" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"aXj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
+/area/quartermaster/office)
"aXk" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel,
@@ -24365,7 +22315,6 @@
pixel_y = -2
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -24463,12 +22412,12 @@
/obj/machinery/power/terminal,
/obj/structure/cable,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aXy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -24479,49 +22428,43 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aXz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aXB" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/item/stamp/qm{
- pixel_y = 0
- },
+/obj/item/stamp/qm,
/obj/machinery/status_display{
- density = 0;
pixel_x = 32
},
/turf/simulated/floor/plasteel,
/area/quartermaster/qm)
-"aXC" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/security/brig)
"aXE" = (
/obj/structure/table,
/obj/item/aiModule/reset,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/ai_status_display{
pixel_x = -32
@@ -24538,6 +22481,12 @@
/obj/machinery/power/terminal,
/obj/structure/cable,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aXG" = (
@@ -24546,7 +22495,6 @@
dir = 4
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = 32
},
@@ -24554,7 +22502,7 @@
id = "AI";
pixel_y = -24
},
-/obj/item/aiModule/protectStation,
+/obj/item/aiModule/corp,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -24639,17 +22587,21 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aXR" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -24686,7 +22638,6 @@
/area/construction)
"aXX" = (
/obj/machinery/power/apc{
- dir = 2;
name = "Construction Area APC";
pixel_y = -24
},
@@ -24703,22 +22654,19 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/construction)
"aXZ" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-03";
- layer = 4.1;
- tag = "icon-plant-03"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24763,8 +22711,7 @@
opened = 1
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -24787,8 +22734,9 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aYm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -24805,12 +22753,9 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aYo" = (
/obj/machinery/conveyor_switch/oneway{
id = "QMLoad";
@@ -24864,6 +22809,8 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"aYt" = (
@@ -24876,7 +22823,6 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"aYv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -24887,7 +22833,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"aYw" = (
@@ -24908,7 +22853,6 @@
"aYy" = (
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_closed";
- locked = 0;
name = "AI Upload";
req_access_txt = "16"
},
@@ -24917,8 +22861,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -24934,6 +22878,8 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aYA" = (
@@ -24950,6 +22896,9 @@
pixel_x = 5;
pixel_y = -32
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -24987,14 +22936,9 @@
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"aYF" = (
-/obj/machinery/atmospherics/unary/vent_pump,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
"aYG" = (
/obj/structure/cable{
d1 = 2;
@@ -25007,71 +22951,33 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"aYH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"aYI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
"aYJ" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms";
location = "14.2-Central-CrewQuarters"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"aYK" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
-"aYL" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"aYM" = (
/obj/machinery/power/apc{
- dir = 2;
name = "Locker Room APC";
pixel_x = -1;
pixel_y = -26
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -25105,7 +23011,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -25127,32 +23032,27 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aYT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -25172,8 +23072,7 @@
},
/obj/machinery/power/smes/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aYV" = (
@@ -25186,8 +23085,7 @@
},
/obj/machinery/power/smes/engineering,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/engineering)
"aYW" = (
@@ -25197,13 +23095,12 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aYX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -25229,13 +23126,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aYZ" = (
@@ -25261,13 +23154,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"aZb" = (
@@ -25278,18 +23166,18 @@
},
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -25307,10 +23195,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -25373,6 +23262,7 @@
name = "Arrivals Expansion Area";
req_access_txt = "32"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -25398,7 +23288,6 @@
name = "Arrivals Expansion Area";
req_access_txt = "32"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/hallway/secondary/entry{
@@ -25410,6 +23299,8 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"aZt" = (
@@ -25417,13 +23308,11 @@
/area/quartermaster/storage)
"aZu" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Cargo Bay - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/conveyor/north{
id = "QMLoad"
@@ -25431,17 +23320,11 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aZw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aZx" = (
@@ -25460,12 +23343,9 @@
/obj/item/flag/cargo,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"aZA" = (
/obj/structure/table,
/obj/item/hatchet,
@@ -25501,14 +23381,12 @@
},
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
"aZD" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
@@ -25517,8 +23395,9 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
@@ -25526,7 +23405,6 @@
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
@@ -25540,20 +23418,16 @@
/obj/item/clothing/gloves/color/fyellow,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
"aZH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
@@ -25564,6 +23438,9 @@
pixel_x = -27
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aZJ" = (
@@ -25583,6 +23460,12 @@
req_access_txt = "32"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"aZN" = (
@@ -25596,22 +23479,13 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"aZO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25619,14 +23493,12 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
/obj/machinery/meter,
/turf/simulated/floor/engine,
/area/engine/engineering)
"aZP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Fore Primary Hallway"
@@ -25646,18 +23518,16 @@
/obj/machinery/door/airlock/public/glass{
name = "Fore Primary Hallway"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"aZR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Fore Primary Hallway"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/hallway/primary/fore)
@@ -25670,8 +23540,6 @@
/area/crew_quarters/courtroom)
"aZT" = (
/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 2;
name = "Courtroom APC";
pixel_x = 1;
pixel_y = -24
@@ -25692,31 +23560,16 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"aZV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -25741,7 +23594,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -25753,8 +23605,9 @@
dir = 4;
pixel_x = 24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -25764,49 +23617,42 @@
"baa" = (
/obj/structure/closet/wardrobe/black,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bab" = (
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bac" = (
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bad" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bae" = (
/obj/structure/closet/wardrobe/green,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"baf" = (
/obj/machinery/vending/clothing,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bag" = (
/obj/structure/closet/wardrobe/mixed,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bah" = (
@@ -25815,9 +23661,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bai" = (
@@ -25834,9 +23677,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
@@ -25849,9 +23689,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bam" = (
@@ -25873,8 +23710,7 @@
base_state = "right";
dir = 4;
icon_state = "right";
- name = "Crate Disposal Chute";
- req_access_txt = "0"
+ name = "Crate Disposal Chute"
},
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -25888,11 +23724,7 @@
"bao" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 5;
- initialize_directions = 12;
- tag = "icon-intact-g (NORTHEAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ initialize_directions = 12
},
/obj/structure/cable{
d1 = 1;
@@ -25907,9 +23739,6 @@
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/engine,
/area/engine/engineering)
@@ -25932,22 +23761,14 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
-"bar" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
"bas" = (
/obj/structure/closet/crate,
/obj/structure/disposalpipe/segment,
@@ -25977,13 +23798,17 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bay" = (
@@ -26025,9 +23850,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -26051,7 +23873,6 @@
dir = 8
},
/obj/machinery/status_display{
- density = 0;
pixel_x = 32
},
/obj/effect/decal/warning_stripes/east,
@@ -26072,12 +23893,10 @@
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "interior access button";
pixel_x = -25;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -26098,11 +23917,12 @@
"baK" = (
/obj/structure/chair,
/obj/machinery/camera{
- c_tag = "Arrivals - Fore Arm - Far";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals - Fore Arm - Far"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -26114,20 +23934,13 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Courtroom - Gallery";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/courtroom)
"baM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -26139,7 +23952,10 @@
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -26149,28 +23965,18 @@
name = "Arrivals"
})
"baN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"baO" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -26187,9 +23993,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering{
dir = 8
@@ -26198,14 +24004,17 @@
/obj/effect/landmark/start{
name = "Cargo Technician"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"baX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -26216,89 +24025,64 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"baZ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bba" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbb" = (
/obj/item/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
pixel_x = 27
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbe" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
/obj/machinery/camera{
c_tag = "Locker Room Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -26306,12 +24090,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Foyer";
- req_access_txt = "0";
req_one_access_txt = "32;19;70"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -26330,16 +24110,12 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bbg" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbh" = (
@@ -26350,17 +24126,24 @@
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbi" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
+"bbj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"bbk" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Network Access";
@@ -26371,25 +24154,19 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
-"bbl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload_foyer)
"bbm" = (
/obj/machinery/alarm{
pixel_y = 23
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -26428,9 +24205,7 @@
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Central Primary Hallway - Fore";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Primary Hallway - Fore"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -26438,7 +24213,6 @@
},
/area/hallway/primary/central)
"bbq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "redcorner"
@@ -26453,9 +24227,6 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bbs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "redcorner"
@@ -26463,7 +24234,6 @@
/area/hallway/primary/central)
"bbt" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -26477,7 +24247,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -26486,7 +24255,6 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -26497,8 +24265,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bby" = (
@@ -26518,8 +24285,6 @@
/obj/machinery/door/airlock/public/glass{
name = "Crew Quarters Access"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"bbA" = (
@@ -26529,8 +24294,7 @@
"bbB" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbC" = (
@@ -26540,29 +24304,28 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"bbD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"bbE" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -26570,15 +24333,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bbF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bbG" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -26602,8 +24356,7 @@
},
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
"bbL" = (
@@ -26636,48 +24389,24 @@
pixel_x = 4;
pixel_y = 4
},
-/obj/item/toy/figure/cargotech,
+/obj/item/toy/figure/crew/cargotech,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/item/storage/pill_bottle/dice,
/obj/structure/table/wood/poker,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bbR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bbS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light{
dir = 1
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -26686,23 +24415,18 @@
"bbT" = (
/obj/machinery/camera{
c_tag = "Security Post - Cargo";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bbV" = (
/obj/structure/table,
/obj/item/analyzer,
/obj/machinery/power/apc{
- dir = 2;
name = "Tool Storage APC";
pixel_y = -27
},
@@ -26717,6 +24441,7 @@
/obj/structure/chair{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -26734,9 +24459,6 @@
name = "\improper MiniSat Exterior"
})
"bbY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -26773,6 +24495,9 @@
dir = 1;
layer = 2.9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -26785,9 +24510,7 @@
"bcc" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bcd" = (
/obj/machinery/light_switch{
pixel_x = 28
@@ -26798,9 +24521,6 @@
},
/area/storage/primary)
"bce" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -26814,7 +24534,10 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -26826,10 +24549,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -26848,17 +24571,14 @@
},
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bcj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -26883,12 +24603,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellow"
},
/area/engine/engineering)
@@ -26914,7 +24633,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "AI Upload Access APC";
pixel_y = -27
},
@@ -26928,13 +24646,9 @@
network = list("AIUpload");
pixel_x = -29
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "vault";
- tag = "icon-vault (SOUTHEAST)"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"bcn" = (
@@ -26943,10 +24657,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -26972,16 +24684,9 @@
/obj/machinery/alarm{
pixel_y = 26
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "vault";
- tag = "icon-vault (SOUTHWEST)"
+ icon_state = "vault"
},
/area/turret_protected/ai_upload_foyer)
"bcq" = (
@@ -26991,7 +24696,6 @@
/area/engine/engineering)
"bcr" = (
/obj/machinery/requests_console{
- announcementConsole = 0;
department = "Engineering";
departmentType = 4;
name = "Engineering RC"
@@ -27001,71 +24705,27 @@
"bcs" = (
/obj/machinery/hologram/holopad,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"bct" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
"bcu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bcv" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"bcw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"bcx" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bcy" = (
@@ -27081,42 +24741,16 @@
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bcA" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bcB" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/quartermaster/office)
"bcD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -27126,20 +24760,16 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Break Room";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bcE" = (
/obj/machinery/power/apc{
dir = 8;
@@ -27160,9 +24790,6 @@
icon_state = "4-8"
},
/obj/item/trash/popcorn,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -27180,11 +24807,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/simulated/floor/plating,
@@ -27197,15 +24820,9 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -27221,40 +24838,24 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bcK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bcL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -27266,64 +24867,25 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bcN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bcO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bcP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bcQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -27352,34 +24914,7 @@
/obj/item/rcs,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"bcW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
"bcX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bcY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bcZ" = (
@@ -27388,35 +24923,15 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bda" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bdb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -27432,110 +24947,25 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bdd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bde" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bdf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bdg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bdh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bdi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"bdj" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bdk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -27552,32 +24982,6 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"bdn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop{
- loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
- name = "maint grille or trash spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"bdo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bdp" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -27594,18 +24998,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"bdr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -27658,13 +25056,11 @@
"bdu" = (
/obj/machinery/camera{
c_tag = "Mini Satellite AI Chamber North";
- dir = 2;
network = list("SS13","MiniSat")
},
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
@@ -27679,9 +25075,7 @@
dir = 8;
layer = 2.9
},
-/obj/item/circuitboard/cloning{
- pixel_x = 0
- },
+/obj/item/circuitboard/cloning,
/obj/item/circuitboard/med_data{
pixel_x = 3;
pixel_y = -3
@@ -27702,7 +25096,6 @@
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
@@ -27722,16 +25115,21 @@
/area/storage/tech)
"bdy" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
},
/area/engine/chiefs_office)
"bdz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -27743,9 +25141,10 @@
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Chief Engineer's Office";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chief Engineer's Office"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -27755,7 +25154,6 @@
"bdB" = (
/obj/structure/chair,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -27769,6 +25167,12 @@
name = "lightsout"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bdD" = (
@@ -27779,14 +25183,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/command{
name = "Chief Engineer's Office";
- req_access_txt = "56";
- req_one_access_txt = "0"
+ req_access_txt = "56"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/chiefs_office)
"bdE" = (
@@ -27795,7 +25198,6 @@
pixel_y = 25
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -27804,21 +25206,15 @@
},
/obj/machinery/computer/card/minor/ce,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
"bdF" = (
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/camera{
- c_tag = "Central Primary Hallway - Fore - AI Upload";
- dir = 2;
- network = list("SS13")
+ c_tag = "Central Primary Hallway - Fore - AI Upload"
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'.";
@@ -27826,23 +25222,16 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bdH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -27859,8 +25248,8 @@
network = list("SS13","MiniSat")
},
/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -27919,7 +25308,6 @@
})
"bdQ" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -27945,20 +25333,15 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bdT" = (
-/obj/machinery/status_display{
- density = 0
- },
+/obj/machinery/status_display,
/turf/simulated/wall,
/area/quartermaster/storage)
"bdU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -27966,15 +25349,9 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bdW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -27991,7 +25368,6 @@
"bdX" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -28001,18 +25377,6 @@
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"bdY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bdZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -28040,9 +25404,6 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -28075,24 +25436,14 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"beg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;63;48;50"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"beh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bei" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -28104,14 +25455,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
@@ -28125,6 +25476,12 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bek" = (
@@ -28133,6 +25490,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bel" = (
@@ -28146,6 +25509,12 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ben" = (
@@ -28155,6 +25524,12 @@
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"beo" = (
@@ -28163,7 +25538,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -28174,13 +25550,17 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"beq" = (
@@ -28195,6 +25575,8 @@
icon_state = "1-4"
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ber" = (
@@ -28207,6 +25589,12 @@
codes_txt = "patrol;next_patrol=2-Storage";
location = "1.5-Fore-Central"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bes" = (
@@ -28220,18 +25608,8 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bet" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"beu" = (
@@ -28245,6 +25623,12 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bev" = (
@@ -28257,6 +25641,10 @@
codes_txt = "patrol;next_patrol=15-Court";
location = "14.9-CrewQuarters-Central"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bex" = (
@@ -28271,25 +25659,23 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bey" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -28321,7 +25707,6 @@
/area/storage/tech)
"beD" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -28341,8 +25726,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"beG" = (
@@ -28351,15 +25735,14 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"beH" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -28396,7 +25779,6 @@
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/engine/chiefs_office)
@@ -28414,9 +25796,7 @@
/obj/item/folder/red,
/obj/item/folder/red,
/obj/item/folder/red,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/clothing/glasses/sunglasses/big,
/turf/simulated/floor/wood,
/area/lawoffice)
@@ -28446,20 +25826,10 @@
icon_state = "vault"
},
/area/engine/chiefs_office)
-"beO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"beP" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-05";
- layer = 4.1;
- tag = "icon-plant-05"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -28472,11 +25842,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/southwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -28487,8 +25855,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -28502,8 +25869,7 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"beT" = (
@@ -28520,21 +25886,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
-"beV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"beW" = (
/obj/structure/window/reinforced{
dir = 8
@@ -28579,6 +25938,9 @@
dir = 8;
network = list("SS13","MiniSat")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -28598,27 +25960,9 @@
},
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/engine/chiefs_office)
-"bfe" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
"bff" = (
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow{
@@ -28627,9 +25971,6 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bfg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -28637,9 +25978,6 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bfh" = (
@@ -28683,29 +26021,12 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"bfk" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bfl" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -28734,14 +26055,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bfn" = (
@@ -28753,7 +26068,6 @@
"bfo" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/structure/cable/yellow{
@@ -28769,18 +26083,13 @@
/area/quartermaster/storage)
"bfp" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bfq" = (
/obj/machinery/camera{
c_tag = "Cargo Bay - Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -28800,15 +26109,13 @@
},
/area/engine/engineering)
"bfs" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/northeast,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- tag = "icon-shower (WEST)"
- },
-/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bfu" = (
@@ -28817,11 +26124,9 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -28834,22 +26139,14 @@
/area/quartermaster/storage)
"bfw" = (
/turf/simulated/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bfx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bfy" = (
@@ -28863,29 +26160,11 @@
/area/engine/engineering)
"bfz" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
-"bfA" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bfC" = (
/obj/machinery/status_display{
dir = 4;
@@ -28893,14 +26172,12 @@
pixel_x = -32
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"bfD" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -28910,7 +26187,6 @@
/area/hallway/primary/port)
"bfE" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -28930,14 +26206,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bfG" = (
@@ -28950,8 +26220,7 @@
pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -28962,6 +26231,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bfJ" = (
@@ -28970,7 +26241,6 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -28979,7 +26249,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -28989,7 +26258,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -28999,7 +26267,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"bfO" = (
@@ -29011,12 +26278,10 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bfQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -29026,9 +26291,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -29038,13 +26301,14 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bfS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -29071,8 +26335,7 @@
"bfX" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Fore - Courtroom";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -29113,7 +26376,6 @@
})
"bgb" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -27;
pixel_y = -29
@@ -29124,15 +26386,10 @@
},
/area/hallway/primary/central)
"bgd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Fore - Starboard Corner";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -29180,12 +26437,10 @@
},
/obj/machinery/camera{
c_tag = "Arrivals - Fore Arm";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -29210,8 +26465,7 @@
/area/maintenance/starboard)
"bgk" = (
/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/vending/artvend,
/turf/simulated/floor/plasteel{
@@ -29219,24 +26473,6 @@
icon_state = "brown"
},
/area/storage/primary)
-"bgl" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
"bgm" = (
/obj/structure/rack{
dir = 8;
@@ -29261,7 +26497,6 @@
dir = 8
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -29334,11 +26569,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bgt" = (
@@ -29434,13 +26668,6 @@
pixel_x = 27
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bgA" = (
@@ -29473,29 +26700,12 @@
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"bgE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
"bgF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bgH" = (
@@ -29503,12 +26713,6 @@
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bgI" = (
@@ -29526,16 +26730,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/brig)
"bgK" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -29678,6 +26878,8 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"bgW" = (
@@ -29715,9 +26917,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bha" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -29727,12 +26927,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bhb" = (
@@ -29745,9 +26940,7 @@
"bhc" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhd" = (
/obj/structure/table,
/obj/item/flashlight{
@@ -29764,7 +26957,6 @@
/obj/item/flash,
/obj/item/flash,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 28
},
@@ -29778,16 +26970,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhf" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
@@ -29800,15 +26987,14 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/light_switch{
pixel_x = 26;
pixel_y = 26
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -29819,9 +27005,7 @@
dir = 1;
icon_state = "browncorner"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhh" = (
/obj/effect/landmark/start{
name = "Cargo Technician"
@@ -29833,22 +27017,17 @@
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhi" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westleft{
- dir = 8;
name = "Cargo Desk";
req_access_txt = "50"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhj" = (
/obj/machinery/vending/coffee,
/obj/effect/decal/warning_stripes/yellow,
@@ -29861,7 +27040,6 @@
/area/hallway/primary/port)
"bhm" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "lightsout"
},
@@ -29876,8 +27054,7 @@
},
/obj/machinery/camera{
c_tag = "Cargo - Foyer";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -29893,7 +27070,6 @@
pixel_y = 32
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -29904,7 +27080,6 @@
"bhp" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -29917,43 +27092,32 @@
name = "Custodial Closet";
req_access_txt = "26"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/janitor)
"bht" = (
/turf/simulated/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bhu" = (
/obj/machinery/door/airlock{
- name = "Central Emergency Storage";
- req_access_txt = "0"
+ name = "Central Emergency Storage"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bhv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/atmospherics/pipe/simple/insulated{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -29964,25 +27128,14 @@
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
-"bhz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bhA" = (
/obj/structure/lattice,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
"bhB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/storage/tools)
@@ -30005,12 +27158,10 @@
"bhE" = (
/obj/machinery/camera{
c_tag = "Auxiliary Tool Storage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light/small{
@@ -30028,20 +27179,15 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bhG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bhH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"bhI" = (
@@ -30063,15 +27209,13 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhJ" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhK" = (
@@ -30084,49 +27228,17 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/storage/tech)
-"bhN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
- },
-/area/storage/tech)
-"bhP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhQ" = (
@@ -30138,8 +27250,7 @@
/obj/item/multitool,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bhR" = (
@@ -30155,9 +27266,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -30167,9 +27275,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -30179,9 +27284,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -30209,21 +27311,14 @@
})
"bhX" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bhY" = (
/obj/machinery/suit_storage_unit/atmos,
/turf/simulated/floor/plasteel{
@@ -30247,8 +27342,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bib" = (
@@ -30260,9 +27354,7 @@
/obj/item/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bic" = (
/obj/structure/window/reinforced{
dir = 8
@@ -30305,39 +27397,26 @@
},
/area/storage/tech)
"bif" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
"big" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bih" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
-"bii" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -30374,7 +27453,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bil" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"bim" = (
@@ -30448,7 +27529,6 @@
})
"bix" = (
/obj/item/radio/intercom{
- broadcasting = 0;
name = "Station Intercom (General)";
pixel_y = 20
},
@@ -30471,9 +27551,7 @@
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Customs Checkpoint";
- dir = 2;
- network = list("SS13")
+ c_tag = "Customs Checkpoint"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -30490,7 +27568,6 @@
/area/atmos)
"biA" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 28
},
@@ -30500,10 +27577,7 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"biB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -30527,9 +27601,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biE" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -30542,9 +27614,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biF" = (
/obj/machinery/conveyor{
dir = 4;
@@ -30552,34 +27622,25 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biG" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
},
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biH" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
},
-/obj/structure/plasticflaps{
- opacity = 0
- },
+/obj/structure/plasticflaps,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biI" = (
/obj/structure/rack,
/obj/machinery/power/apc{
- dir = 2;
name = "Cargo Bay APC";
pixel_x = 1;
pixel_y = -24
@@ -30617,35 +27678,27 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biN" = (
/obj/machinery/computer/supplycomp,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"biO" = (
/obj/effect/landmark{
name = "JoinLateCryo"
@@ -30664,26 +27717,13 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Cargo Bay";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"biR" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
+/area/quartermaster/office)
"biS" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"biT" = (
@@ -30696,7 +27736,6 @@
},
/area/hallway/primary/port)
"biU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30705,11 +27744,10 @@
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"biV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "browncorner"
@@ -30723,9 +27761,10 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
sortType = 22
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"biX" = (
@@ -30738,7 +27777,6 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -30753,6 +27791,8 @@
},
/area/janitor)
"biZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -30777,9 +27817,7 @@
"bjc" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bjd" = (
/obj/structure/rack,
/obj/item/stack/packageWrap{
@@ -30813,9 +27851,7 @@
/area/quartermaster/storage)
"bje" = (
/turf/simulated/wall/r_wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bjf" = (
/obj/item/stamp{
pixel_x = -3;
@@ -30841,12 +27877,9 @@
dir = 9;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bjg" = (
/obj/machinery/status_display{
- density = 0;
pixel_y = 32
},
/obj/structure/table,
@@ -30873,6 +27906,7 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -30898,7 +27932,6 @@
name = "\improper Captain's Quarters"
})
"bjl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
@@ -30907,10 +27940,8 @@
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Fore - Port Corner";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -30931,18 +27962,9 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bjo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
+/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bjp" = (
/obj/structure/table,
@@ -30965,7 +27987,6 @@
},
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellow"
},
/area/storage/tools)
@@ -30973,7 +27994,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellow"
},
/area/storage/tools)
@@ -30983,7 +28003,6 @@
/obj/item/airlock_electronics,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellow"
},
/area/storage/tools)
@@ -31044,6 +28063,9 @@
dir = 1;
pixel_y = -24
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -31055,6 +28077,9 @@
/obj/machinery/camera/autoname{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -31068,7 +28093,6 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -31078,22 +28102,20 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"bjC" = (
/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 0
- },
+/obj/machinery/cell_charger,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/stock_parts/cell/high{
@@ -31115,7 +28137,6 @@
/area/hallway/primary/central)
"bjE" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/turf/simulated/floor/plating,
@@ -31125,7 +28146,6 @@
"bjF" = (
/obj/structure/closet/toolcloset,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 28
},
@@ -31141,11 +28161,9 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/computer/security/telescreen{
desc = "A telescreen that connects to the engine's camera network.";
dir = 8;
@@ -31154,6 +28172,7 @@
network = list("engine");
pixel_x = 30
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -31168,9 +28187,7 @@
},
/area/engine/chiefs_office)
"bjI" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
- },
+/obj/structure/closet/secure_closet/engineering_chief,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -31178,7 +28195,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -31207,7 +28223,6 @@
"bjL" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -31216,6 +28231,12 @@
"bjM" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/engine/break_room)
"bjN" = (
@@ -31229,6 +28250,9 @@
name = "Customs"
})
"bjQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -31247,19 +28271,20 @@
/turf/simulated/floor/plating,
/area/turret_protected/ai)
"bjS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "vault"
},
/area/turret_protected/ai)
"bjU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31310,10 +28335,10 @@
},
/area/turret_protected/ai)
"bjY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"bka" = (
@@ -31367,9 +28392,7 @@
/area/shuttle/arrival/station)
"bkh" = (
/obj/machinery/camera{
- c_tag = "Arrivals Shuttle";
- dir = 2;
- network = list("SS13")
+ c_tag = "Arrivals Shuttle"
},
/obj/machinery/light{
dir = 1;
@@ -31417,6 +28440,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/security/checkpoint2{
name = "Customs"
@@ -31432,7 +28458,7 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -31446,11 +28472,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/checkpoint2{
@@ -31467,16 +28490,11 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/security/checkpoint2{
@@ -31488,6 +28506,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -31536,17 +28557,14 @@
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkv" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/camera{
c_tag = "Engineering - Entrance";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -31565,29 +28583,18 @@
/area/engine/engineering)
"bkx" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/light_switch{
pixel_x = -25
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bky" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -31595,28 +28602,21 @@
"bkz" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/light{
dir = 8
},
/obj/machinery/camera{
c_tag = "Cargo - Office";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -31624,51 +28624,36 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkB" = (
/mob/living/simple_animal/pet/sloth/paperwork,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkC" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkD" = (
/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkE" = (
/obj/structure/plasticflaps{
opacity = 1
},
/obj/machinery/conveyor{
backwards = 1;
- dir = 2;
forwards = 2;
id = "packageSort2"
},
/obj/effect/decal/warning_stripes/yellow/partial,
/obj/effect/decal/warning_stripes/arrow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bkF" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
+/area/quartermaster/office)
"bkG" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31683,8 +28668,6 @@
},
/area/hallway/primary/port)
"bkI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "browncorner"
@@ -31692,46 +28675,31 @@
/area/hallway/primary/central)
"bkK" = (
/obj/machinery/status_display{
- density = 0;
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bkL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plating,
/area/janitor)
"bkM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/janitor)
"bkN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -31741,9 +28709,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -31761,12 +28726,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/janitor)
"bkP" = (
@@ -31778,16 +28737,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bkQ" = (
/obj/item/flashlight{
pixel_x = 1;
@@ -31797,9 +28748,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -31810,13 +28758,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bkS" = (
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -31836,17 +28779,13 @@
location = "13.2-Tcommstore"
},
/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
-"bkV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop)
"bkW" = (
/turf/simulated/wall/r_wall,
/area/bridge)
@@ -31866,7 +28805,6 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/binary/valve{
- dir = 2;
name = "output gas to space"
},
/turf/simulated/floor/plasteel{
@@ -31887,9 +28825,7 @@
name = "Captain"
},
/obj/structure/chair/comfy/brown{
- dir = 8;
- icon_state = "comfychair";
- tag = "icon-comfychair (WEST)"
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -31902,6 +28838,7 @@
})
"blc" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -31920,8 +28857,7 @@
},
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
@@ -31930,7 +28866,6 @@
"blf" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -31939,10 +28874,6 @@
},
/area/hallway/primary/central)
"blg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellowcorner"
@@ -31950,9 +28881,6 @@
/area/hallway/primary/central)
"blh" = (
/obj/structure/closet/wardrobe/pjs,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -31970,13 +28898,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -31989,8 +28910,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/starboard)
"blm" = (
@@ -32001,8 +28921,7 @@
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/starboard)
"bln" = (
@@ -32014,7 +28933,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"blo" = (
@@ -32024,7 +28942,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
- req_access_txt = "0";
req_one_access_txt = "23;30"
},
/obj/structure/cable/yellow{
@@ -32032,12 +28949,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/storage/tech)
"blr" = (
@@ -32060,13 +28976,13 @@
/obj/effect/spawner/window/reinforced,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bly" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32093,7 +29009,6 @@
"blD" = (
/obj/machinery/camera/motion{
c_tag = "Mini Satellite AI Chamber";
- dir = 2;
network = list("SS13","MiniSat");
start_active = 1
},
@@ -32148,18 +29063,14 @@
},
/area/turret_protected/ai)
"blI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -32184,6 +29095,9 @@
/obj/machinery/light_switch{
pixel_x = -23
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "vault"
@@ -32249,6 +29163,9 @@
dir = 8;
network = list("SS13","MiniSat")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -32287,9 +29204,7 @@
/area/shuttle/arrival/station)
"blU" = (
/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater";
- tag = "icon-heater (EAST)"
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
@@ -32299,15 +29214,13 @@
"blV" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
"blW" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -32324,7 +29237,6 @@
"blX" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/closet,
@@ -32350,15 +29262,14 @@
/obj/machinery/door/airlock/security{
name = "Interrogation";
req_access = null;
- req_access_txt = "0";
req_one_access_txt = "1;4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -32372,8 +29283,6 @@
pixel_y = -8;
req_access_txt = "1"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -32390,6 +29299,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -32417,9 +29328,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bme" = (
/obj/machinery/space_heater,
/obj/structure/disposalpipe/wrapsortjunction{
@@ -32432,13 +29341,10 @@
"bmf" = (
/obj/structure/disposalpipe/junction{
dir = 4;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/turf/simulated/wall,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmg" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -32454,9 +29360,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -32482,40 +29386,35 @@
},
/area/hallway/primary/port)
"bmj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
+"bmk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
"bml" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmm" = (
/obj/machinery/firealarm{
dir = 8;
@@ -32525,9 +29424,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -32540,13 +29436,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmo" = (
/obj/structure/table/wood,
/obj/machinery/newscaster/security_unit{
@@ -32561,105 +29455,90 @@
name = "\improper Captain's Quarters"
})
"bmp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmq" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bms" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start{
name = "Cargo Technician"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmt" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bmu" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -32675,16 +29554,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32695,71 +29574,48 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
-"bmx" = (
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bmy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j1"
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bmz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/hallway/primary/port)
"bmA" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/port)
"bmB" = (
/obj/machinery/door/airlock{
- name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ name = "Starboard Emergency Storage"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bmC" = (
@@ -32768,6 +29624,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/mob/living/simple_animal/lizard{
name = "Wags-His-Tail";
real_name = "Wags-His-Tail"
@@ -32777,7 +29636,6 @@
},
/area/janitor)
"bmD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -32786,6 +29644,9 @@
/obj/effect/landmark/start{
name = "Janitor"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -32803,8 +29664,8 @@
/obj/machinery/newscaster{
pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -32813,11 +29674,8 @@
/area/engine/chiefs_office)
"bmF" = (
/obj/item/tank/internals/air,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bmG" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -32830,6 +29688,9 @@
/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -32849,6 +29710,9 @@
/obj/item/multitool{
pixel_x = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "browncorner"
@@ -32864,6 +29728,8 @@
/obj/item/multitool{
pixel_x = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -32875,7 +29741,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
@@ -32898,18 +29763,14 @@
/area/engine/chiefs_office)
"bmO" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bmP" = (
/obj/machinery/light_switch{
pixel_x = 27
@@ -32950,7 +29811,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -32972,7 +29832,6 @@
},
/obj/machinery/camera{
c_tag = "Mini Satellite AI Chamber South";
- dir = 2;
network = list("SS13","MiniSat")
},
/turf/simulated/floor/bluegrid,
@@ -33006,35 +29865,6 @@
},
/obj/item/clothing/mask/cigarette/cigar,
/turf/simulated/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bmW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bmX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain{
- name = "\improper Captain's Quarters"
- })
-"bmY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
@@ -33070,71 +29900,38 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bnc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "yellowcorner"
},
/area/hallway/primary/central)
"bnd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Starboard Primary Hallway"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bne" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bnf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/starboard)
-"bng" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -33144,28 +29941,15 @@
/obj/machinery/firealarm{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bni" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway - Tech Storage";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ c_tag = "Starboard Primary Hallway - Tech Storage"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -33173,30 +29957,18 @@
},
/area/hallway/primary/starboard)
"bnj" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bnk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -33207,73 +29979,37 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bnm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bnn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/alarm{
pixel_y = 23
},
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/starboard)
-"bno" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
"bnp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/sign/securearea{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -33284,43 +30020,25 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bnr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
},
/area/hallway/primary/starboard)
"bns" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=14-Starboard-Central";
location = "13.3-Engineering-Central"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -33337,12 +30055,9 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Brig - Hallway - Starboard";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/security/brig)
@@ -33373,22 +30088,13 @@
pixel_y = 32
},
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
},
/area/engine/break_room)
"bnx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -33404,14 +30110,11 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -33429,7 +30132,6 @@
/area/engine/break_room)
"bnA" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -33441,13 +30143,17 @@
name = "\improper Captain's Quarters"
})
"bnC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bnE" = (
@@ -33465,9 +30171,7 @@
})
"bnF" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -33504,6 +30208,9 @@
/obj/machinery/light_switch{
pixel_y = -28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -33519,7 +30226,7 @@
})
"bnL" = (
/obj/structure/table,
-/obj/item/toy/figure/clown,
+/obj/item/toy/figure/crew/clown,
/obj/item/reagent_containers/food/snacks/baguette,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -33531,7 +30238,6 @@
dir = 1
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -33703,7 +30409,6 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;48;50;1"
},
/turf/simulated/floor/plating,
@@ -33750,35 +30455,14 @@
},
/area/turret_protected/ai)
"boh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"boi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"boj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bok" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bol" = (
/obj/structure/table,
/obj/item/destTagger{
@@ -33789,13 +30473,14 @@
pixel_x = 27
},
/obj/item/rcs,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bom" = (
/obj/structure/rack{
dir = 8;
@@ -33819,9 +30504,7 @@
dir = 8
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"boo" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -33837,19 +30520,8 @@
icon_state = "dark"
},
/area/bridge)
-"boq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
"bos" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -33892,7 +30564,6 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- aidisabled = 0;
cell_type = 5000;
dir = 1;
name = "AI Core APC";
@@ -33911,17 +30582,12 @@
/area/janitor)
"boy" = (
/obj/item/storage/box/lights/mixed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"boz" = (
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"boB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -33937,6 +30603,7 @@
/obj/structure/chair/office/dark{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -33971,6 +30638,7 @@
/obj/structure/chair/office/dark{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -33994,12 +30662,13 @@
name = "\improper Captain's Quarters"
})
"boJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"boK" = (
@@ -34055,12 +30724,14 @@
/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/camera{
c_tag = "Custodial Closet";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -34080,6 +30751,12 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"boP" = (
@@ -34088,16 +30765,17 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -34114,8 +30792,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34128,8 +30811,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34147,28 +30835,13 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/starboard)
-"boU" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34186,8 +30859,13 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34201,8 +30879,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34213,12 +30896,15 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34232,24 +30918,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bpa" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34263,8 +30938,13 @@
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34277,33 +30957,18 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bpe" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34317,8 +30982,13 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -34327,14 +30997,15 @@
dir = 4;
pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
},
/area/hallway/primary/starboard)
"bph" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
@@ -34377,33 +31048,36 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bpm" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpn" = (
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bpo" = (
/obj/structure/chair/stool,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpp" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpq" = (
/obj/structure/table/reinforced,
/obj/item/phone{
@@ -34431,23 +31105,18 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/ai)
-"bpu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
"bpw" = (
/obj/machinery/light,
/obj/structure/chair/comfy/shuttle{
@@ -34468,14 +31137,11 @@
pixel_y = 12
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpz" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -34497,16 +31163,6 @@
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"bpB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
"bpC" = (
/turf/simulated/floor/plasteel{
dir = 9;
@@ -34515,62 +31171,46 @@
/area/hallway/primary/port)
"bpD" = (
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
- },
-/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bpE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/decal/warning_stripes/arrow{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"bpE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Mailroom";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bpF" = (
-/obj/machinery/status_display{
- density = 0;
- pixel_y = 32
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"bpF" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bpG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/quartermaster/office)
+"bpG" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
@@ -34583,12 +31223,6 @@
pixel_y = 32
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -34598,8 +31232,10 @@
/obj/machinery/atm{
pixel_x = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -34618,9 +31254,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpK" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -34629,65 +31263,37 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpL" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start{
name = "Cargo Technician"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpN" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
/obj/machinery/camera{
c_tag = "Cargo - Mailroom";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpO" = (
/obj/structure/table,
/obj/item/stack/wrapping_paper,
@@ -34731,12 +31337,9 @@
},
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpP" = (
/obj/item/storage/box,
/obj/structure/table,
@@ -34751,13 +31354,10 @@
dir = 6;
icon_state = "arrival"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpQ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/obj/item/reagent_containers/glass/bucket,
@@ -34774,45 +31374,33 @@
"bpR" = (
/obj/machinery/photocopier,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpS" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bpU" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 4;
name = "Central Maintenance APC";
pixel_x = 26
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bpV" = (
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
@@ -34831,23 +31419,17 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "browncorner"
},
/area/hallway/primary/port)
"bpY" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -34855,9 +31437,7 @@
pixel_y = 4
},
/obj/machinery/camera{
- c_tag = "Bridge - Central";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bridge - Central"
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
@@ -34868,7 +31448,6 @@
/obj/structure/table,
/obj/item/toner,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 30
},
@@ -34877,19 +31456,9 @@
icon_state = "brown"
},
/area/hallway/primary/port)
-"bqa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bqb" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -34912,9 +31481,7 @@
"bqe" = (
/obj/item/extinguisher,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bqf" = (
/obj/machinery/computer/station_alert,
/turf/simulated/floor/plasteel{
@@ -34947,6 +31514,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -34985,18 +31558,12 @@
pixel_x = -1
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/westright{
dir = 4
},
/obj/item/soap/deluxe,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -35010,9 +31577,6 @@
/obj/structure/sink{
pixel_y = 17
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -35023,19 +31587,13 @@
/obj/structure/toilet{
pixel_y = 13
},
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1"
- },
+/obj/machinery/light,
/obj/effect/landmark/start{
name = "Captain"
},
/obj/machinery/light_switch{
pixel_y = -25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -35046,9 +31604,6 @@
/obj/machinery/door/airlock/silver{
name = "Bathroom"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -35057,10 +31612,8 @@
})
"bqq" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -35093,15 +31646,12 @@
location = "12-Central-Starboard"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bqv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/central)
@@ -35127,8 +31677,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
@@ -35155,9 +31703,6 @@
},
/area/hallway/primary/starboard)
"bqB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/power/apc{
dir = 1;
name = "Starboard Hallway APC";
@@ -35167,9 +31712,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
@@ -35196,41 +31738,18 @@
},
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
},
/area/hallway/primary/starboard)
-"bqG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
-"bqI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
- },
-/area/hallway/primary/starboard)
"bqJ" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway - Engineering";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -35254,17 +31773,10 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
-"bqM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "cautioncorner"
+ icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
"bqN" = (
@@ -35281,13 +31793,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"bqP" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
"bqQ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -35322,11 +31827,8 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bqU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -35336,9 +31838,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -35351,12 +31850,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Office";
- req_access_txt = "0";
req_one_access_txt = "48;50"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -35364,12 +31859,13 @@
},
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bqX" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue{
@@ -35377,9 +31873,7 @@
},
/obj/item/pen/multi,
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -35387,20 +31881,19 @@
/area/turret_protected/ai)
"bqY" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/turf/space,
/area/space/nearstation)
"bqZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -35411,9 +31904,7 @@
},
/obj/item/pen/multi,
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -35431,12 +31922,6 @@
pixel_x = -4
},
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -35452,8 +31937,7 @@
})
"brd" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced,
/turf/space,
@@ -35485,6 +31969,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -35496,18 +31981,6 @@
/area/turret_protected/aisat_interior{
name = "\improper MiniSat Central Foyer"
})
-"brj" = (
-/obj/machinery/atmospherics/unary/outlet_injector{
- dir = 2;
- frequency = 1443;
- icon_state = "on";
- id = "air_in";
- on = 1
- },
-/turf/simulated/floor/plating/airless,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
"brk" = (
/turf/simulated/wall/r_wall,
/area/turret_protected/tcomeast{
@@ -35516,8 +31989,6 @@
"brl" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/checkpoint2{
name = "Customs"
@@ -35533,15 +32004,6 @@
icon_state = "dark"
},
/area/turret_protected/ai)
-"brn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/ai)
"brp" = (
/obj/structure/closet/emcloset,
/obj/machinery/light,
@@ -35582,8 +32044,7 @@
"bru" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/arrival/station)
@@ -35598,6 +32059,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -35608,6 +32075,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -35622,6 +32095,12 @@
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bry" = (
@@ -35630,6 +32109,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
@@ -35641,6 +32126,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -35660,6 +32151,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -35670,10 +32167,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -35684,6 +32179,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
@@ -35700,6 +32201,12 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
@@ -35712,14 +32219,18 @@
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"brF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -35737,9 +32248,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"brH" = (
/obj/machinery/door/window/eastleft{
base_state = "right";
@@ -35749,12 +32258,10 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"brI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -35766,26 +32273,20 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"brK" = (
/obj/machinery/conveyor_switch/oneway{
id = "packageExternal";
pixel_y = 18
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"brL" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -35795,14 +32296,12 @@
/area/hallway/primary/port)
"brM" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -35826,11 +32325,9 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -35848,12 +32345,6 @@
pixel_x = -23
},
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -35879,25 +32370,19 @@
"brS" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"brT" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"brU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -35929,22 +32414,17 @@
},
/area/hallway/primary/port)
"brY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"brZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -36032,40 +32512,20 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
-"bsg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bsh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -36083,9 +32543,9 @@
req_access = null;
req_access_txt = "20"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -36108,31 +32568,21 @@
dir = 8;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"bsl" = (
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "yellowcorner"
},
/area/hallway/primary/central)
"bsm" = (
/turf/simulated/wall,
/area/civilian/barber)
-"bsn" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plating/airless,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
"bso" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -36143,8 +32593,6 @@
/obj/machinery/door/airlock/public/glass{
name = "Barber Shop"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/civilian/barber)
"bsp" = (
@@ -36172,22 +32620,7 @@
dir = 4;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
-"bst" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/quartermaster/office)
"bsv" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -36203,8 +32636,9 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -36219,26 +32653,11 @@
icon_state = "pipe-j2s";
sortType = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
},
/area/hallway/primary/starboard)
-"bsx" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bsy" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -36248,25 +32667,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bsz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bsC" = (
@@ -36282,17 +32689,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Station Engineer"
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bsE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/light/small,
/obj/item/radio/intercom{
dir = 0;
@@ -36304,13 +32706,12 @@
/area/janitor)
"bsF" = (
/obj/structure/disposalpipe/sortjunction,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bsG" = (
@@ -36335,21 +32736,20 @@
pixel_y = 2
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/bikehorn/rubberducky,
/obj/machinery/light_switch{
pixel_x = -28
},
/obj/item/card/id/captains_spare,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bsI" = (
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-SW"
+ icon_state = "E-SW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -36364,16 +32764,14 @@
/area/space/nearstation)
"bsK" = (
/obj/structure/transit_tube{
- icon_state = "W-SE";
- tag = "icon-W-SE"
+ icon_state = "W-SE"
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
"bsL" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/turf/space,
/area/space/nearstation)
@@ -36384,8 +32782,7 @@
})
"bsN" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
@@ -36415,16 +32812,13 @@
},
/obj/machinery/door/window/northleft{
dir = 2;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ name = "Reception Window"
},
/turf/simulated/floor/plasteel,
/area/crew_quarters/heads)
"bsP" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
+ icon_state = "D-SE"
},
/obj/structure/lattice,
/turf/space,
@@ -36439,8 +32833,7 @@
/area/space/nearstation)
"bsR" = (
/obj/structure/transit_tube{
- icon_state = "E-SW";
- tag = "icon-E-NW"
+ icon_state = "E-SW"
},
/obj/structure/lattice,
/turf/space,
@@ -36457,13 +32850,6 @@
dir = 8
},
/turf/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
-"bsU" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor/plating/airless,
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
@@ -36484,8 +32870,7 @@
/obj/machinery/computer/teleporter,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
@@ -36494,8 +32879,7 @@
/obj/machinery/teleport/hub,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
@@ -36509,8 +32893,6 @@
/obj/machinery/light_switch{
pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bsZ" = (
@@ -36525,13 +32907,6 @@
pixel_y = -24;
req_access_txt = "70"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/table,
/obj/item/pod_parts/core,
/obj/item/circuitboard/mecha/pod,
@@ -36544,13 +32919,11 @@
},
/area/engine/mechanic_workshop)
"bta" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
},
/obj/machinery/power/apc{
- dir = 2;
name = "Mechanic Workshop APC";
pixel_y = -25
},
@@ -36574,8 +32947,10 @@
},
/area/engine/mechanic_workshop)
"btb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -36583,10 +32958,6 @@
name = "\improper MiniSat Central Foyer"
})
"btc" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/machinery/door_control{
desc = "A remote control-switch for the pod doors.";
id = "mechpodbay";
@@ -36606,7 +32977,6 @@
name = "AI Chamber Entrance Shutters";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/flasher{
id = "AI";
pixel_x = -25
@@ -36617,6 +32987,7 @@
name = "AI Chamber";
req_access_txt = "16"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -36733,10 +33104,10 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -36747,81 +33118,32 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"btu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"btv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
-"btw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
-"btx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"btz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
- c_tag = "Port Primary Hallway - Middle";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ c_tag = "Port Primary Hallway - Middle"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -36829,13 +33151,7 @@
},
/area/hallway/primary/port)
"btA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -36852,43 +33168,27 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"btC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"btD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -36896,25 +33196,7 @@
icon_state = "neutral"
},
/area/hallway/primary/port)
-"btE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/port)
"btF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "browncorner"
@@ -36927,43 +33209,21 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
},
/area/hallway/primary/port)
"btI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Port Primary Hallway"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
-"btJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"btK" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -36975,25 +33235,19 @@
location = "3-Central-Port"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"btL" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/sign/double/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
icon_state = "map-right-MS";
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
@@ -37027,15 +33281,11 @@
"btO" = (
/obj/structure/table,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
-/obj/item/storage/firstaid/regular{
- pixel_y = 0
- },
+/obj/item/storage/firstaid/regular,
/obj/machinery/power/apc{
- dir = 2;
name = "Cargo Office APC";
pixel_x = 1;
pixel_y = -24
@@ -37045,18 +33295,16 @@
dir = 10;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"btP" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"btQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37070,17 +33318,12 @@
dir = 6;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"btS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -37107,7 +33350,6 @@
},
/obj/item/hand_labeler,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/hallway/primary/port)
@@ -37122,6 +33364,9 @@
icon_state = "1-2"
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37139,6 +33384,8 @@
/area/bridge)
"btV" = (
/obj/machinery/computer/communications,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37175,6 +33422,9 @@
pixel_y = 29
},
/obj/machinery/computer/teleporter,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37192,6 +33442,9 @@
pixel_y = 3
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37251,6 +33504,12 @@
icon_state = "map-left-MS";
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37261,14 +33520,24 @@
icon_state = "map-right-MS";
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bug" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -37306,26 +33575,15 @@
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Starboard - Art Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"buk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bul" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible,
/obj/machinery/door_control{
id = "turbinevent";
name = "Turbine Vent Control";
@@ -37354,6 +33612,9 @@
/obj/machinery/keycard_auth{
pixel_y = 24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37364,10 +33625,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -37380,6 +33637,10 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -37419,12 +33680,9 @@
/area/crew_quarters/bar)
"but" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -37432,7 +33690,6 @@
},
/area/hallway/primary/port)
"buu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -37442,11 +33699,8 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"buv" = (
/obj/item/storage/box/lights/mixed,
/obj/effect/spawner/lootdrop/maintenance,
@@ -37482,9 +33736,7 @@
/obj/item/radio/off,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"buC" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
@@ -37494,16 +33746,13 @@
dir = 8;
pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/camera{
c_tag = "Arrivals - Station Entrance";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -37536,8 +33785,13 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -37546,8 +33800,12 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "cautioncorner"
@@ -37559,13 +33817,13 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"buI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"buJ" = (
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"buK" = (
@@ -37574,26 +33832,22 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
-"buL" = (
-/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
- },
-/turf/space,
-/area/space/nearstation)
"buM" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
@@ -37616,8 +33870,7 @@
})
"buO" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -37644,7 +33897,6 @@
},
/obj/machinery/camera{
c_tag = "Mini Satellite Entrance";
- dir = 2;
network = list("SS13","MiniSat")
},
/obj/machinery/light/small{
@@ -37658,12 +33910,13 @@
name = "\improper MiniSat Exterior"
})
"buS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/window/eastright{
dir = 1;
name = "MiniSat Walkway Access";
req_access_txt = "13;75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37690,7 +33943,6 @@
pixel_x = 9;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkbluecorners"
@@ -37700,10 +33952,7 @@
})
"buU" = (
/obj/machinery/bluespace_beacon,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkbluecorners"
@@ -37722,23 +33971,18 @@
/area/hallway/primary/starboard)
"buW" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/machinery/teleport/station,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
})
"buX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkbluecorners"
@@ -37748,9 +33992,7 @@
})
"buY" = (
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/obj/machinery/light_switch{
pixel_x = -23
@@ -37760,9 +34002,6 @@
dir = 4;
network = list("SS13","MiniSat")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkbluecorners"
@@ -37771,7 +34010,6 @@
name = "\improper MiniSat Central Foyer"
})
"buZ" = (
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "darkbluecorners"
@@ -37781,25 +34019,14 @@
})
"bva" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/turret_protected/aisat_interior{
name = "\improper MiniSat Central Foyer"
})
-"bvb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/tcomeast{
- name = "\improper MiniSat East Wing"
- })
"bvc" = (
/obj/machinery/power/apc{
dir = 4;
@@ -37807,9 +34034,7 @@
pixel_x = 25
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/structure/cable/yellow{
d2 = 2;
@@ -37826,7 +34051,6 @@
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
@@ -37846,8 +34070,7 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/machinery/camera/motion{
c_tag = "Mini Satellite Maintenance";
@@ -37860,9 +34083,6 @@
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -37888,20 +34108,20 @@
})
"bvg" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
pixel_y = 20
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "darkbluecorners"
@@ -37930,23 +34150,21 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bvk" = (
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -37996,12 +34214,9 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bvo" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -38045,9 +34260,6 @@
/turf/simulated/floor/wood,
/area/crew_quarters/heads)
"bvr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -38056,8 +34268,7 @@
},
/obj/machinery/camera{
c_tag = "Bridge - Starboard";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -38065,10 +34276,12 @@
/area/bridge)
"bvs" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = -32
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -38080,8 +34293,7 @@
},
/obj/machinery/camera{
c_tag = "Engineering - Foyer - Starboard";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
@@ -38103,17 +34315,14 @@
/area/engine/break_room)
"bvv" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/table,
/obj/machinery/camera{
- c_tag = "Engineering - Transit Tube Access";
- dir = 2;
- network = list("SS13")
+ c_tag = "Engineering - Transit Tube Access"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -38134,9 +34343,6 @@
pixel_x = -9;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "darkbluecorners"
@@ -38188,8 +34394,7 @@
},
/obj/machinery/camera{
c_tag = "Arrivals - Lounge";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -38242,6 +34447,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -38257,8 +34468,12 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvH" = (
@@ -38270,6 +34485,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvK" = (
@@ -38283,10 +34504,15 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvL" = (
@@ -38299,6 +34525,12 @@
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvM" = (
@@ -38315,6 +34547,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvN" = (
@@ -38326,9 +34564,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -38338,15 +34576,16 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
sortType = 3
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvQ" = (
@@ -38364,8 +34603,11 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
@@ -38375,6 +34617,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
"bvS" = (
@@ -38387,21 +34635,14 @@
/obj/machinery/door/airlock/public/glass{
name = "Port Primary Hallway"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/port)
-"bvT" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
"bvU" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -38414,8 +34655,11 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
@@ -38442,9 +34686,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38459,9 +34701,6 @@
/turf/simulated/floor/wood,
/area/crew_quarters/heads)
"bvZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -38491,7 +34730,7 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38499,17 +34738,10 @@
name = "\improper MiniSat East Wing"
})
"bwb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -38537,6 +34769,8 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -38566,8 +34800,7 @@
/obj/structure/cable/yellow,
/obj/machinery/camera{
c_tag = "Bridge - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -38596,6 +34829,8 @@
/obj/structure/chair/comfy/black{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/bridge)
"bwk" = (
@@ -38623,11 +34858,16 @@
/area/storage/tools)
"bwm" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/structure/displaycase/captain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -38657,17 +34897,12 @@
/obj/item/stack/packageWrap,
/obj/item/gun/projectile/revolver/doublebarrel,
/obj/machinery/camera{
- c_tag = "Maltese Falcon - Backroom";
- dir = 2;
- network = list("SS13")
+ c_tag = "Maltese Falcon - Backroom"
},
/obj/item/eftpos,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -38680,8 +34915,7 @@
})
"bwr" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -38689,6 +34923,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"bws" = (
@@ -38714,9 +34951,7 @@
name = "Captain"
},
/obj/structure/chair/comfy/brown,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -38725,50 +34960,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"bww" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bwx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
+/turf/simulated/floor/plating/airless,
+/area/space/nearstation)
"bwy" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SE"
+ icon_state = "D-SE"
},
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"bwz" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -38787,6 +34999,7 @@
/obj/effect/landmark/start{
name = "Barber"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -38820,13 +35033,15 @@
/area/crew_quarters/bar)
"bwF" = (
/obj/structure/transit_tube{
- icon_state = "E-SW-NW";
- tag = "icon-E-SW-NW"
+ icon_state = "E-SW-NW"
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"bwG" = (
@@ -38837,36 +35052,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/bar)
"bwH" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bwI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"bwK" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwL" = (
@@ -38874,16 +35073,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"bwM" = (
/obj/structure/transit_tube{
- icon_state = "E-W-Pass";
- tag = "icon-E-W-Pass"
+ icon_state = "E-W-Pass"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"bwN" = (
@@ -38893,9 +35097,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwO" = (
@@ -38905,11 +35106,6 @@
icon_state = "4-8"
},
/obj/item/storage/box/lights/mixed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwP" = (
@@ -38917,9 +35113,6 @@
dir = 4
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwR" = (
@@ -38930,13 +35123,9 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 2;
- icon_state = "pipe-j1s";
sortType = 19
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwS" = (
@@ -38945,18 +35134,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bwT" = (
@@ -38966,59 +35148,56 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
-"bwU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/transit_tube,
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
"bwV" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bwW" = (
/obj/structure/transit_tube{
icon_state = "W-NE-SE"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bwX" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ icon_state = "D-NW"
},
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bwY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bwZ" = (
@@ -39028,20 +35207,19 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bxa" = (
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bxb" = (
@@ -39049,14 +35227,14 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/transit_tube/station{
- dir = 4;
- icon_state = "closed";
- tag = "icon-closed (EAST)"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -39071,13 +35249,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bxd" = (
@@ -39090,9 +35261,6 @@
/area/engine/break_room)
"bxe" = (
/obj/machinery/door/window/southleft{
- base_state = "left";
- dir = 2;
- icon_state = "left";
name = "Bar Delivery";
req_access_txt = "25"
},
@@ -39113,20 +35281,18 @@
},
/area/engine/break_room)
"bxg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/engine/break_room)
"bxi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -39136,28 +35302,29 @@
})
"bxj" = (
/obj/structure/transit_tube{
- icon_state = "S-NE";
- tag = "icon-S-NE"
+ icon_state = "S-NE"
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
"bxk" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/turf/space,
/area/space/nearstation)
"bxl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39165,11 +35332,7 @@
name = "\improper MiniSat Exterior"
})
"bxm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/power/apc{
- dir = 2;
name = "Engineering Foyer APC";
pixel_x = -1;
pixel_y = -26
@@ -39179,15 +35342,9 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bxn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -39197,9 +35354,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bxo" = (
@@ -39233,7 +35387,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
req_access_txt = "18"
@@ -39244,15 +35397,13 @@
name = "E.V.A. Storage"
})
"bxr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/alarm{
dir = 4;
pixel_x = -23
},
/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -39264,28 +35415,16 @@
icon_state = "dark"
},
/area/maintenance/starboard)
-"bxt" = (
-/obj/structure/girder,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+"bxu" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"bxu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39293,13 +35432,14 @@
name = "\improper MiniSat Exterior"
})
"bxv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39317,10 +35457,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -39338,10 +35478,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39355,10 +35497,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -39376,7 +35516,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39394,10 +35536,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -39417,10 +35559,10 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -39429,27 +35571,6 @@
/area/turret_protected/tcomfoyer{
name = "\improper MiniSat Teleporter Foyer"
})
-"bxC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat_interior{
- name = "\improper MiniSat Central Foyer"
- })
"bxD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -39459,31 +35580,12 @@
/obj/effect/landmark/start{
name = "Cyborg"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat_interior{
- name = "\improper MiniSat Central Foyer"
- })
-"bxE" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -39497,9 +35599,6 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bxH" = (
@@ -39567,8 +35666,7 @@
pixel_y = 1
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -39598,8 +35696,7 @@
dir = 8
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/landmark/start{
name = "Civilian"
@@ -39627,17 +35724,14 @@
},
/area/hallway/primary/port)
"bxR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
"bxS" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -39681,7 +35775,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -39699,16 +35792,13 @@
req_access_txt = "57"
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads)
"byb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39729,8 +35819,7 @@
"byd" = (
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Starboard";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -39759,8 +35848,9 @@
},
/area/hallway/primary/port)
"byg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -39777,6 +35867,8 @@
location = "6-Port-Central"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"byi" = (
@@ -39794,9 +35886,6 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"byj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -39812,7 +35901,7 @@
/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium,
/obj/item/lighter/zippo/nt_rep,
/obj/item/storage/fancy/cigarettes/cigpack_robustgold,
-/obj/item/toy/figure/captain,
+/obj/item/toy/figure/crew/captain,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -39835,13 +35924,6 @@
"bym" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
-"byn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads)
"byo" = (
/obj/structure/window/reinforced,
/obj/structure/table/wood,
@@ -39897,27 +35979,18 @@
},
/obj/machinery/camera{
c_tag = "Bridge - Command Chair";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/bridge)
"byt" = (
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/bridge)
"byu" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -39928,7 +36001,6 @@
/obj/structure/closet/secure_closet/hop,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/security/telescreen/entertainment{
@@ -39969,7 +36041,6 @@
/area/bridge)
"byy" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -29
},
@@ -40025,12 +36096,8 @@
name = "Captain's Desk";
req_access_txt = "20"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/item/stamp/captain,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40056,6 +36123,8 @@
},
/obj/item/coin/plasma,
/obj/item/melee/chainofcommand,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -40070,39 +36139,26 @@
pixel_x = -3;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/carpet,
/area/security/detectives_office)
"byE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"byF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -40123,17 +36179,19 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"byH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -40143,6 +36201,9 @@
/obj/structure/chair/barber{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -40166,13 +36227,13 @@
})
"byK" = (
/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"byL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -40181,6 +36242,9 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"byM" = (
@@ -40188,15 +36252,20 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"byN" = (
/obj/structure/closet/gmcloset{
desc = "It's a storage unit.";
- icon_state = "black";
name = "spare gear"
},
/obj/item/wrench,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"byO" = (
@@ -40213,7 +36282,6 @@
/area/maintenance/starboard)
"byP" = (
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 8;
name = "Barber APC";
pixel_x = -25
@@ -40222,9 +36290,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -40246,32 +36311,15 @@
icon_state = "caution"
},
/area/hallway/primary/starboard)
-"byU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "caution"
- },
-/area/hallway/primary/starboard)
"byV" = (
/obj/machinery/door/airlock/maintenance{
name = "Engineering Foyer Maintenance";
- req_access_txt = "0";
req_one_access_txt = "32;19"
},
/turf/simulated/floor/plating,
/area/engine/break_room)
"byW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -40281,15 +36329,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -40298,18 +36340,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -30
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"byZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
@@ -40320,25 +36357,27 @@
},
/area/engine/break_room)
"bza" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bzb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/securearea{
pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blackcorner"
},
/area/hallway/primary/starboard)
"bzc" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -40348,8 +36387,7 @@
/area/space/nearstation)
"bzd" = (
/obj/structure/transit_tube{
- icon_state = "N-SW";
- tag = "icon-N-SW"
+ icon_state = "N-SW"
},
/obj/structure/lattice,
/turf/space,
@@ -40369,9 +36407,7 @@
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40390,10 +36426,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -40416,10 +36452,10 @@
/obj/effect/landmark/start{
name = "Cyborg"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -40437,10 +36473,6 @@
name = "\improper MiniSat Exterior"
})
"bzi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -40449,6 +36481,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40466,12 +36499,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40479,8 +36512,11 @@
name = "\improper MiniSat East Wing"
})
"bzk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40489,9 +36525,10 @@
name = "\improper MiniSat East Wing"
})
"bzl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40504,13 +36541,15 @@
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/ai_slipper{
icon_state = "motion0"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40519,14 +36558,16 @@
})
"bzn" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -40537,9 +36578,11 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40553,9 +36596,11 @@
dir = 1;
layer = 2.9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40568,17 +36613,9 @@
pixel_y = -30
},
/obj/machinery/vending/cigarette,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bzs" = (
@@ -40615,12 +36652,6 @@
})
"bzv" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bzw" = (
@@ -40638,23 +36669,13 @@
"bzy" = (
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"bzz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
"bzA" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-18";
- layer = 4.1;
- tag = "icon-plant-18"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -40664,8 +36685,7 @@
"bzB" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -40686,8 +36706,7 @@
},
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -40710,8 +36729,7 @@
/area/hallway/primary/port)
"bzF" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -40723,20 +36741,17 @@
"bzG" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/port)
"bzH" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/port)
"bzJ" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27;37"
},
/obj/structure/cable/yellow{
@@ -40744,7 +36759,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -40762,21 +36776,17 @@
name = "Library"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpetsymbol"
},
/area/library)
"bzN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Library"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpetsymbol"
},
/area/library)
@@ -40790,17 +36800,6 @@
},
/turf/simulated/wall/r_wall,
/area/hallway/primary/port)
-"bzP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bzQ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -40809,7 +36808,6 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
sortType = 15
},
/obj/structure/cable/yellow{
@@ -40817,8 +36815,11 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
@@ -40831,11 +36832,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -40851,10 +36854,13 @@
req_access = null;
req_access_txt = "57"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
@@ -40865,13 +36871,16 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"bzU" = (
@@ -40885,14 +36894,17 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"bzV" = (
@@ -40915,6 +36927,9 @@
icon_state = "1-8"
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"bzX" = (
@@ -40923,31 +36938,17 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads)
-"bzY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"bzZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -40956,9 +36957,6 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/heads)
"bAa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
@@ -40978,28 +36976,16 @@
icon_state = "dark"
},
/area/bridge)
-"bAe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bAg" = (
/obj/machinery/door/airlock/command{
name = "Command Desk";
req_access = null;
req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge)
"bAi" = (
@@ -41036,9 +37022,10 @@
pixel_x = 9;
pixel_y = -9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2"
+ icon_state = "carpet6-2"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -41050,29 +37037,22 @@
icon_state = "1-2"
},
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bAo" = (
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bAp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet{
- icon_state = "carpet14-10";
- tag = "icon-carpet14-10"
+ icon_state = "carpet14-10"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -41080,12 +37060,10 @@
"bAq" = (
/obj/machinery/camera{
c_tag = "Captain's Office";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/carpet{
- icon_state = "carpet10-8";
- tag = "icon-carpet10-8"
+ icon_state = "carpet10-8"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -41096,16 +37074,9 @@
},
/obj/item/storage/box/donkpockets,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bAs" = (
@@ -41114,33 +37085,22 @@
},
/obj/machinery/camera{
c_tag = "Engineering - Foyer - Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/engine/break_room)
"bAt" = (
/obj/structure/transit_tube/station{
- dir = 8;
- icon_state = "closed";
- tag = "icon-closed (EAST)"
+ dir = 8
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/transit_tube_pod,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -41148,6 +37108,8 @@
/area/engine/break_room)
"bAu" = (
/obj/machinery/vending/boozeomat,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
/area/crew_quarters/bar)
"bAv" = (
@@ -41155,7 +37117,6 @@
name = "Bar Storage";
req_access_txt = "25"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -41199,9 +37160,7 @@
pixel_x = -25
},
/obj/machinery/light/small{
- dir = 8;
- icon_state = "bulb1";
- tag = "icon-bulb1 (WEST)"
+ dir = 8
},
/mob/living/simple_animal/bot/cleanbot{
on = 0
@@ -41230,43 +37189,18 @@
},
/area/crew_quarters/sleep)
"bAE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"bAF" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"bAG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "caution"
- },
-/area/hallway/primary/starboard)
"bAL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bAP" = (
@@ -41316,7 +37250,6 @@
pixel_y = -24
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 5;
pixel_y = -26
@@ -41328,10 +37261,9 @@
pixel_x = 1;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -41339,13 +37271,7 @@
"bAV" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -41357,7 +37283,6 @@
},
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "MiniSat Maintenance APC";
pixel_y = -24
},
@@ -41380,8 +37305,7 @@
})
"bAX" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/obj/structure/window/reinforced{
dir = 8
@@ -41391,8 +37315,7 @@
/area/space/nearstation)
"bAY" = (
/obj/structure/transit_tube{
- icon_state = "W-NE";
- tag = "icon-W-NE"
+ icon_state = "W-NE"
},
/obj/structure/lattice,
/turf/space,
@@ -41400,22 +37323,19 @@
"bAZ" = (
/obj/structure/lattice,
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NW"
+ icon_state = "D-NW"
},
/turf/space,
/area/space/nearstation)
"bBa" = (
/obj/structure/transit_tube{
- icon_state = "E-NW";
- tag = "icon-E-NW"
+ icon_state = "E-NW"
},
/turf/space,
/area/space/nearstation)
"bBb" = (
/obj/structure/transit_tube{
- icon_state = "D-SE";
- tag = "icon-D-SW"
+ icon_state = "D-SE"
},
/obj/structure/window/reinforced{
dir = 4
@@ -41424,7 +37344,6 @@
/area/space/nearstation)
"bBc" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -41439,12 +37358,7 @@
})
"bBd" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/obj/machinery/power/apc{
- dir = 2;
name = "AI Satellite Exterior APC";
pixel_y = -24
},
@@ -41453,6 +37367,9 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
@@ -41462,9 +37379,6 @@
})
"bBf" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
@@ -41473,12 +37387,13 @@
name = "\improper MiniSat Exterior"
})
"bBg" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/door/window/eastright{
dir = 2;
name = "MiniSat Walkway Access";
req_access_txt = "13;75"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -41502,9 +37417,6 @@
pixel_x = 9;
pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkbluecorners"
@@ -41520,7 +37432,6 @@
},
/obj/machinery/light,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 5;
pixel_y = -26
@@ -41528,7 +37439,7 @@
/obj/effect/landmark{
name = "JoinLateCyborg"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -41542,13 +37453,13 @@
/obj/machinery/door/airlock/hatch{
name = "Telecoms Control Room"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -41558,18 +37469,14 @@
})
"bBl" = (
/turf/simulated/wall/r_wall,
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bBm" = (
/obj/structure/rack,
/obj/item/storage/toolbox/electrical{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 0
- },
+/obj/item/storage/toolbox/mechanical,
/obj/item/multitool,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -41608,19 +37515,12 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bBr" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-20";
- layer = 4.1;
- tag = "icon-plant-20"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -41644,7 +37544,6 @@
})
"bBu" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = -32
},
@@ -41661,6 +37560,9 @@
})
"bBw" = (
/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -41671,6 +37573,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -41681,10 +37589,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -41720,9 +37630,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -41779,9 +37686,7 @@
/turf/simulated/floor/carpet,
/area/library)
"bBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/library)
@@ -41801,9 +37706,7 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bBU" = (
@@ -41819,10 +37722,6 @@
pixel_y = -34;
req_access_txt = "19"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/turf/simulated/floor/carpet,
/area/bridge)
"bBV" = (
@@ -41905,17 +37804,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads)
-"bCc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bCd" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced,
@@ -41926,9 +37814,9 @@
pixel_x = -2;
pixel_y = 4
},
-/obj/item/storage/lockbox/medal{
- pixel_y = 0
- },
+/obj/item/storage/lockbox/medal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -41939,14 +37827,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bCf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bCg" = (
/obj/structure/table/wood,
/obj/item/hand_tele,
@@ -41962,9 +37842,7 @@
})
"bCh" = (
/obj/machinery/camera{
- c_tag = "Council Chamber";
- dir = 2;
- network = list("SS13")
+ c_tag = "Council Chamber"
},
/obj/machinery/light{
dir = 1
@@ -41972,25 +37850,20 @@
/obj/machinery/ai_status_display{
pixel_y = 32
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"bCi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -42001,6 +37874,12 @@
})
"bCj" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bCk" = (
@@ -42011,6 +37890,9 @@
},
/obj/item/razor,
/obj/item/eftpos,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -42033,42 +37915,26 @@
pixel_y = 2;
products = list(/obj/item/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/storage/box/matches = 10, /obj/item/lighter/random = 4)
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bCn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpet7-3";
- tag = "icon-carpet7-3"
+ icon_state = "carpet7-3"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bCo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/structure/chair/comfy/brown{
- dir = 4;
- icon_state = "comfychair";
- tag = "icon-comfychair (EAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/carpet,
@@ -42077,26 +37943,17 @@
})
"bCp" = (
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/item/storage/fancy/donut_box,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bCq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -42107,21 +37964,13 @@
icon_state = "pipe-c"
},
/obj/structure/chair/comfy/brown{
- dir = 8;
- icon_state = "comfychair";
- tag = "icon-comfychair (WEST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bCr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -42131,24 +37980,11 @@
dir = 4
},
/turf/simulated/floor/carpet{
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12"
+ icon_state = "carpet11-12"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
-"bCt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bCu" = (
/obj/machinery/computer/security/telescreen{
dir = 8;
@@ -42156,15 +37992,7 @@
network = list("MiniSat","tcomm");
pixel_x = 29
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/engine/break_room)
@@ -42177,13 +38005,11 @@
/area/crew_quarters/bar)
"bCw" = (
/obj/structure/transit_tube{
- icon_state = "N-SE";
- tag = "icon-N-SE"
+ icon_state = "N-SE"
},
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -42207,7 +38033,6 @@
},
/area/crew_quarters/bar)
"bCz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -42262,19 +38087,6 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
/area/ntrep)
-"bCE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bCF" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -42285,9 +38097,6 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bCG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -42297,23 +38106,10 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bCI" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bCJ" = (
/obj/machinery/computer/arcade,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/computer/security/telescreen/entertainment{
@@ -42321,24 +38117,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bCK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/starboard)
"bCL" = (
/obj/structure/rack,
/obj/item/clothing/mask/breath{
@@ -42367,7 +38145,6 @@
/turf/simulated/wall,
/area/atmos)
"bCO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -42378,6 +38155,7 @@
name = "Atmospherics";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -42393,7 +38171,6 @@
/area/atmos)
"bCW" = (
/obj/machinery/power/apc{
- dir = 2;
name = "AI Satellite Teleporter APC";
pixel_y = -24
},
@@ -42406,8 +38183,10 @@
name = "\improper MiniSat Teleporter Foyer"
})
"bCX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/turret_protected/aisat_interior{
@@ -42415,17 +38194,13 @@
})
"bCY" = (
/obj/structure/transit_tube{
- icon_state = "D-NE";
- tag = "icon-D-NE"
+ icon_state = "D-NE"
},
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/rack,
/obj/item/clothing/suit/storage/hazardvest,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -42436,7 +38211,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -42458,14 +38235,11 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDd" = (
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
@@ -42474,28 +38248,23 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDf" = (
/obj/structure/table/wood,
/obj/item/folder/blue,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 31
},
@@ -42504,9 +38273,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDg" = (
/obj/machinery/light_switch{
pixel_y = 28
@@ -42514,7 +38281,6 @@
/obj/structure/showcase{
density = 0;
desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 2;
icon = 'icons/mob/robots.dmi';
icon_state = "robot_old";
name = "Cyborg Statue";
@@ -42523,9 +38289,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDh" = (
/obj/machinery/light/small{
dir = 4
@@ -42547,20 +38311,15 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDi" = (
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/mob/living/simple_animal/bot/floorbot{
on = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkbluecorners"
},
/area/turret_protected/aisat_interior{
@@ -42575,13 +38334,8 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bDk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -42598,18 +38352,13 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bDl" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
req_access = null;
req_access_txt = "20"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -42626,16 +38375,6 @@
/obj/machinery/light,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"bDn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
@@ -42650,15 +38389,6 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"bDp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
@@ -42674,15 +38404,13 @@
},
/area/hallway/primary/port)
"bDr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Bridge - Port Access";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -42700,35 +38428,25 @@
/turf/simulated/floor/wood,
/area/library)
"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/secondary/entry{
name = "Arrivals"
})
"bDu" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry{
@@ -42740,14 +38458,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry{
@@ -42764,38 +38475,23 @@
pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
/area/hallway/primary/port)
"bDy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
- dir = 2;
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -42803,16 +38499,12 @@
"bDz" = (
/obj/machinery/hologram/holopad,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -42823,13 +38515,9 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -42838,16 +38526,11 @@
"bDB" = (
/obj/machinery/alarm{
dir = 1;
- icon_state = "alarm0";
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
@@ -42863,13 +38546,6 @@
icon_state = "map-left-MS";
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
@@ -42886,13 +38562,6 @@
icon_state = "map-right-MS";
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -42903,30 +38572,32 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
},
/area/hallway/primary/port)
"bDG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Auxiliary Bathrooms";
- req_access_txt = "0"
+ name = "Auxiliary Bathrooms"
},
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -42935,9 +38606,6 @@
name = "\improper Auxiliary Restrooms"
})
"bDH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -42949,8 +38617,10 @@
pixel_y = 28
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -42979,26 +38649,12 @@
/obj/machinery/vending/cigarette,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plating,
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restrooms"
})
-"bDK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bDL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -43010,7 +38666,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -43029,9 +38684,6 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43047,9 +38699,7 @@
/area/library)
"bDO" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDP" = (
@@ -43057,9 +38707,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bDQ" = (
@@ -43079,25 +38727,13 @@
icon_state = "dark"
},
/area/bridge)
-"bDR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
"bDS" = (
/obj/effect/spawner/lootdrop{
loot = list(/obj/item/gun/projectile/revolver/russian,/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/item/toy/cards/deck/syndicate);
name = "gambling valuables spawner"
},
/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bDT" = (
@@ -43152,9 +38788,6 @@
req_access = null;
req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43165,47 +38798,10 @@
/area/bridge)
"bDZ" = (
/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
-"bEa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/chair/comfy/beige,
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bEb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bEd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"bEe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Council Chamber";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bEf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -43214,8 +38810,7 @@
},
/obj/machinery/camera{
c_tag = "Bridge - Starboard Access";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -43223,10 +38818,8 @@
/area/bridge)
"bEg" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
@@ -43249,28 +38842,34 @@
name = "\improper Captain's Quarters"
})
"bEi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/carpet{
- icon_state = "carpet6-2";
- tag = "icon-carpet6-2"
+ icon_state = "carpet6-2"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/carpet{
- icon_state = "carpet15-11";
- tag = "icon-carpet15-11"
+ icon_state = "carpet15-11"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bEk" = (
/obj/structure/chair/comfy/brown{
- dir = 4;
- icon_state = "comfychair";
- tag = "icon-comfychair (EAST)"
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -43279,15 +38878,19 @@
"bEl" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/shaker,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bEm" = (
/obj/structure/chair/comfy/brown{
- dir = 8;
- icon_state = "comfychair";
- tag = "icon-comfychair (WEST)"
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain{
@@ -43296,25 +38899,23 @@
"bEn" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/carpet{
- icon_state = "carpet11-12";
- tag = "icon-carpet11-12"
+ icon_state = "carpet11-12"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
"bEo" = (
/obj/machinery/camera{
- c_tag = "Bar";
- dir = 2;
- network = list("SS13")
+ c_tag = "Bar"
},
/obj/machinery/requests_console{
department = "Bar";
@@ -43358,6 +38959,7 @@
/obj/effect/landmark/start{
name = "Bartender"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -43369,10 +38971,12 @@
},
/area/crew_quarters/bar)
"bEt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark/start{
name = "Bartender"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -43429,7 +39033,6 @@
dir = 4;
icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bEA" = (
@@ -43488,44 +39091,18 @@
"bEG" = (
/turf/simulated/wall,
/area/crew_quarters/theatre)
-"bEH" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/effect/spawner/lootdrop{
- loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
- name = "maint grille or trash spawner"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bEI" = (
/obj/item/radio/beacon,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
},
/area/hallway/primary/starboard)
-"bEJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bEK" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -30
},
@@ -43560,8 +39137,7 @@
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Atmospherics - Control Room";
- network = list("SS13")
+ c_tag = "Atmospherics - Control Room"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -43598,7 +39174,6 @@
/area/crew_quarters/bar)
"bEP" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -43611,9 +39186,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Club - Fore";
- dir = 2;
- network = list("SS13")
+ c_tag = "Club - Fore"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
@@ -43622,43 +39195,20 @@
dir = 4;
pixel_x = -23
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
},
/area/hallway/primary/starboard)
-"bER" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/atmos)
"bES" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Arrivals - Middle Arm";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/atm{
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -43680,7 +39230,6 @@
/area/bridge)
"bEU" = (
/obj/machinery/meter{
- frequency = 1443;
id = "wloop_atm_meter";
name = "Waste Loop"
},
@@ -43708,7 +39257,6 @@
/area/atmos)
"bEW" = (
/obj/machinery/meter{
- frequency = 1443;
id = "dloop_atm_meter";
name = "Distribution Loop"
},
@@ -43720,9 +39268,7 @@
/area/atmos)
"bEX" = (
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
- dir = 1;
- icon_state = "map";
- tag = "icon-map (NORTH)"
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -43734,8 +39280,7 @@
pixel_y = 25
},
/obj/machinery/camera{
- c_tag = "Atmospherics - Distro Loop";
- network = list("SS13")
+ c_tag = "Atmospherics - Distro Loop"
},
/obj/machinery/atmospherics/binary/volume_pump/on{
dir = 8;
@@ -43760,15 +39305,8 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -43800,19 +39338,15 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bFe" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -25
},
/obj/machinery/camera{
c_tag = "Arrivals - Middle Arm - Far";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -43824,7 +39358,6 @@
name = "Grid Power Monitoring Computer"
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 5;
pixel_y = -26
@@ -43854,29 +39387,21 @@
},
/area/hallway/primary/starboard)
"bFi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bFj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bFk" = (
/obj/structure/transit_tube{
icon_state = "E-W-Pass"
@@ -43892,9 +39417,6 @@
},
/area/maintenance/starboard)
"bFm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -43906,38 +39428,15 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
-"bFn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_y = -32
- },
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/tcommsat/computer)
"bFo" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock{
- name = "Port Emergency Storage";
- req_access_txt = "0"
+ name = "Port Emergency Storage"
},
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -43958,15 +39457,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpetsymbol"
},
/area/security/vacantoffice)
"bFs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -43996,6 +39493,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -44015,46 +39513,35 @@
dir = 4
},
/obj/machinery/camera/autoname{
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+ dir = 8
},
/obj/item/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
pixel_x = 27
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/library)
"bFy" = (
/obj/machinery/door/morgue{
- name = "Study #1";
- req_access_txt = "0"
+ name = "Study #1"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bFz" = (
/obj/machinery/door/morgue{
- name = "Study #2";
- req_access_txt = "0"
+ name = "Study #2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bFA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -30
},
@@ -44063,10 +39550,8 @@
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -44115,18 +39600,11 @@
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bFG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = -32
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -44143,17 +39621,10 @@
name = "\improper Command Hallway"
})
"bFJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "arrival"
@@ -44165,9 +39636,6 @@
/obj/machinery/vending/coffee{
pixel_x = -3
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -44188,9 +39656,7 @@
/area/bridge)
"bFM" = (
/obj/structure/chair/comfy/teal{
- dir = 4;
- icon_state = "comfychair";
- tag = "icon-comfychair (EAST)"
+ dir = 4
},
/obj/structure/chair/comfy/black{
dir = 4
@@ -44206,6 +39672,8 @@
/obj/structure/table/wood,
/obj/item/folder/blue,
/obj/item/lighter/zippo,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/bridge)
"bFP" = (
@@ -44232,7 +39700,6 @@
"bFS" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/vending/cigarette{
@@ -44259,26 +39726,13 @@
icon_state = "dark"
},
/area/bridge)
-"bFU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"bFV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
/turf/simulated/floor/carpet{
- icon_state = "carpet5-1";
- tag = "icon-carpet5-1"
+ icon_state = "carpet5-1"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -44289,23 +39743,17 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/hallway/primary/port)
"bFX" = (
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -44317,22 +39765,10 @@
},
/turf/simulated/floor/wood,
/area/library)
-"bFZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bGa" = (
/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
@@ -44346,7 +39782,6 @@
/obj/item/cigbutt,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Port Maintenance APC";
pixel_y = -24
},
@@ -44385,13 +39820,8 @@
/obj/item/storage/box/matches{
pixel_y = 5
},
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/crew_quarters/bar)
-"bGg" = (
-/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -44435,6 +39865,8 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/bridge)
"bGk" = (
@@ -44463,21 +39895,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bGo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/theatre)
"bGp" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bGq" = (
@@ -44487,7 +39911,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/clothing/head/sombrero,
@@ -44503,8 +39926,7 @@
},
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway - Atmospherics";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44518,9 +39940,9 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -44555,20 +39977,7 @@
},
/area/hallway/primary/starboard)
"bGw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/atmos)
-"bGx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
@@ -44580,13 +39989,11 @@
name = "Life Support Specialist"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
"bGz" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -44610,8 +40017,7 @@
/area/atmos)
"bGA" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/table,
/obj/item/stack/sheet/metal{
@@ -44641,19 +40047,22 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bGC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bGD" = (
/obj/machinery/space_heater,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/west,
@@ -44661,11 +40070,17 @@
/area/atmos)
"bGE" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bGF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -44675,15 +40090,10 @@
"bGH" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro"
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bGI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -44707,8 +40117,7 @@
/area/atmos)
"bGM" = (
/obj/structure/transit_tube{
- icon_state = "D-NW";
- tag = "icon-D-NE"
+ icon_state = "D-NW"
},
/obj/structure/window/reinforced{
dir = 1
@@ -44756,14 +40165,12 @@
"bGQ" = (
/obj/machinery/camera{
c_tag = "Toxins - Launch Area";
- dir = 2;
network = list("SS13","RD")
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
@@ -44776,35 +40183,19 @@
icon_state = "caution"
},
/area/hallway/primary/starboard)
-"bGS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
"bGT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bGU" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
@@ -44826,8 +40217,7 @@
icon_state = "0-2"
},
/obj/machinery/camera{
- c_tag = "Atmospherics - Entrance";
- network = list("SS13")
+ c_tag = "Atmospherics - Entrance"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -44882,9 +40272,7 @@
name = "Port Maintenance"
})
"bHe" = (
-/obj/machinery/atmospherics/unary/thermomachine/heater/on{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/thermomachine/heater/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "caution"
@@ -44899,8 +40287,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/security/vacantoffice)
"bHh" = (
@@ -44917,9 +40305,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bHj" = (
/obj/structure/table/wood,
/obj/item/camera_film{
@@ -44940,7 +40326,6 @@
name = "\improper Auxiliary Restrooms"
})
"bHl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -45001,7 +40386,6 @@
})
"bHq" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -45041,7 +40425,6 @@
/area/library)
"bHv" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -45050,16 +40433,9 @@
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
-"bHw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/wood,
-/area/library)
"bHx" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-22";
- tag = "icon-plant-22"
+ icon_state = "plant-22"
},
/turf/simulated/floor/wood,
/area/library)
@@ -45083,13 +40459,10 @@
/turf/simulated/floor/plating,
/area/bridge)
"bHz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -45101,8 +40474,7 @@
"bHB" = (
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
@@ -45117,8 +40489,7 @@
},
/mob/living/simple_animal/pet/dog/fox/Renault,
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -45131,7 +40502,6 @@
pixel_y = -24;
req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -45156,8 +40526,7 @@
pixel_x = 27
},
/turf/simulated/floor/carpet{
- icon_state = "carpet9-4";
- tag = "icon-carpet9-4"
+ icon_state = "carpet9-4"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -45166,6 +40535,12 @@
/obj/structure/disposalpipe/segment,
/obj/item/clothing/mask/cigarette/cigar,
/obj/structure/table/wood/poker,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bHJ" = (
@@ -45178,20 +40553,16 @@
},
/area/crew_quarters/sleep)
"bHK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "20;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bHL" = (
/obj/machinery/light{
dir = 8
@@ -45211,6 +40582,8 @@
codes_txt = "patrol;next_patrol=12-Central-Starboard";
location = "11.1-Command-Starboard"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bHN" = (
@@ -45230,7 +40603,6 @@
},
/area/crew_quarters/bar)
"bHQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark/start{
name = "Civilian"
},
@@ -45256,15 +40628,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bHT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
"bHU" = (
/obj/structure/window/reinforced{
dir = 8
@@ -45280,6 +40643,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bHY" = (
@@ -45302,7 +40666,7 @@
},
/area/hallway/primary/starboard)
"bIa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -45317,7 +40681,7 @@
/obj/effect/landmark/start{
name = "Life Support Specialist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -45326,30 +40690,30 @@
},
/area/atmos)
"bId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
"bIe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/binary/volume_pump/on{
dir = 4;
name = "External to Filter"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
"bIf" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- icon_state = "intact";
- tag = "icon-intact (SOUTHWEST)"
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
@@ -45394,17 +40758,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"bIk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
"bIl" = (
@@ -45444,8 +40802,7 @@
"bIr" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Mix";
- on = 0
+ name = "Air to Mix"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -45516,8 +40873,7 @@
pixel_y = -26
},
/turf/simulated/floor/carpet{
- icon_state = "carpetside";
- tag = "icon-carpetside"
+ icon_state = "carpetside"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
@@ -45529,20 +40885,15 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIA" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-21";
- tag = "icon-plant-21"
+ icon_state = "plant-21"
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bIB" = (
/obj/structure/filingcabinet{
pixel_x = 3
@@ -45550,9 +40901,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bID" = (
/obj/structure/table/reinforced,
/obj/item/lighter/zippo,
@@ -45602,15 +40951,6 @@
icon_state = "caution"
},
/area/atmos)
-"bIN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/theatre)
"bIO" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor{
@@ -45623,7 +40963,6 @@
/turf/simulated/floor/plating,
/area/toxins/explab)
"bIP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -45631,7 +40970,6 @@
name = "test chamber blast door";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/engine,
/area/toxins/explab)
"bIR" = (
@@ -45648,7 +40986,6 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/folder/red,
@@ -45658,26 +40995,12 @@
"bIU" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/crew_quarters/toilet{
- name = "\improper Auxiliary Restrooms"
- })
-"bIV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restrooms"
})
"bIW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Auxiliary Restrooms APC";
pixel_y = -24
},
@@ -45693,6 +41016,9 @@
dir = 4;
pixel_x = 24
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -45725,63 +41051,39 @@
},
/turf/simulated/floor/wood,
/area/library)
-"bJa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bJb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bJc" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bJd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"bJe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45792,6 +41094,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -45800,15 +41105,15 @@
name = "\improper Command Hallway"
})
"bJf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -45817,15 +41122,15 @@
name = "\improper Command Hallway"
})
"bJg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -45834,17 +41139,17 @@
name = "\improper Command Hallway"
})
"bJh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -45854,9 +41159,6 @@
name = "\improper Command Hallway"
})
"bJi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -45868,6 +41170,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -45876,27 +41181,14 @@
name = "\improper Command Hallway"
})
"bJj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bJk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -45913,9 +41205,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bJm" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -45936,19 +41226,17 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bJn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -45956,30 +41244,16 @@
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
-"bJo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
"bJp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -45988,9 +41262,6 @@
name = "\improper Command Hallway"
})
"bJq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -45999,9 +41270,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -46010,9 +41280,6 @@
name = "\improper Command Hallway"
})
"bJr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -46020,6 +41287,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -46028,10 +41298,10 @@
name = "\improper Command Hallway"
})
"bJs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -46042,15 +41312,15 @@
name = "\improper Command Hallway"
})
"bJt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/ai_status_display{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -46067,40 +41337,14 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice)
"bJv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bJw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bJx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -46111,14 +41355,26 @@
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
-"bJy" = (
+"bJw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJy" = (
/obj/effect/landmark{
name = "lightsout"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -46147,7 +41403,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -46158,15 +41413,15 @@
name = "\improper Auxiliary Restrooms"
})
"bJB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/alarm{
pixel_y = 32
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -46180,12 +41435,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -46194,9 +41449,6 @@
name = "\improper Command Hallway"
})
"bJD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Command Hallway"
@@ -46204,6 +41456,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -46217,12 +41472,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bJG" = (
@@ -46230,11 +41481,18 @@
/obj/machinery/door/airlock/public/glass{
name = "Bar"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/bar)
"bJH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
@@ -46244,12 +41502,23 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/crew_quarters/bar)
"bJJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -46260,22 +41529,16 @@
name = "Club";
opacity = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/crew_quarters/bar)
-"bJL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/theatre)
"bJM" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -46283,18 +41546,28 @@
/obj/effect/landmark/start{
name = "Civilian"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bJN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bJO" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bJP" = (
@@ -46303,14 +41576,12 @@
pixel_y = 5
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/machinery/camera{
c_tag = "Theatre - Stage";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light/small{
dir = 4
@@ -46338,11 +41609,11 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -46357,24 +41628,26 @@
/area/atmos)
"bJT" = (
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/atmos)
-"bJU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/atmos)
+"bJU" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
@@ -46385,15 +41658,15 @@
name = "Atmospherics Monitoring";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"bJW" = (
@@ -46408,22 +41681,20 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- icon_state = "intact";
- tag = "icon-intact (SOUTHWEST)"
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"bJY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -46445,35 +41716,29 @@
dir = 8;
name = "Mix to Filter"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
"bKc" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4;
- tag = "icon-manifold-y (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bKd" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 6;
- tag = "icon-intact-g (SOUTHEAST)"
+ dir = 6
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bKe" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1;
- tag = "icon-manifold-g (NORTH)"
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/atmos)
"bKf" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 4;
- tag = "icon-manifold-g (EAST)"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -46534,12 +41799,8 @@
/turf/simulated/wall/r_wall,
/area/tcommsat/server)
"bKm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bKn" = (
@@ -46563,14 +41824,15 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bKo" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -46585,6 +41847,9 @@
dir = 8
},
/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -46602,9 +41867,7 @@
dir = 1
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Exterior South West";
@@ -46613,6 +41876,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -46638,7 +41904,6 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
"bKv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -46646,9 +41911,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bKw" = (
/obj/item/flashlight/lamp/green{
pixel_x = 1;
@@ -46700,7 +41963,6 @@
id_tag = "AuxShower";
name = "Shower"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -46726,12 +41988,6 @@
},
/turf/simulated/floor/wood,
/area/library)
-"bKI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
"bKL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -46748,6 +42004,8 @@
codes_txt = "patrol;next_patrol=11.1-Command-Starboard";
location = "11-Command-Port"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bKM" = (
@@ -46757,7 +42015,6 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -46784,39 +42041,6 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bKP" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bKQ" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -46833,9 +42057,8 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -46852,6 +42075,7 @@
/obj/machinery/newscaster{
pixel_x = -32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
/area/library)
"bKT" = (
@@ -46900,9 +42124,7 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -46919,6 +42141,9 @@
/obj/machinery/newscaster{
pixel_y = -29
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -46926,23 +42151,6 @@
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
-"bKY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
"bKZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -46989,22 +42197,14 @@
"bLc" = (
/obj/machinery/space_heater,
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
-"bLd" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
"bLe" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -47017,7 +42217,6 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47036,7 +42235,6 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47054,7 +42252,6 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47074,8 +42271,10 @@
/obj/machinery/newscaster{
pixel_y = -29
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47088,51 +42287,26 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bLj" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
"bLl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j1 (WEST)"
+ icon_state = "pipe-j2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47152,23 +42326,6 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"bLo" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47191,7 +42348,6 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47208,7 +42364,6 @@
name = "Command Hallway"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -47245,26 +42400,10 @@
codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner";
location = "7-Command-Starboard"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
-"bLu" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bLv" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -47272,15 +42411,9 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/public/glass{
name = "Bar"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/bar)
"bLw" = (
@@ -47289,74 +42422,28 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/crew_quarters/bar)
"bLx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/crew_quarters/bar)
-"bLy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/crew_quarters/bar)
-"bLz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/crew_quarters/bar)
"bLA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -47367,17 +42454,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "Club";
opacity = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
@@ -47388,20 +42469,18 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry{
@@ -47409,7 +42488,6 @@
})
"bLD" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;27"
},
/obj/structure/cable/yellow{
@@ -47417,17 +42495,12 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"bLF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
"bLH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -47445,12 +42518,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
"bLK" = (
@@ -47469,19 +42538,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bLM" = (
/obj/machinery/door/airlock{
icon = 'icons/obj/doors/airlocks/station/maintenance.dmi';
name = "Theatre Stage";
- req_access_txt = "0";
req_one_access_txt = "12;46"
},
/obj/structure/cable/yellow{
@@ -47492,28 +42554,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
-"bLN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bLO" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
@@ -47538,9 +42580,9 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
@@ -47548,7 +42590,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -47572,11 +42614,7 @@
name = "\improper Command Hallway"
})
"bLS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -47586,6 +42624,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47597,11 +42638,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
@@ -47614,7 +42657,6 @@
name = "Air to External"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
@@ -47622,15 +42664,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "blackcorner"
},
/area/atmos)
@@ -47675,37 +42712,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/visible/purple{
dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bLZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bMa" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/atmos)
"bMb" = (
@@ -47716,12 +42727,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"bMc" = (
@@ -47732,34 +42737,21 @@
/area/atmos)
"bMd" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bMe" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
- name = "Pure to Mix";
- on = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ name = "Pure to Mix"
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bMf" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 5;
- initialize_directions = 12;
- tag = "icon-intact-g (NORTHEAST)"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
+ initialize_directions = 12
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -47819,9 +42811,6 @@
},
/area/atmos)
"bMm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/power/apc{
cell_type = 10000;
dir = 1;
@@ -47835,6 +42824,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -47851,7 +42843,6 @@
/area/space/nearstation)
"bMo" = (
/obj/machinery/door/window/southleft{
- dir = 2;
name = "Maximum Security Test Chamber";
req_access_txt = "55"
},
@@ -47954,9 +42945,7 @@
name = "\improper Secure Lab"
})
"bMv" = (
-/obj/structure/disposaloutlet{
- dir = 2
- },
+/obj/structure/disposaloutlet,
/turf/simulated/floor/engine,
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -47968,9 +42957,10 @@
icon_state = "1-2"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -47980,13 +42970,14 @@
})
"bMC" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fore)
"bMD" = (
@@ -48003,22 +42994,19 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice)
"bMF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/obj/machinery/camera{
- c_tag = "Command Hallway - Starboard";
- dir = 2;
- network = list("SS13")
+ c_tag = "Command Hallway - Starboard"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -48027,16 +43015,15 @@
name = "\improper Command Hallway"
})
"bMG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -48049,7 +43036,6 @@
/obj/machinery/shower{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -48057,39 +43043,15 @@
name = "\improper Auxiliary Restrooms"
})
"bMI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
-"bMJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/spawner/lootdrop{
- loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
- name = "maint grille or trash spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"bMK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bML" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/turf/simulated/floor/plating,
@@ -48097,19 +43059,10 @@
name = "Port Maintenance"
})
"bMM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/library)
-"bMN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
"bMP" = (
/obj/machinery/bookbinder,
/turf/simulated/floor/wood,
@@ -48148,12 +43101,10 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
+ dir = 1
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/bridge/meeting_room{
@@ -48263,7 +43214,6 @@
},
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Atmospherics Desk";
req_access_txt = "24"
},
@@ -48282,7 +43232,7 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -48290,8 +43240,7 @@
"bNl" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
@@ -48303,10 +43252,11 @@
icon_state = "1-2"
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -48329,13 +43279,11 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNo" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
/obj/structure/cable/yellow{
@@ -48344,25 +43292,13 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bNp" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bNr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bNs" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
@@ -48373,15 +43309,6 @@
/area/teleporter{
name = "\improper Teleporter Room"
})
-"bNw" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/crew_quarters/bar)
"bNx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -48391,8 +43318,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNz" = (
@@ -48400,10 +43326,15 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bNA" = (
@@ -48414,6 +43345,12 @@
name = "Station Intercom (General)";
pixel_y = -29
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -48427,6 +43364,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -48439,6 +43382,9 @@
pixel_y = -26
},
/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -48453,8 +43399,13 @@
},
/obj/machinery/camera{
c_tag = "Kitchen - Coldroom";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -48475,10 +43426,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bNG" = (
@@ -48508,6 +43455,9 @@
dir = 4;
pixel_x = 24
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
@@ -48533,7 +43483,7 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -48544,7 +43494,6 @@
},
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
@@ -48554,21 +43503,18 @@
pixel_y = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 4;
- icon_state = "4"
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 4;
- icon_state = "3"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bNM" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/command{
name = "E.V.A. Storage";
req_access_txt = "18"
@@ -48582,10 +43528,14 @@
/obj/machinery/computer/card/minor/rd,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
+"bNP" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/courtroom)
"bNQ" = (
/obj/machinery/light{
dir = 8
@@ -48702,13 +43652,10 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Teleport Access";
- req_access_txt = "0";
req_one_access_txt = "17;19"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -48721,9 +43668,10 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -48738,7 +43686,6 @@
pixel_y = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/quartermaster/miningdock{
@@ -48757,20 +43704,24 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/carpet,
/area/security/vacantoffice)
"bOj" = (
/obj/item/folder/white,
/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/security/vacantoffice)
"bOk" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs/limb,
@@ -48785,9 +43736,6 @@
/obj/machinery/shower{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plating,
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restrooms"
@@ -48813,7 +43761,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -48871,24 +43818,17 @@
/obj/structure/table/wood,
/turf/simulated/floor/wood,
/area/library)
-"bOu" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
"bOw" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/library)
"bOx" = (
@@ -48909,14 +43849,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bOz" = (
@@ -48933,8 +43866,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -48955,11 +43887,7 @@
name = "Gateway Atrium";
req_access_txt = "62"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/gateway)
"bOD" = (
@@ -49008,7 +43936,6 @@
pixel_y = -3
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -49019,10 +43946,6 @@
/turf/simulated/floor/wood,
/area/blueshield)
"bOJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -49033,8 +43956,10 @@
},
/obj/machinery/camera{
c_tag = "Command Hallway - Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -49052,8 +43977,10 @@
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/bridge/meeting_room{
@@ -49084,8 +44011,7 @@
"bOO" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Mix";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine{
name = "vacuum floor";
@@ -49099,9 +44025,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/security/vacantoffice)
"bOQ" = (
@@ -49110,7 +44035,6 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bOR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
@@ -49122,7 +44046,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
@@ -49146,13 +44069,7 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel,
/area/gateway)
"bOV" = (
@@ -49161,36 +44078,23 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
-"bOW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bOX" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door_control{
id = "AuxShower";
name = "Lock Control";
normaldoorcontrol = 1;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/item/soap/nanotrasen,
@@ -49206,18 +44110,33 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/bridge/meeting_room{
name = "\improper Command Hallway"
})
+"bOZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
"bPa" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Kitchen Hatch";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
@@ -49245,7 +44164,6 @@
name = "Lock Control";
normaldoorcontrol = 1;
pixel_x = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
@@ -49260,8 +44178,7 @@
base_state = "right";
dir = 8;
icon_state = "right";
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage"
},
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
@@ -49292,8 +44209,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -49320,9 +44236,7 @@
name = "\improper Secure Lab"
})
"bPl" = (
-/obj/machinery/light{
- dir = 2
- },
+/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Secure Lab - Test Chamber";
dir = 1;
@@ -49332,12 +44246,6 @@
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"bPm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
"bPn" = (
/obj/structure/ore_box,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -49346,10 +44254,6 @@
name = "\improper Teleporter Room"
})
"bPo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -49357,7 +44261,6 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -49375,7 +44278,6 @@
/obj/item/flashlight,
/obj/structure/closet/crate,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -49420,11 +44322,11 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
"bPw" = (
@@ -49473,7 +44375,6 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -49537,20 +44438,6 @@
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"bPJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
"bPK" = (
/obj/structure/table,
/obj/item/assembly/igniter{
@@ -49579,78 +44466,28 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
-"bPM" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"bPN" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "12;27;37"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bPO" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/foodcart,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/crew_quarters/kitchen)
-"bPP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"bPQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bPR" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
/turf/simulated/floor/wood,
/area/security/vacantoffice)
"bPS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southeast,
/obj/structure/cable/yellow{
d1 = 1;
@@ -49662,6 +44499,8 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -49695,18 +44534,12 @@
/turf/simulated/floor/wood,
/area/library)
"bPX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "redcorner"
@@ -49757,8 +44590,7 @@
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -49770,9 +44602,6 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel,
/area/gateway)
"bQf" = (
@@ -49784,6 +44613,9 @@
/obj/item/radio/off,
/obj/item/radio/off,
/obj/item/multitool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -49796,9 +44628,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bQh" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/firealarm{
@@ -49807,8 +44637,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -49858,53 +44687,38 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/gateway)
"bQn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/wood,
/area/blueshield)
"bQp" = (
/obj/machinery/light_switch{
pixel_x = 27
},
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/wood,
/area/blueshield)
"bQr" = (
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/wood,
/area/ntrep)
"bQu" = (
/obj/machinery/light_switch{
pixel_x = 27
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/wood,
/area/ntrep)
-"bQx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bQy" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -49943,8 +44757,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/gateway)
"bQC" = (
@@ -49967,13 +44780,11 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/gateway)
"bQE" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -49995,18 +44806,9 @@
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"bQH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
+/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"bQI" = (
/turf/simulated/wall,
@@ -50027,8 +44829,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bQK" = (
@@ -50047,8 +44848,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bQL" = (
@@ -50072,6 +44872,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Pod Bay"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -50089,7 +44890,6 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -50110,8 +44910,7 @@
},
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "N2O to Pure";
- on = 0
+ name = "N2O to Pure"
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plasteel{
@@ -50134,6 +44933,8 @@
name = "Theatre Backstage";
req_access_txt = "46"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bQV" = (
@@ -50175,8 +44976,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"bQX" = (
@@ -50204,29 +45004,38 @@
/area/atmos)
"bRc" = (
/obj/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"bRd" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Air to Port"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bRe" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Mix to Port";
- on = 0
+ name = "Mix to Port"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bRf" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Pure to Port";
- on = 0
+ name = "Pure to Port"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -50275,8 +45084,6 @@
/area/space/nearstation)
"bRn" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical{
name = "Coroner"
},
@@ -50298,9 +45105,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/tcommsat/computer{
- name = "\improper Telecoms Control Room"
- })
+/area/tcommsat/computer)
"bRp" = (
/obj/structure/window/reinforced{
dir = 8
@@ -50319,28 +45124,22 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
-"bRr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
"bRs" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
"bRt" = (
@@ -50353,16 +45152,16 @@
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
"bRu" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -50373,7 +45172,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
@@ -50396,14 +45194,9 @@
icon_state = "1-4"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel,
/area/gateway)
"bRx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -50424,9 +45217,10 @@
},
/obj/machinery/camera{
c_tag = "Arrivals - Aft Arm";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -50533,13 +45327,11 @@
/turf/simulated/floor/wood,
/area/library)
"bRL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/landmark{
name = "lightsout"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/library)
"bRM" = (
@@ -50571,14 +45363,12 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bRQ" = (
@@ -50614,8 +45404,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -50639,20 +45428,11 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
-"bRT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"bRU" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -50674,8 +45454,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bRV" = (
@@ -50684,16 +45463,6 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"bRW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
@@ -50721,13 +45490,14 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
})
"bRZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/blueshield)
"bSa" = (
@@ -50746,11 +45516,12 @@
pixel_x = 29;
pixel_y = -1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/blueshield)
"bSd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/ntrep)
"bSe" = (
@@ -50765,7 +45536,6 @@
pixel_x = 29;
pixel_y = -1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/ntrep)
"bSh" = (
@@ -50793,7 +45563,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
@@ -50802,8 +45571,7 @@
"bSj" = (
/obj/machinery/camera{
c_tag = "Club - Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -29
@@ -50837,8 +45605,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bSn" = (
@@ -50853,8 +45620,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bSp" = (
@@ -50865,9 +45631,7 @@
},
/obj/item/cigbutt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bSq" = (
/obj/machinery/alarm{
dir = 4;
@@ -50916,8 +45680,7 @@
"bSt" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSv" = (
@@ -50930,8 +45693,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSw" = (
@@ -50940,8 +45702,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSx" = (
@@ -50959,8 +45720,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSy" = (
@@ -50971,8 +45731,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bSz" = (
@@ -50985,7 +45744,6 @@
"bSA" = (
/obj/structure/closet/emcloset,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = -32
},
@@ -51004,14 +45762,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bSD" = (
@@ -51031,7 +45785,6 @@
"bSE" = (
/obj/machinery/camera{
c_tag = "Morgue";
- dir = 2;
network = list("SS13","Medbay")
},
/obj/structure/window/reinforced{
@@ -51061,17 +45814,14 @@
pixel_x = -4;
pixel_y = 3
},
-/obj/item/clothing/shoes/magboots{
- pixel_y = 0
- },
+/obj/item/clothing/shoes/magboots,
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
pixel_y = -3
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -51080,18 +45830,6 @@
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bSH" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/sleep)
"bSI" = (
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
@@ -51125,6 +45863,9 @@
pixel_x = -27
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -51175,8 +45916,7 @@
/obj/machinery/door/window/northleft{
dir = 8;
name = "Disposals Chute";
- pixel_x = -1;
- req_access_txt = "0"
+ pixel_x = -1
},
/obj/machinery/disposal/deliveryChute{
dir = 8;
@@ -51211,14 +45951,12 @@
/area/atmos)
"bSW" = (
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_x = -32
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Starboard - Kitchen";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -51227,12 +45965,12 @@
/area/hallway/primary/central)
"bSX" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51242,15 +45980,14 @@
dir = 4
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/door/airlock/medical{
+ name = "Morgue"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/medical{
- name = "Morgue"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51258,12 +45995,12 @@
/area/medical/morgue)
"bSZ" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/medical{
name = "Morgue"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -51305,10 +46042,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bTd" = (
/obj/structure/chair/wood/wings{
dir = 1
@@ -51322,11 +46060,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -51341,8 +46077,7 @@
/obj/item/radio,
/obj/machinery/camera{
c_tag = "Engineering Equipment East";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -51354,9 +46089,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51381,18 +46113,23 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
})
"bTk" = (
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -51413,10 +46150,6 @@
/turf/simulated/floor/plasteel,
/area/gateway)
"bTm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -51429,8 +46162,13 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-03";
- layer = 4.1;
- tag = "icon-plant-03"
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -51485,6 +46223,9 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51530,15 +46271,13 @@
/turf/simulated/floor/carpet,
/area/library)
"bTv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/library)
"bTw" = (
@@ -51553,8 +46292,7 @@
/obj/item/folder,
/obj/item/folder,
/obj/machinery/camera/autoname{
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
/turf/simulated/floor/wood,
@@ -51580,8 +46318,7 @@
"bTB" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/library)
"bTC" = (
@@ -51603,7 +46340,6 @@
},
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -51622,21 +46358,20 @@
pixel_x = -1;
pixel_y = 2
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
"bTG" = (
/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/gateway)
"bTH" = (
/obj/machinery/camera{
c_tag = "Arrivals - Aft Arm - Far";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -51644,6 +46379,9 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -51676,30 +46414,34 @@
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
"bTL" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/blueshield)
"bTN" = (
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/ntrep)
"bTO" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/ntrep)
"bTP" = (
@@ -51713,15 +46455,16 @@
/obj/machinery/light_switch{
pixel_x = -26
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bTR" = (
-/obj/structure/closet/secure_closet/medical1{
- pixel_x = 0
- },
+/obj/structure/closet/secure_closet/medical1,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -51733,8 +46476,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/gateway)
"bTT" = (
@@ -51745,8 +46487,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/gateway)
"bTU" = (
@@ -51755,8 +46496,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "vault";
- tag = "icon-vault (NORTH)"
+ icon_state = "vault"
},
/area/gateway)
"bTV" = (
@@ -51766,9 +46506,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bTW" = (
/obj/item/radio/intercom{
dir = 8;
@@ -51780,19 +46518,6 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bTX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bTY" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -51804,30 +46529,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"bUa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/crew_quarters/kitchen)
-"bUb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/crew_quarters/kitchen)
"bUe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -51837,8 +46538,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bUf" = (
@@ -51848,16 +46548,9 @@
},
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
-"bUg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/theatre)
"bUh" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -51892,38 +46585,26 @@
"bUl" = (
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
-"bUm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/theatre)
"bUn" = (
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bUo" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -26
},
/obj/machinery/camera{
c_tag = "Atmospherics - Central";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/atmos)
"bUp" = (
-/obj/item/toy/figure/mime,
+/obj/item/toy/figure/crew/mime,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -51966,16 +46647,14 @@
"bUu" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - N2O";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/n20,
/area/atmos)
"bUv" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Mix to Port";
- on = 0
+ name = "Mix to Port"
},
/obj/item/crowbar,
/turf/simulated/floor/plasteel,
@@ -51984,7 +46663,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
@@ -51998,34 +46676,26 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUz" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bUA" = (
/obj/structure/window/reinforced{
dir = 4
@@ -52039,15 +46709,14 @@
req_access_txt = "13;75"
},
/obj/machinery/light/small{
- dir = 4;
- icon_state = "bulb1";
- tag = "icon-bulb1 (EAST)"
+ dir = 4
},
/obj/machinery/camera/motion{
c_tag = "AI Satellite Exterior South East 2";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -52064,6 +46733,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -52087,14 +46759,6 @@
/obj/structure/table,
/obj/item/clothing/mask/cigarette/pipe,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"bUH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
@@ -52105,7 +46769,6 @@
opacity = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpetsymbol"
},
/area/library)
@@ -52120,12 +46783,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "carpetsymbol"
},
/area/library)
@@ -52135,20 +46795,9 @@
req_access_txt = "37"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
-"bUL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bUM" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -52175,41 +46824,36 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
"bUO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
"bUP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
"bUQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -52219,6 +46863,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -52226,9 +46873,7 @@
"bUR" = (
/obj/machinery/door/airlock/welded,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bUS" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -52236,30 +46881,29 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
"bUT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/southwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -52277,11 +46921,7 @@
/turf/simulated/floor/plasteel,
/area/gateway)
"bUW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -25
},
@@ -52291,6 +46931,12 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
@@ -52324,7 +46970,6 @@
/area/blueshield)
"bVa" = (
/obj/machinery/photocopier,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/blueshield)
"bVb" = (
@@ -52344,8 +46989,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -52371,10 +47015,8 @@
pixel_x = 32
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
@@ -52391,15 +47033,16 @@
/obj/item/stack/packageWrap,
/obj/item/hand_tele,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Teleporter Room";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -52411,8 +47054,7 @@
},
/obj/machinery/camera{
c_tag = "Gateway - Atrium";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -52436,7 +47078,6 @@
"bVi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "1;4;38;12"
},
/turf/simulated/floor/plating,
@@ -52452,17 +47093,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVk" = (
/obj/machinery/power/apc{
cell_type = 10000;
@@ -52476,24 +47110,16 @@
},
/obj/machinery/camera{
c_tag = "Research Division - Airlock";
- dir = 2;
network = list("SS13","RD")
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVl" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVm" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -52501,7 +47127,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/public/glass{
name = "Dormitories"
},
@@ -52512,8 +47137,7 @@
/area/crew_quarters/sleep)
"bVn" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -52522,7 +47146,6 @@
/area/hallway/primary/central)
"bVo" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/public/glass{
name = "Dormitories"
},
@@ -52559,13 +47182,8 @@
},
/obj/structure/disposalpipe/segment,
/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bVs" = (
/obj/structure/table,
/obj/machinery/door_control{
@@ -52581,7 +47199,6 @@
},
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -52589,16 +47206,20 @@
/obj/machinery/kitchen_machine/candy_maker,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bVu" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bVv" = (
@@ -52663,6 +47284,7 @@
/obj/structure/chair/wood/wings{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bVC" = (
@@ -52676,20 +47298,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bVE" = (
@@ -52701,12 +47315,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
"bVF" = (
@@ -52727,9 +47335,7 @@
"bVG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bVI" = (
/obj/effect/decal/cleanable/blood/old,
/obj/machinery/light{
@@ -52737,26 +47343,7 @@
in_use = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"bVJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"bVK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/aft)
"bVL" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 4
@@ -52793,13 +47380,16 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -52810,8 +47400,7 @@
},
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Air to Port"
},
/obj/machinery/light/small{
dir = 8
@@ -52846,17 +47435,14 @@
pixel_x = 4;
pixel_y = -1
},
-/obj/item/tank/jetpack/carbondioxide{
- pixel_y = 0
- },
+/obj/item/tank/jetpack/carbondioxide,
/obj/item/tank/jetpack/carbondioxide{
pixel_x = -4;
pixel_y = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -52890,9 +47476,7 @@
/obj/effect/decal/cleanable/cobweb2,
/obj/item/trash/tapetrash,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bVY" = (
/obj/structure/window/reinforced{
dir = 4
@@ -52932,15 +47516,11 @@
/obj/item/clothing/suit/storage/labcoat/mad,
/obj/item/clothing/glasses/science,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWa" = (
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWb" = (
/obj/machinery/keycard_auth{
pixel_x = -24
@@ -52950,11 +47530,9 @@
name = "Desk Door";
req_access_txt = "67"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/blueshield)
"bWc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -52970,25 +47548,14 @@
/turf/simulated/floor/plating,
/area/toxins/lab)
"bWf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
-"bWg" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bWh" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/structure/cable/yellow{
@@ -53002,9 +47569,6 @@
name = "\improper Teleporter Room"
})
"bWi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/item/trash/candy,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -53013,8 +47577,7 @@
"bWj" = (
/obj/machinery/door/airlock/maintenance{
name = "Vacant Office Maintenance";
- req_access_txt = "32";
- req_one_access_txt = "0"
+ req_access_txt = "32"
},
/turf/simulated/floor/plating,
/area/security/vacantoffice)
@@ -53030,9 +47593,7 @@
})
"bWl" = (
/turf/simulated/wall/rust,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bWm" = (
/obj/structure/rack,
/obj/item/storage/box,
@@ -53045,12 +47606,6 @@
name = "Kitchen Maintenance";
req_access_txt = "28"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
"bWo" = (
@@ -53063,6 +47618,8 @@
"bWp" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/crew_quarters/sleep)
"bWs" = (
@@ -53071,8 +47628,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/library)
"bWt" = (
@@ -53103,15 +47660,12 @@
/obj/machinery/keycard_auth{
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/ntrep)
"bWx" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bWy" = (
@@ -53124,13 +47678,10 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bWz" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
@@ -53149,6 +47700,10 @@
charge = 100;
maxcharge = 15000
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -53168,8 +47723,7 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -53178,16 +47732,12 @@
/obj/item/radio/beacon,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
})
"bWE" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/door_control{
id = "teleshutter";
name = "Teleporter Shutter Control";
@@ -53195,10 +47745,11 @@
pixel_y = -26;
req_access_txt = "19"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -53208,8 +47759,7 @@
/obj/machinery/shieldwallgen,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "vault";
- tag = "icon-vault (EAST)"
+ icon_state = "vault"
},
/area/teleporter{
name = "\improper Teleporter Room"
@@ -53222,7 +47772,6 @@
name = "Blueshield Requests Console";
pixel_x = -30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/blueshield)
"bWH" = (
@@ -53246,24 +47795,26 @@
/obj/structure/chair/comfy/black{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "bcarpet05"
},
/area/blueshield)
"bWK" = (
/obj/item/flag/nt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/blueshield)
"bWM" = (
/obj/item/flag/nt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/ntrep)
"bWN" = (
/obj/structure/chair/comfy/black{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
/area/ntrep)
"bWO" = (
@@ -53290,11 +47841,9 @@
announcementConsole = 1;
department = "NT Representative";
departmentType = 5;
- dir = 2;
name = "NT Rep Requests Console";
pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/ntrep)
"bWR" = (
@@ -53316,6 +47865,12 @@
})
"bWS" = (
/obj/effect/decal/warning_stripes/northeast,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"bWT" = (
@@ -53326,17 +47881,9 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 2;
- icon_state = "pipe-j1s";
sortType = 18
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bWU" = (
@@ -53345,9 +47892,6 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bWV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -53370,14 +47914,14 @@
/turf/simulated/floor/plasteel,
/area/gateway)
"bWW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"bWX" = (
@@ -53391,18 +47935,23 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"bWY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"bWZ" = (
@@ -53415,9 +47964,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/gateway)
"bXb" = (
@@ -53427,8 +47973,7 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bXc" = (
@@ -53442,44 +47987,21 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/crew_quarters/kitchen)
-"bXd" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bXi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bXj" = (
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Plasma to Pure";
- on = 0
+ name = "Plasma to Pure"
},
/obj/structure/window/reinforced{
dir = 4
@@ -53516,10 +48038,6 @@
/obj/effect/landmark/start{
name = "Chef"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -53529,18 +48047,13 @@
},
/area/crew_quarters/kitchen)
"bXm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
/area/crew_quarters/kitchen)
"bXn" = (
/obj/machinery/icemachine,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -53566,15 +48079,17 @@
},
/obj/machinery/camera{
c_tag = "Theatre - Backstage";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
"bXq" = (
/obj/machinery/light/small,
-/obj/item/toy/prize/honk{
+/obj/item/toy/figure/mech/honk{
pixel_y = 12
},
/obj/structure/table/wood,
@@ -53595,11 +48110,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/theatre)
-"bXs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/wrench,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bXt" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
@@ -53640,6 +48150,9 @@
pixel_y = 2
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/gateway)
"bXy" = (
@@ -53649,9 +48162,7 @@
},
/obj/item/clothing/under/suit_jacket/red,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXz" = (
@@ -53674,39 +48185,29 @@
"bXC" = (
/obj/structure/computerframe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXD" = (
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXE" = (
/obj/structure/table,
/obj/item/reagent_containers/syringe,
/obj/item/storage/pill_bottle/random_drug_bottle,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXF" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-14";
- layer = 4.1;
- tag = "icon-plant-14"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"bXG" = (
/obj/item/reagent_containers/iv_bag,
/obj/item/reagent_containers/iv_bag/salglu,
@@ -53714,15 +48215,19 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/machinery/iv_drip,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bXH" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -53751,9 +48256,6 @@
name = "Storage Room";
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -53769,13 +48271,14 @@
pixel_x = 30
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXN" = (
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/library)
"bXO" = (
@@ -53804,23 +48307,18 @@
"bXQ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/crew_quarters/locker)
"bXR" = (
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/item/camera,
/obj/item/radio/intercom{
pixel_y = -25
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXS" = (
@@ -53828,9 +48326,7 @@
name = "Forbidden Knowledge"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"bXT" = (
@@ -53844,28 +48340,16 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"bXU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bXV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
"bXW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -53882,16 +48366,11 @@
},
/obj/machinery/processor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bXY" = (
/obj/machinery/computer/teleporter,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/turf/simulated/floor/plating,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -53903,9 +48382,6 @@
name = "\improper Teleporter Room"
})
"bYa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -53920,9 +48396,6 @@
dir = 8;
pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/wood,
/area/blueshield)
"bYc" = (
@@ -53946,24 +48419,16 @@
/obj/item/flashlight/lamp,
/obj/machinery/camera{
c_tag = "Blueshield's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/newscaster/security_unit{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/wood,
/area/blueshield)
"bYe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/blueshield)
"bYf" = (
@@ -53975,17 +48440,10 @@
/obj/item/reagent_containers/food/drinks/bottle/whiskey,
/obj/item/reagent_containers/food/drinks/drinkingglass,
/obj/item/reagent_containers/food/drinks/drinkingglass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/wood,
/area/blueshield)
"bYg" = (
/obj/structure/filingcabinet,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/wood,
/area/ntrep)
"bYh" = (
@@ -54006,9 +48464,6 @@
dir = 4;
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/wood,
/area/ntrep)
"bYk" = (
@@ -54047,8 +48502,7 @@
"bYn" = (
/obj/machinery/camera{
c_tag = "NT Representative's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
/obj/machinery/newscaster/security_unit{
@@ -54057,9 +48511,6 @@
/obj/machinery/photocopier/faxmachine/longrange{
department = "NT Representative's Office"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/wood,
/area/ntrep)
"bYo" = (
@@ -54068,10 +48519,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -54086,20 +48533,13 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bYq" = (
/obj/item/mounted/frame/apc_frame,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bYr" = (
/obj/machinery/firealarm{
dir = 8;
@@ -54118,20 +48558,30 @@
},
/obj/item/stack/packageWrap,
/obj/item/hand_labeler,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYt" = (
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/obj/item/eftpos,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYu" = (
@@ -54142,8 +48592,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bYv" = (
@@ -54151,6 +48600,9 @@
pixel_x = 30
},
/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/library)
"bYw" = (
@@ -54163,8 +48615,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "vault";
- tag = "icon-vault (WEST)"
+ icon_state = "vault"
},
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
@@ -54187,15 +48638,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bYz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "green"
- },
-/area/hydroponics)
"bYA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -54206,7 +48648,6 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/hydroponics)
@@ -54214,8 +48655,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/hydroponics)
@@ -54223,6 +48669,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "green"
@@ -54237,7 +48689,6 @@
"bYE" = (
/obj/machinery/cooker/deepfryer,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -54255,10 +48706,6 @@
/obj/machinery/portable_atmospherics/canister,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"bYH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"bYI" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow{
@@ -54286,9 +48733,6 @@
req_access_txt = "67"
},
/obj/machinery/computer/crew,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/wood,
/area/blueshield)
"bYK" = (
@@ -54324,9 +48768,6 @@
req_access_txt = "73"
},
/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/wood,
/area/ntrep)
"bYO" = (
@@ -54360,41 +48801,31 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bYR" = (
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
-"bYS" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bYT" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -54405,33 +48836,23 @@
/area/ai_monitored/storage/eva{
name = "E.V.A. Storage"
})
-"bYV" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bYW" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -54494,7 +48915,6 @@
pixel_x = -23
},
/obj/machinery/power/apc{
- dir = 2;
name = "Kitchen APC";
pixel_y = -24
},
@@ -54502,7 +48922,6 @@
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
@@ -54523,8 +48942,7 @@
/obj/item/kitchen/rollingpin,
/obj/machinery/camera{
c_tag = "Kitchen";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/door_control{
id = "kitchenhydro";
@@ -54533,15 +48951,12 @@
req_access_txt = "28"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bZe" = (
/obj/item/toy/cards/deck,
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/library)
"bZf" = (
@@ -54563,12 +48978,13 @@
/turf/simulated/floor/wood,
/area/library)
"bZh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -54591,8 +49007,7 @@
/obj/machinery/kitchen_machine/oven,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"bZk" = (
@@ -54609,11 +49024,11 @@
/turf/simulated/wall/r_wall,
/area/blueshield)
"bZm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/command{
name = "Blueshield's Office";
req_access_txt = "67"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/blueshield)
@@ -54625,8 +49040,8 @@
name = "NT Representative's Office";
req_access_txt = "73"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/ntrep)
"bZq" = (
@@ -54635,8 +49050,7 @@
},
/obj/machinery/camera{
c_tag = "Atmospherics - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
dir = 8
@@ -54653,21 +49067,12 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;17"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"bZt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/hallway/primary/central)
@@ -54680,6 +49085,8 @@
"bZw" = (
/obj/machinery/teleport/hub,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -54711,6 +49118,8 @@
name = "Teleporter Access Shutter"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/teleporter{
name = "\improper Teleporter Room"
@@ -54719,8 +49128,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
},
@@ -54729,10 +49142,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -54742,29 +49155,15 @@
"bZD" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Gateway - Access";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/gateway)
-"bZE" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
"bZF" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -54775,12 +49174,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"bZG" = (
@@ -54796,9 +49189,7 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bZH" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -54829,16 +49220,14 @@
"bZL" = (
/obj/machinery/atmospherics/binary/pump{
dir = 0;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
},
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/camera{
c_tag = "Atmospherics - Starboard";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -54852,17 +49241,14 @@
"bZN" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Toxins";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/plasma,
/area/atmos)
"bZO" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bZP" = (
/turf/simulated/wall,
/area/maintenance/portsolar)
@@ -54876,7 +49262,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"bZR" = (
@@ -54885,9 +49270,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -54895,21 +49277,9 @@
"bZS" = (
/turf/simulated/wall/r_wall,
/area/maintenance/portsolar)
-"bZT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- name = "Storage Room";
- req_access_txt = "12"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"bZU" = (
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"bZW" = (
/obj/machinery/newscaster{
pixel_x = -32
@@ -54926,12 +49296,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/gateway)
-"bZY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
"bZZ" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -54940,9 +49304,6 @@
dir = 1;
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/library)
"caa" = (
@@ -54951,32 +49312,18 @@
pixel_y = -24
},
/obj/machinery/camera/autoname{
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/storage/pill_bottle/dice,
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/library)
"cab" = (
/obj/structure/table/wood,
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/wood,
/area/library)
"cac" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -54991,7 +49338,6 @@
"cad" = (
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
- req_access_txt = "0";
req_one_access_txt = "12;37"
},
/obj/structure/disposalpipe/segment{
@@ -55017,8 +49363,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -55037,9 +49388,7 @@
},
/obj/machinery/shower{
dir = 8;
- icon_state = "shower";
- name = "emergency shower";
- tag = "icon-shower (WEST)"
+ name = "emergency shower"
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -55062,9 +49411,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -55072,13 +49418,7 @@
})
"cal" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"can" = (
@@ -55092,9 +49432,6 @@
/area/hallway/primary/central)
"cao" = (
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"cap" = (
@@ -55102,16 +49439,10 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"caq" = (
@@ -55195,15 +49526,6 @@
icon_state = "dark"
},
/area/hallway/primary/central)
-"caB" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
"caC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -55215,6 +49537,8 @@
codes_txt = "patrol;next_patrol=11-Command-Port";
location = "10.2-Aft-Port-Corner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"caD" = (
@@ -55228,14 +49552,10 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"caF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/sign/botany{
pixel_x = 32;
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
@@ -55246,25 +49566,22 @@
/obj/machinery/door/window/eastleft{
dir = 1;
name = "Kitchen Window";
- req_access_txt = "28";
- req_one_access_txt = "0"
+ req_access_txt = "28"
},
/obj/machinery/door/firedoor,
/obj/item/paper,
/obj/machinery/door/window/eastleft{
dir = 2;
name = "Hydroponics Window";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"caH" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -55273,16 +49590,12 @@
/obj/machinery/door/airlock/public/glass{
name = "Locker Room"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/crew_quarters/locker)
"caI" = (
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 1;
name = "Starboard Maintenance APC";
pixel_x = -1;
@@ -55293,22 +49606,17 @@
icon_state = "0-2"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"caJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -55330,7 +49638,6 @@
})
"caL" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -55355,10 +49662,10 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -55366,7 +49673,6 @@
/area/hallway/primary/central)
"caP" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -55386,7 +49692,6 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -55442,14 +49747,7 @@
},
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ req_access_txt = "35"
},
/turf/simulated/floor/plating,
/area/hydroponics)
@@ -55460,9 +49758,7 @@
},
/obj/item/clothing/accessory/stethoscope,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"caX" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -55505,18 +49801,15 @@
},
/obj/machinery/camera{
c_tag = "Kitchen";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/kitchen_machine/grill,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
"cbb" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
@@ -55540,9 +49833,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"cbe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -55553,9 +49843,8 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/locker)
"cbf" = (
@@ -55573,8 +49862,7 @@
"cbg" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter"
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -55618,18 +49906,6 @@
"cbl" = (
/turf/simulated/floor/engine/co2,
/area/atmos)
-"cbm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
"cbn" = (
/obj/structure/table/glass,
/obj/item/book/manual/sop_service{
@@ -55660,19 +49936,17 @@
})
"cbr" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbs" = (
/obj/structure/rack,
/obj/item/weldingtool,
@@ -55681,9 +49955,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbt" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/glass,
@@ -55693,9 +49965,7 @@
"cbu" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbv" = (
/obj/machinery/chem_master/condimaster{
name = "BrewMaster 4000";
@@ -55714,9 +49984,7 @@
/obj/item/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cbx" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
@@ -55736,18 +50004,12 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"cbA" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/unary/vent_pump,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cbC" = (
@@ -55761,6 +50023,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cbD" = (
@@ -55786,6 +50054,12 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cbF" = (
@@ -55813,29 +50087,12 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"cbH" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"cbI" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cbJ" = (
@@ -55844,7 +50101,6 @@
pixel_y = -5
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -55855,15 +50111,17 @@
},
/area/medical/cmo)
"cbK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
@@ -55880,13 +50138,17 @@
/obj/machinery/door/window/westleft{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "greenfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "greenfull"
},
/area/hydroponics)
"cbN" = (
@@ -55907,18 +50169,6 @@
icon_state = "green"
},
/area/hydroponics)
-"cbR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "green"
- },
-/area/hydroponics)
"cbS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -55937,18 +50187,6 @@
},
/turf/simulated/floor/plasteel,
/area/atmos)
-"cbU" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cbW" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -55964,7 +50202,6 @@
"cca" = (
/obj/machinery/camera{
c_tag = "Security Post - Medbay";
- dir = 2;
network = list("SS13","Medbay")
},
/turf/simulated/floor/plasteel{
@@ -55980,6 +50217,7 @@
pixel_y = 24;
req_access_txt = "66"
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -56021,8 +50259,7 @@
"ccg" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8;
- name = "CO2 to Pure";
- on = 0
+ name = "CO2 to Pure"
},
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/structure/window/reinforced{
@@ -56033,8 +50270,7 @@
pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"cch" = (
@@ -56065,22 +50301,25 @@
/obj/effect/landmark{
name = "JoinLateGateway"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"ccm" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/effect/landmark{
name = "JoinLateGateway"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"ccn" = (
@@ -56093,6 +50332,12 @@
codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner";
location = "10.1-Central-from-Aft"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cco" = (
@@ -56105,12 +50350,17 @@
codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape";
location = "8-Central-to-Aft"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ccp" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
@@ -56126,19 +50376,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
-"ccq" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
"ccr" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -56154,6 +50391,8 @@
codes_txt = "patrol;next_patrol=8-Central-to-Aft";
location = "7.5-Starboard-Aft-Corner"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"ccs" = (
@@ -56176,9 +50415,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ccu" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56189,6 +50426,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"ccv" = (
@@ -56201,30 +50444,12 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hydroponics)
-"ccw" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/quartermaster/sorting{
- name = "\improper Warehouse"
- })
"ccx" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ccz" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -56237,8 +50462,12 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"ccA" = (
@@ -56247,9 +50476,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -56268,9 +50494,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -56289,11 +50512,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;37;25;28"
},
/turf/simulated/floor/plating,
@@ -56306,16 +50525,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"ccE" = (
@@ -56327,13 +50542,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -56345,32 +50553,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Aft-Port Corner";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"ccG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -56381,16 +50570,10 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"ccI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -56399,134 +50582,31 @@
"ccJ" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
-"ccK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"ccL" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"ccM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"ccN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
-"ccO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"ccP" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"ccQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"ccR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
"ccS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -56543,172 +50623,77 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"ccU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
-"ccV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "greencorner"
- },
-/area/hallway/primary/central)
"ccW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "green"
},
/area/hallway/primary/central)
-"ccX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "greenfull"
- },
-/area/hallway/primary/central)
"ccY" = (
/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westright{
dir = 4;
name = "Hydroponics Desk";
- req_access_txt = "0";
req_one_access_txt = "30;35"
},
/obj/item/folder/white,
/obj/item/folder/white,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "greenfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "greenfull"
},
/area/hydroponics)
"ccZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/chair/office/dark{
dir = 8
},
/obj/effect/landmark/start{
name = "Botanist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "green"
},
/area/hydroponics)
"cda" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "green"
},
/area/hydroponics)
"cdb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "green"
},
/area/hydroponics)
-"cdc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
-"cdd" = (
-/obj/machinery/hydroponics/constructable,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hydroponics)
"cde" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
},
/area/hydroponics)
-"cdf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
- },
-/area/hydroponics)
"cdh" = (
/obj/machinery/hydroponics/constructable,
/turf/simulated/floor/plasteel,
@@ -56718,16 +50703,12 @@
dir = 2;
sortType = 20
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cdj" = (
@@ -56739,37 +50720,25 @@
},
/obj/machinery/camera{
c_tag = "Aft Port Solar Maintenance";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"cdk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/machinery/firealarm{
pixel_y = 29
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
},
/area/hydroponics)
"cdl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow/partial{
- dir = 1;
- icon_state = "3"
+ dir = 1
},
/obj/effect/decal/warning_stripes/arrow{
- dir = 1;
- icon_state = "4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -56777,9 +50746,6 @@
},
/area/hallway/primary/central)
"cdm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -56789,9 +50755,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cdn" = (
@@ -56801,20 +50764,6 @@
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"cdo" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cdp" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -56824,30 +50773,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cdq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -56870,7 +50806,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
@@ -56884,15 +50819,9 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/atmos)
"cdt" = (
@@ -56901,16 +50830,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
@@ -56922,15 +50845,9 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"cdv" = (
@@ -56939,16 +50856,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"cdw" = (
@@ -56957,12 +50868,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/atmos)
"cdx" = (
@@ -56971,10 +50876,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
"cdy" = (
@@ -56987,10 +50890,6 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"cdz" = (
@@ -57002,21 +50901,6 @@
},
/turf/simulated/floor/engine/co2,
/area/atmos)
-"cdA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cdB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -57026,16 +50910,20 @@
/obj/effect/landmark{
name = "JoinLateGateway"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/gateway)
"cdC" = (
/obj/machinery/power/solar_control{
id = "aftport";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control"
},
/obj/structure/cable{
d2 = 4;
@@ -57046,9 +50934,6 @@
/area/maintenance/portsolar)
"cdD" = (
/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
@@ -57056,22 +50941,14 @@
})
"cdE" = (
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/extinguisher_cabinet{
pixel_y = -30
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Aft-Starboard Corner";
- dir = 1;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/central)
@@ -57095,9 +50972,7 @@
/obj/structure/closet,
/obj/item/flashlight,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdI" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/structure/extinguisher_cabinet{
@@ -57112,24 +50987,11 @@
/obj/structure/table,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdK" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cdL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdM" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor{
@@ -57146,16 +51008,12 @@
"cdN" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdO" = (
/obj/structure/girder,
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cdP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -57176,8 +51034,7 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/atmos)
"cdR" = (
@@ -57193,8 +51050,7 @@
"cdS" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - CO2";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/co2,
/area/atmos)
@@ -57208,13 +51064,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -57232,8 +51081,7 @@
id_tag = "escapepodbay"
},
/obj/structure/spacepoddoor{
- dir = 4;
- icon_state = "n_beam"
+ dir = 4
},
/turf/simulated/floor/engine,
/area/hallway/secondary/entry{
@@ -57251,10 +51099,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
@@ -57263,8 +51107,7 @@
"cdZ" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Aft-Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -57281,32 +51124,20 @@
"ced" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cee" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cef" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway - Aft-Starboard";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "purplecorner"
- },
-/area/hallway/primary/central)
-"ceg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/central)
@@ -57318,7 +51149,6 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/central)
@@ -57329,11 +51159,9 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/central)
@@ -57346,34 +51174,20 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cek" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;7;35;8;47"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cel" = (
/obj/machinery/door/airlock/medical{
name = "Paramedic"
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -57386,13 +51200,10 @@
"cem" = (
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cen" = (
/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/book/manual/hydroponics_pod_people,
/obj/item/paper/hydroponics,
@@ -57441,6 +51252,8 @@
})
"ces" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
@@ -57450,8 +51263,7 @@
/obj/effect/landmark/start{
name = "Botanist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
@@ -57460,9 +51272,7 @@
"ceu" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cev" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/item/storage/backpack/satchel_hyd,
@@ -57474,15 +51284,14 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/landmark/start{
name = "Botanist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
},
@@ -57493,9 +51302,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -57503,12 +51309,7 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -57518,9 +51319,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -57528,15 +51326,9 @@
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ceA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -57546,29 +51338,23 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ceD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceE" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceF" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plasteel{
@@ -57591,6 +51377,9 @@
dir = 10;
initialize_directions = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"ceK" = (
@@ -57603,13 +51392,6 @@
},
/area/atmos)
"ceL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -57622,24 +51404,22 @@
/area/medical/paramedic)
"ceM" = (
/obj/structure/spacepoddoor{
- dir = 4;
- icon_state = "n_beam"
+ dir = 4
},
/turf/simulated/floor/engine,
/area/hallway/secondary/entry{
name = "Arrivals"
})
"ceN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceO" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -57648,9 +51428,7 @@
},
/obj/item/poster/random_contraband,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceP" = (
/obj/machinery/seed_extractor,
/obj/effect/decal/warning_stripes/northwest,
@@ -57684,26 +51462,14 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"ceS" = (
/obj/structure/bed/amb_trolley,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -57715,14 +51481,10 @@
icon_state = "0-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceU" = (
/turf/simulated/floor/mech_bay_recharge_floor,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceV" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable/yellow{
@@ -57730,9 +51492,7 @@
icon_state = "0-2"
},
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ceW" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -57758,9 +51518,7 @@
dir = 5;
icon_state = "brown"
},
-/area/quartermaster/office{
- name = "\improper Cargo Office"
- })
+/area/quartermaster/office)
"ceY" = (
/obj/machinery/alarm{
pixel_y = 23
@@ -57782,17 +51540,11 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;25;28"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfa" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
@@ -57812,18 +51564,11 @@
/obj/item/clothing/mask/surgical,
/obj/item/clothing/mask/breath/medical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/item/cigbutt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfd" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -57848,8 +51593,7 @@
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
@@ -57898,8 +51642,7 @@
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "applebush";
- layer = 4.1;
- tag = "icon-applebush"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -57938,12 +51681,10 @@
pixel_x = 27
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera/autoname{
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/table/glass,
/obj/effect/decal/warning_stripes/west,
@@ -57970,9 +51711,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfn" = (
/obj/structure/table/wood,
/obj/item/paper_bin{
@@ -58004,15 +51743,14 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cfq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -58021,9 +51759,7 @@
pixel_y = 6
},
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfs" = (
/obj/structure/closet/secure_closet/medical3,
/obj/structure/sign/nosmoking_2{
@@ -58039,21 +51775,13 @@
"cft" = (
/obj/structure/sign/science,
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfu" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfv" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -58063,18 +51791,12 @@
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfw" = (
/turf/simulated/wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cfx" = (
/obj/effect/landmark/start{
name = "Paramedic"
@@ -58092,13 +51814,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cfz" = (
@@ -58140,7 +51856,6 @@
"cfC" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -58161,14 +51876,8 @@
"cfE" = (
/obj/machinery/constructable_frame,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
@@ -58195,6 +51904,26 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
+"cfI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "browncorner"
+ },
+/area/hallway/primary/central)
+"cfJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
"cfK" = (
/turf/simulated/wall,
/area/maintenance/incinerator)
@@ -58203,13 +51932,11 @@
name = "Incinerator Access";
req_access_txt = "12;24"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/incinerator)
"cfM" = (
@@ -58248,13 +51975,11 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"cfR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
},
@@ -58279,8 +52004,7 @@
},
/obj/machinery/camera{
c_tag = "Atmospherics - Port-Aft";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/turf/simulated/floor/plasteel{
@@ -58293,11 +52017,8 @@
name = "Storage Room";
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfV" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -58305,41 +52026,28 @@
icon_state = "1-2"
},
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfW" = (
/turf/simulated/floor/bluegrid,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfX" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfY" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cfZ" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cga" = (
/obj/machinery/light/small{
dir = 1
@@ -58347,20 +52055,15 @@
/obj/structure/mopbucket,
/obj/item/mop,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgb" = (
/obj/item/storage/toolbox/emergency,
/obj/item/hand_labeler,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cgc" = (
/obj/machinery/atmospherics/trinary/mixer{
- dir = 2;
node1_concentration = 0.8;
node2_concentration = 0.2;
on = 1;
@@ -58375,14 +52078,13 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Hydroponics Backroom";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -58399,20 +52101,6 @@
name = "Medbay Storage"
})
"cgf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"cgg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -58427,18 +52115,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cgi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -58456,17 +52139,6 @@
icon_state = "caution"
},
/area/atmos)
-"cgj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
"cgk" = (
/obj/structure/cable{
d1 = 1;
@@ -58480,10 +52152,10 @@
dir = 4
},
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -58517,16 +52189,14 @@
pixel_x = -32
},
/obj/machinery/photocopier,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/ntrep)
"cgr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/paramedic)
@@ -58550,9 +52220,7 @@
},
/obj/item/pen/invisible,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/library)
"cgu" = (
@@ -58566,7 +52234,6 @@
pixel_y = 5
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -58579,16 +52246,13 @@
},
/obj/machinery/camera{
c_tag = "Research Division - Lobby";
- dir = 2;
network = list("SS13","RD")
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgv" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -58617,7 +52281,6 @@
/area/hallway/primary/aft)
"cgy" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -58629,9 +52292,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgA" = (
/obj/structure/table,
/obj/item/paper/pamphlet,
@@ -58639,9 +52300,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgB" = (
/obj/structure/chair,
/obj/effect/landmark/start{
@@ -58651,27 +52310,14 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cgC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgE" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgF" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
@@ -58689,9 +52335,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgG" = (
/obj/structure/table,
/obj/item/stack/sheet/glass,
@@ -58704,9 +52348,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cgH" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -58742,7 +52384,6 @@
/area/hallway/primary/central)
"cgL" = (
/obj/machinery/sparker{
- dir = 2;
id = "mixingsparker";
pixel_x = 25
},
@@ -58766,7 +52407,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -58862,7 +52502,6 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/hydroponics)
@@ -58915,9 +52554,6 @@
},
/area/atmos)
"cgY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -58926,6 +52562,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -58937,41 +52576,14 @@
/area/toxins/explab)
"chb" = (
/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"chc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"chd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"che" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"chf" = (
/obj/machinery/power/smes{
capacity = 9e+006;
@@ -58985,7 +52597,6 @@
/area/maintenance/incinerator)
"chg" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -30
},
@@ -58999,9 +52610,7 @@
/area/atmos)
"chh" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 10;
- icon_state = "intact";
- tag = "icon-intact (SOUTHWEST)"
+ dir = 10
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -59025,16 +52634,9 @@
},
/turf/simulated/floor/plasteel,
/area/atmos)
-"chl" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
"chm" = (
/obj/machinery/light,
/obj/machinery/power/apc{
- dir = 2;
name = "Hydroponics APC";
pixel_y = -28
},
@@ -59064,9 +52666,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
@@ -59077,9 +52676,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -59088,14 +52684,6 @@
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"chq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"chr" = (
/obj/item/reagent_containers/spray/plantbgone{
pixel_y = 3
@@ -59129,9 +52717,6 @@
},
/area/maintenance/incinerator)
"cht" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light,
/obj/machinery/door_control{
id = "paramedic";
@@ -59140,9 +52725,6 @@
pixel_y = -24;
req_access_txt = "66"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -59153,14 +52735,6 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"chv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"chw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59168,37 +52742,26 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chx" = (
/obj/structure/closet,
/obj/item/clothing/accessory/stethoscope,
/obj/item/hemostat,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chy" = (
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chz" = (
/obj/structure/closet/crate,
/obj/item/coin/silver,
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59207,16 +52770,10 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-j1s";
sortType = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chB" = (
/obj/item/cigbutt,
/obj/structure/disposalpipe/segment{
@@ -59225,21 +52782,16 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chD" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59249,13 +52801,7 @@
/obj/structure/disposalpipe/sortjunction{
sortType = 21
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"chE" = (
@@ -59272,35 +52818,16 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"chF" = (
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"chG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"chH" = (
/obj/machinery/door/airlock{
name = "Medbay Emergency Storage";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/medical/medbay2{
name = "Medbay Storage"
})
"chI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -59308,23 +52835,10 @@
/area/medical/medbay2{
name = "Medbay Storage"
})
-"chJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
"chK" = (
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -59336,15 +52850,11 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -59378,17 +52888,16 @@
},
/area/hallway/primary/central)
"chP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chQ" = (
/obj/machinery/light{
dir = 1
@@ -59423,9 +52932,7 @@
},
/obj/machinery/light_construct,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"chT" = (
/obj/structure/noticeboard{
pixel_y = 32
@@ -59453,8 +52960,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -59465,16 +52971,7 @@
})
"chV" = (
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/paramedic)
@@ -59483,7 +52980,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/paramedic)
@@ -59500,8 +52996,6 @@
/area/maintenance/incinerator)
"chY" = (
/obj/machinery/door/window/northleft{
- dir = 1;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
@@ -59531,30 +53025,14 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cic" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cid" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cie" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -59562,20 +53040,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cif" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cig" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -59587,44 +53052,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cii" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cij" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/atmos)
"cik" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"cil" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -59654,24 +53093,18 @@
name = "Medbay Storage"
})
"cin" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cio" = (
/obj/machinery/vending/hydroseeds{
slogan_delay = 700
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cip" = (
@@ -59681,22 +53114,19 @@
/obj/item/paper/hydroponics,
/obj/machinery/camera{
c_tag = "Hydroponics - Foyer";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/radio/intercom{
pixel_y = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"ciq" = (
/obj/machinery/vending/hydronutrients,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/primary/central)
"cir" = (
@@ -59728,8 +53158,6 @@
pixel_x = -1
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/incinerator)
"civ" = (
@@ -59740,8 +53168,6 @@
dir = 8
},
/obj/machinery/door/window/northleft{
- dir = 1;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
@@ -59758,14 +53184,9 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciy" = (
/obj/item/stack/sheet/cardboard,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -59783,9 +53204,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciA" = (
/obj/machinery/navbeacon{
codes_txt = "delivery";
@@ -59826,8 +53245,6 @@
dir = 4
},
/obj/machinery/door/window/northleft{
- dir = 1;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
@@ -59882,8 +53299,6 @@
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -59900,13 +53315,11 @@
icon_state = "0-8"
},
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/machinery/alarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
dir = 8;
- icon_state = "alarm0";
locked = 0;
name = "all-access air alarm";
pixel_x = 24;
@@ -59924,9 +53337,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ciL" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -60099,14 +53510,11 @@
},
/area/atmos)
"ciX" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whiteblue"
@@ -60143,13 +53551,11 @@
"cjb" = (
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
name = "glass door";
req_access_txt = "24"
},
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
name = "glass door";
req_access_txt = "24"
},
@@ -60159,19 +53565,6 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/solar/port)
-"cje" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cjf" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/decal/warning_stripes/north,
@@ -60182,24 +53575,17 @@
name = "Storage Room";
req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjh" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cji" = (
@@ -60207,24 +53593,16 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjj" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cjk" = (
@@ -60234,9 +53612,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjl" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60244,13 +53620,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjm" = (
/obj/structure/sign/directions/evac{
pixel_y = 6
@@ -60260,18 +53631,14 @@
"cjn" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjo" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjp" = (
/obj/effect/landmark{
name = "xeno_spawn";
@@ -60279,9 +53646,7 @@
},
/obj/structure/closet/firecloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjq" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8;
@@ -60308,9 +53673,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjs" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -60323,9 +53686,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjt" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -60344,13 +53705,8 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cjv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Cargo Technician"
},
@@ -60365,9 +53721,6 @@
/obj/machinery/alarm{
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -60379,15 +53732,8 @@
"cjx" = (
/obj/machinery/camera{
c_tag = "Security Post - Medbay";
- dir = 2;
network = list("SS13","Medbay")
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -60413,15 +53759,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
@@ -60505,12 +53848,6 @@
icon_state = "whiteblue"
},
/area/medical/reception)
-"cjG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cjH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60526,36 +53863,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"cjJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "purplecorner"
- },
-/area/hallway/primary/aft)
-"cjK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
"cjL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -60566,18 +53881,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -60588,55 +53898,31 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjN" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cjO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue"
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
-"cjP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
@@ -60664,19 +53950,10 @@
/area/medical/medbay2{
name = "Medbay Storage"
})
-"cjU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cjV" = (
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
- req_access_txt = "35";
- req_one_access_txt = "0"
+ req_access_txt = "35"
},
/turf/simulated/floor/plating,
/area/hydroponics)
@@ -60741,17 +54018,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/reception)
"cke" = (
/obj/machinery/sparker{
- dir = 2;
id = "mixingsparker";
pixel_x = 25
},
@@ -60767,17 +54039,11 @@
"ckf" = (
/obj/structure/bed/roller,
/obj/item/radio/intercom{
- broadcasting = 0;
frequency = 1485;
- listening = 1;
name = "Station Intercom (Medbay)";
pixel_y = -30
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -60830,8 +54096,7 @@
},
/obj/machinery/camera{
c_tag = "Atmospherics - Starboard Aft";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -60883,14 +54148,13 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckt" = (
/obj/machinery/camera{
c_tag = "Medbay Break Room";
@@ -60898,7 +54162,6 @@
network = list("SS13","Medbay")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -60917,33 +54180,25 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckw" = (
/obj/structure/girder,
/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckx" = (
/obj/structure/table,
/obj/item/stack/medical/bruise_pack,
@@ -60980,9 +54235,7 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckB" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
@@ -60997,40 +54250,29 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckD" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -30
},
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckF" = (
/obj/item/storage/firstaid/regular{
pixel_x = 3;
@@ -61053,21 +54295,6 @@
/area/medical/medbay2{
name = "Medbay Storage"
})
-"ckG" = (
-/obj/machinery/door/airlock/medical/glass{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "5"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay2{
- name = "Medbay Storage"
- })
"ckH" = (
/obj/structure/rack,
/obj/item/screwdriver{
@@ -61079,9 +54306,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckI" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -61102,12 +54327,9 @@
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61127,6 +54349,9 @@
},
/obj/item/reagent_containers/spray/cleaner,
/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61157,11 +54382,12 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61177,11 +54403,11 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -61190,15 +54416,12 @@
"ckP" = (
/obj/item/healthanalyzer,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ckQ" = (
/obj/structure/chair{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -61208,12 +54431,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61224,22 +54441,6 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/hydroponics)
-"ckT" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"ckU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -61256,19 +54457,6 @@
icon_state = "white"
},
/area/medical/reception)
-"ckV" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
"ckX" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -61277,12 +54465,9 @@
maxcharge = 15000
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckY" = (
/obj/structure/table,
/obj/item/paicard,
@@ -61291,84 +54476,64 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ckZ" = (
/obj/structure/table,
/obj/item/stock_parts/cell/potato,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cla" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clb" = (
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"clc" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cld" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cle" = (
/obj/structure/cable{
d1 = 1;
@@ -61384,7 +54549,6 @@
/obj/structure/table,
/obj/item/soap/nanotrasen,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -61393,7 +54557,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -61416,10 +54579,6 @@
pixel_x = -23;
pixel_y = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whiteblue"
@@ -61449,16 +54608,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cll" = (
/obj/item/wrench,
/obj/item/clothing/suit/apron,
@@ -61473,7 +54627,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -61482,32 +54635,23 @@
opacity = 0
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cln" = (
/obj/structure/closet,
/obj/item/flashlight,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clo" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61516,9 +54660,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clp" = (
/obj/structure/cable/yellow,
/obj/effect/spawner/window/reinforced,
@@ -61530,9 +54672,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
@@ -61543,9 +54682,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -61569,7 +54705,6 @@
pixel_y = -3
},
/obj/machinery/power/apc{
- dir = 2;
name = "Medbay Storage APC";
pixel_y = -24
},
@@ -61589,25 +54724,7 @@
/area/medical/medbay2{
name = "Medbay Storage"
})
-"clt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"clu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -61615,33 +54732,7 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"clv" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Storage Room";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"clw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cly" = (
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -61663,9 +54754,7 @@
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"clB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"clC" = (
@@ -61684,13 +54773,7 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61712,11 +54795,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clH" = (
/obj/structure/window/reinforced{
dir = 4
@@ -61727,7 +54807,6 @@
"clI" = (
/obj/item/radio/intercom{
dir = 8;
- name = "station intercom (General)";
pixel_x = -28
},
/obj/machinery/optable,
@@ -61745,9 +54824,7 @@
req_access_txt = "13"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -61757,7 +54834,7 @@
},
/area/medical/reception)
"clL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -61768,16 +54845,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"clN" = (
/obj/item/storage/box,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clO" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -61787,17 +54861,11 @@
"clP" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clQ" = (
/obj/effect/landmark/start{
name = "Coroner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -61810,30 +54878,21 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"clS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/explab)
"clT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clU" = (
/obj/structure/table,
/obj/item/folder/white,
@@ -61843,9 +54902,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"clV" = (
/obj/structure/window/reinforced{
dir = 4
@@ -61881,7 +54938,6 @@
"clX" = (
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
@@ -61894,15 +54950,14 @@
},
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
name = "Medbay Storage"
})
"clZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
@@ -61911,7 +54966,6 @@
"cma" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/turf/simulated/floor/plasteel{
@@ -61947,7 +55001,6 @@
pixel_x = 26
},
/obj/structure/cable/yellow{
- d1 = 0;
d2 = 2;
icon_state = "0-2"
},
@@ -61961,21 +55014,14 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- name = "emergency shower";
- tag = "icon-shower (WEST)"
+ name = "emergency shower"
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -61983,9 +55029,7 @@
"cmi" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmj" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -61998,13 +55042,11 @@
/obj/item/folder/white,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cmm" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -62015,15 +55057,6 @@
"cmo" = (
/turf/simulated/wall/r_wall,
/area/toxins/lab)
-"cmp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cmq" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -62042,14 +55075,11 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitehall"
},
/area/medical/reception)
"cmt" = (
-/obj/machinery/ai_status_display{
- pixel_y = 0
- },
+/obj/machinery/ai_status_display,
/turf/simulated/wall,
/area/medical/reception)
"cmu" = (
@@ -62057,12 +55087,7 @@
name = "Coroner Office";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62079,6 +55104,12 @@
pixel_y = -7
},
/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -62090,13 +55121,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62114,50 +55139,23 @@
name = "old sink";
pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmz" = (
/turf/simulated/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmA" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "7";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
+ req_access_txt = "7"
},
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmB" = (
/turf/simulated/wall/r_wall,
/area/toxins/explab)
-"cmC" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cmD" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/structure/table/glass,
@@ -62180,8 +55178,7 @@
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -62213,8 +55210,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -62231,8 +55227,7 @@
"cmI" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 25;
- req_access_txt = "0"
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -62248,9 +55243,7 @@
dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmK" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -62304,34 +55297,28 @@
/obj/machinery/door/airlock/research{
id_tag = "ResearchFoyer";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cmS" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -62346,42 +55333,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/fore)
-"cmV" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cmW" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/spawner/lootdrop{
- loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
- name = "maint grille or trash spawner"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cmX" = (
/turf/simulated/wall,
/area/medical/exam_room)
@@ -62395,9 +55346,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cmZ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62407,26 +55356,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cna" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62440,12 +55378,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62458,6 +55390,12 @@
name = "Coroner"
},
/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62478,19 +55416,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
"cng" = (
/obj/structure/noticeboard{
- desc = "A board for pinning important notices upon.";
- name = "notice board";
pixel_y = 31
},
/turf/simulated/floor/plasteel{
@@ -62512,12 +55443,9 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnj" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -62551,8 +55479,10 @@
})
"cnl" = (
/obj/structure/bed/roller,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -62569,23 +55499,19 @@
pixel_y = -28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
"cnn" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
"cno" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -62593,8 +55519,7 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cnq" = (
@@ -62606,8 +55531,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cnr" = (
@@ -62651,7 +55575,6 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -62696,19 +55619,15 @@
/mob/living/simple_animal/pet/dog/corgi/borgi,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnz" = (
/obj/structure/chair/office/light{
dir = 1;
pixel_y = 3
},
/obj/machinery/door_control{
- dir = 2;
id = "rndshuttersup";
name = "Shutters Control Button";
pixel_x = 26;
@@ -62716,8 +55635,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"cnA" = (
@@ -62726,23 +55644,18 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnB" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -62751,7 +55664,12 @@
},
/area/toxins/lab)
"cnC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62767,7 +55685,6 @@
"cnF" = (
/obj/machinery/vending/cigarette,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
@@ -62775,9 +55692,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnG" = (
/obj/structure/sign/double/map/right{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -62788,14 +55703,12 @@
pixel_y = 7
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnH" = (
/obj/item/storage/toolbox/emergency,
/obj/item/radio/intercom{
@@ -62810,12 +55723,9 @@
"cnI" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cnJ" = (
/obj/machinery/light/small,
/obj/machinery/computer/security/telescreen{
@@ -62836,7 +55746,6 @@
},
/obj/machinery/camera{
c_tag = "Telescience - Test Chamber";
- dir = 2;
network = list("SS13","RD")
},
/obj/machinery/light{
@@ -62870,23 +55779,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cnP" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -62894,16 +55795,10 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cnR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -62914,6 +55809,9 @@
pixel_y = 5
},
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -62926,14 +55824,12 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "whitepurple";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
"cnU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/obj/structure/table/glass,
/obj/item/extinguisher{
pixel_x = -5;
@@ -62967,7 +55863,6 @@
"cnW" = (
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology{
@@ -62982,7 +55877,6 @@
"cnZ" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_in_meter";
name = "Mixed Air Tank In"
},
@@ -62992,7 +55886,6 @@
"coa" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/machinery/meter{
- frequency = 1443;
id = "mair_out_meter";
name = "Mixed Air Tank Out"
},
@@ -63019,58 +55912,52 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coe" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cof" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cog" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coh" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -63081,15 +55968,8 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coi" = (
/obj/machinery/bodyscanner,
/turf/simulated/floor/plasteel{
@@ -63109,8 +55989,7 @@
dir = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -63122,6 +56001,9 @@
dir = 4
},
/obj/machinery/photocopier,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -63177,14 +56059,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 0;
- pressure_checks = 2;
- pump_direction = 0
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -63206,9 +56082,7 @@
dir = 4
},
/obj/structure/morgue{
- dir = 8;
- icon_state = "morgue1";
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -63238,7 +56112,6 @@
name = "Turbine Access Console";
pixel_x = 6;
pixel_y = -26;
- req_access_txt = "0";
tag_exterior_door = "gas_turbine_exterior";
tag_interior_door = "gas_turbine_interior"
},
@@ -63255,10 +56128,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -63288,9 +56157,7 @@
pixel_y = 32
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cox" = (
/obj/structure/table,
/obj/machinery/door/window/northright{
@@ -63299,6 +56166,8 @@
},
/obj/item/folder/white,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -63319,8 +56188,7 @@
/area/medical/surgery1)
"coz" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63364,9 +56232,7 @@
"coD" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"coE" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63425,10 +56291,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -63436,8 +56298,7 @@
"coL" = (
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63472,6 +56333,7 @@
"coP" = (
/obj/machinery/r_n_d/protolathe,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -63492,31 +56354,22 @@
/area/medical/reception)
"coS" = (
/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coU" = (
/obj/item/cigbutt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coV" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/vending/cola,
@@ -63524,14 +56377,8 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"coW" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/mob/living/simple_animal/pet/dog/pug{
name = "Pugley IV";
real_name = "Pugley IV"
@@ -63548,22 +56395,7 @@
/obj/machinery/r_n_d/experimentor,
/turf/simulated/floor/engine,
/area/toxins/explab)
-"coZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/engine,
-/area/toxins/explab)
-"cpa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/engine,
-/area/toxins/explab)
"cpb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -63727,9 +56559,7 @@
/turf/simulated/floor/engine/air,
/area/atmos)
"cpq" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 2
- },
+/obj/machinery/atmospherics/binary/pump,
/turf/simulated/wall/r_wall,
/area/atmos)
"cpr" = (
@@ -63752,9 +56582,7 @@
"cpu" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpv" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -63762,12 +56590,9 @@
pixel_y = 28
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken3";
- tag = "icon-wood-broken3"
+ icon_state = "wood-broken3"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpw" = (
/obj/structure/rack,
/obj/item/reagent_containers/food/drinks/bottle/vodka{
@@ -63780,9 +56605,7 @@
},
/obj/item/reagent_containers/food/drinks/bottle/whiskey,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpx" = (
/obj/machinery/door_control{
desc = "A remote control switch for the medbay foyer.";
@@ -63799,9 +56622,7 @@
"cpy" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpz" = (
/obj/machinery/door_control{
id = "acutesep";
@@ -63818,9 +56639,7 @@
"cpA" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpB" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
@@ -63855,13 +56674,11 @@
name = "Medbay Storage";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -63933,9 +56750,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = "MedbayFoyer";
@@ -63943,7 +56757,6 @@
req_access_txt = "5"
},
/obj/effect/mapping_helpers/airlock/unres,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -63982,8 +56795,7 @@
/obj/structure/table,
/obj/machinery/computer/guestpass,
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -64003,6 +56815,8 @@
dir = 1;
pixel_y = 3
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -64038,28 +56852,17 @@
pixel_y = 2
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cpT" = (
/obj/structure/chair/stool,
/obj/machinery/newscaster{
pixel_x = -30
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cpU" = (
/obj/structure/closet/secure_closet/medical2,
/turf/simulated/floor/plasteel{
@@ -64135,6 +56938,7 @@
/turf/simulated/floor/engine,
/area/maintenance/incinerator)
"cqb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -64181,7 +56985,6 @@
name = "Scientist"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -64192,6 +56995,7 @@
},
/obj/item/reagent_containers/glass/beaker/sulphuric,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -64199,16 +57003,14 @@
"cqi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqj" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -64236,7 +57038,6 @@
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -64259,9 +57060,7 @@
/obj/item/storage/toolbox/emergency,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqp" = (
/obj/machinery/light/small,
/obj/item/stock_parts/cell/high{
@@ -64269,9 +57068,7 @@
maxcharge = 15000
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqq" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64279,12 +57076,9 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/item/flashlight,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqr" = (
/obj/machinery/atmospherics/binary/pump{
on = 1
@@ -64312,31 +57106,15 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/item/cigbutt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cqt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqv" = (
/obj/machinery/computer/rdconsole/core,
/obj/machinery/alarm{
@@ -64349,7 +57127,6 @@
"cqw" = (
/obj/machinery/vending/coffee,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -64357,55 +57134,32 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cqx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/engine,
-/area/toxins/explab)
-"cqz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/engine,
-/area/toxins/explab)
+/area/medical/research)
"cqB" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/closet/firecloset,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cqC" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/obj/item/shard,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqE" = (
/obj/structure/table,
/obj/item/storage/toolbox/emergency,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqF" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -64415,9 +57169,7 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/cleanable/blood/gibs/limb,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqG" = (
/obj/item/reagent_containers/glass/bottle/toxin{
pixel_x = 4;
@@ -64429,9 +57181,7 @@
pixel_y = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqH" = (
/obj/structure/table,
/obj/item/reagent_containers/food/drinks/drinkingglass{
@@ -64451,9 +57201,7 @@
/obj/item/reagent_containers/syringe,
/obj/item/reagent_containers/syringe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqI" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -64505,8 +57253,8 @@
name = "Test Chamber Blast Doors";
pixel_y = -25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/engine,
/area/toxins/explab)
@@ -64539,8 +57287,7 @@
"cqS" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - N2";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/n2,
/area/atmos)
@@ -64564,7 +57311,12 @@
"cqV" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/simulated/floor/plasteel{
name = "vacuum floor";
@@ -64604,45 +57356,29 @@
req_access_txt = "25"
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cqZ" = (
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cra" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crb" = (
/obj/item/reagent_containers/glass/rag,
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- icon_state = "wood-broken4";
- tag = "icon-wood-broken4"
+ icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crc" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken5";
- tag = "icon-wood-broken5"
+ icon_state = "wood-broken5"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crd" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -64650,7 +57386,6 @@
"crf" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "acutesep";
name = "Acute Separation Privacy Shutters";
@@ -64658,8 +57393,7 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"crh" = (
@@ -64679,8 +57413,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"crj" = (
@@ -64689,8 +57422,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -64699,8 +57430,7 @@
"crl" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - O2";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/o2,
/area/atmos)
@@ -64717,8 +57447,7 @@
"crq" = (
/obj/machinery/camera{
c_tag = "Atmospherics Tank - Air";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/engine/air,
/area/atmos)
@@ -64748,15 +57477,6 @@
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"crv" = (
-/obj/structure/closet/firecloset,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"crx" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -64768,8 +57488,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -64783,9 +57501,19 @@
pixel_x = 30
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
+"crz" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"crA" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -64810,6 +57538,9 @@
},
/area/medical/reception)
"crC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -64843,9 +57574,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crG" = (
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
@@ -64865,15 +57594,13 @@
"crI" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway - Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -64881,26 +57608,25 @@
/obj/structure/disposalpipe/segment,
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crK" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/lab)
"crL" = (
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -64914,7 +57640,6 @@
/area/toxins/lab)
"crN" = (
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -64929,15 +57654,12 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crP" = (
/obj/structure/sign/chemistry{
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -64950,36 +57672,25 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crR" = (
/obj/structure/closet/crate,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
/obj/item/assembly/infra,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crS" = (
/obj/structure/plasticflaps{
opacity = 1
},
/obj/machinery/navbeacon{
codes_txt = "delivery";
- dir = 2;
location = "Research Division"
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crT" = (
/obj/machinery/camera{
c_tag = "Research and Development";
@@ -65004,9 +57715,7 @@
/area/toxins/lab)
"crU" = (
/turf/simulated/wall/r_wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"crV" = (
/obj/item/retractor,
/obj/item/cautery,
@@ -65023,8 +57732,10 @@
name = "Station Intercom (Medbay)";
pixel_y = -30
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -65036,39 +57747,35 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"crZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65082,14 +57789,14 @@
dir = 1;
network = list("SS13","RD")
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csb" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -65099,9 +57806,7 @@
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csc" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -65179,27 +57884,28 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csh" = (
/obj/machinery/door/airlock/maintenance{
icon_state = "door_closed";
- locked = 0;
name = "Storage Room";
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csi" = (
/obj/item/stack/sheet/glass{
amount = 50;
@@ -65220,30 +57926,27 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csk" = (
/obj/structure/rack,
/obj/item/clothing/suit/apron,
/obj/item/clothing/mask/surgical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csl" = (
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
pixel_x = -4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csm" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable/yellow,
@@ -65266,9 +57969,7 @@
/obj/item/stack/packageWrap,
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cso" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment,
@@ -65314,15 +58015,11 @@
},
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csw" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csx" = (
/obj/machinery/light,
/obj/machinery/door_control{
@@ -65332,11 +58029,7 @@
normaldoorcontrol = 1;
pixel_y = -26
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -65346,26 +58039,20 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"csz" = (
/obj/machinery/door/airlock/maintenance{
name = "Experimentation Lab Maintenance";
req_access_txt = "8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/toxins/explab)
"csA" = (
@@ -65413,8 +58100,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 4;
@@ -65446,17 +58132,15 @@
name = "\improper Secure Lab"
})
"csE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -65487,10 +58171,6 @@
name = "\improper Secure Lab"
})
"csG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65499,6 +58179,9 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -65507,9 +58190,6 @@
},
/area/medical/exam_room)
"csH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65518,6 +58198,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -65526,16 +58209,12 @@
"csI" = (
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "acutesep";
name = "Acute Separation Privacy Shutters";
opacity = 0
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65544,9 +58223,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"csJ" = (
@@ -65611,10 +58292,6 @@
name = "\improper Secure Lab"
})
"csN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65626,14 +58303,14 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/exam_room)
"csO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65642,6 +58319,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -65657,9 +58337,6 @@
name = "Acute 1 Privacy Shutters";
opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65668,9 +58345,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"csQ" = (
@@ -65689,22 +58368,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
-"csS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -65713,14 +58380,12 @@
/area/medical/reception)
"csT" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/science{
pixel_x = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -65731,8 +58396,7 @@
pixel_x = -28
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -65745,6 +58409,10 @@
pixel_y = 6
},
/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -65756,8 +58424,7 @@
/obj/item/stock_parts/scanning_module,
/obj/item/stock_parts/scanning_module,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/sign/nosmoking_2{
pixel_x = 30
@@ -65780,40 +58447,32 @@
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"csZ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Division";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cta" = (
/obj/machinery/door/window/westleft{
dir = 2;
@@ -65822,13 +58481,10 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctb" = (
/obj/machinery/door/airlock{
name = "Research Emergency Storage";
- req_access_txt = "0";
req_one_access_txt = "47"
},
/obj/structure/cable/yellow{
@@ -65837,30 +58493,23 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctc" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Break Room";
- req_access_txt = "0";
req_one_access_txt = "47"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cte" = (
/turf/simulated/wall,
/area/toxins/explab)
@@ -65869,20 +58518,13 @@
/obj/machinery/shower{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -65892,26 +58534,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
-"cti" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/reception)
"ctj" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -65920,38 +58549,33 @@
},
/obj/structure/disposalpipe/segment,
/obj/item/storage/box/lights/mixed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctl" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctm" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctn" = (
/obj/machinery/door/airlock/public/glass{
autoclose = 0;
@@ -65976,10 +58600,9 @@
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
/obj/item/stack/packageWrap,
-/obj/item/taperecorder{
- pixel_y = 0
- },
+/obj/item/taperecorder,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"ctp" = (
@@ -65991,31 +58614,11 @@
/obj/item/clothing/mask/surgical,
/obj/item/clothing/mask/surgical,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"ctq" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
+/area/maintenance/aft)
"ctr" = (
/obj/machinery/chem_heater,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cts" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
@@ -66025,9 +58628,7 @@
/turf/space,
/area/space/nearstation)
"ctt" = (
-/obj/structure/disposaloutlet{
- dir = 2
- },
+/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -66050,58 +58651,36 @@
/obj/item/reagent_containers/food/drinks/cans/beer,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cty" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken";
- tag = "icon-wood-broken"
+ icon_state = "wood-broken"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctz" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
},
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"ctE" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector{
dir = 1
},
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"ctH" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/medical/reception)
-"ctI" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -66121,8 +58700,7 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/reception)
"ctK" = (
@@ -66170,6 +58748,12 @@
},
/obj/item/folder/white,
/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66178,6 +58762,12 @@
/obj/structure/chair/office/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -66187,46 +58777,31 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
-"ctR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery1)
"ctS" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/item/book/manual/experimentor,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"ctT" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery1)
"ctV" = (
/obj/machinery/optable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66268,35 +58843,21 @@
"ctZ" = (
/obj/structure/bed,
/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whiteblue"
},
/area/medical/exam_room)
"cua" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/exam_room)
-"cub" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
"cuc" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -66335,8 +58896,10 @@
pixel_y = 4
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -66348,13 +58911,13 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cum" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -66364,15 +58927,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cun" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -66382,24 +58941,19 @@
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuo" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
/obj/machinery/camera{
c_tag = "Research Division Hallway - Central";
- dir = 2;
network = list("SS13","RD")
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cup" = (
/obj/machinery/light{
dir = 1
@@ -66407,21 +58961,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuq" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
/obj/item/folder/white,
-/obj/item/disk/tech_disk{
- pixel_y = 0
- },
-/obj/item/disk/tech_disk{
- pixel_y = 0
- },
+/obj/item/disk/tech_disk,
+/obj/item/disk/tech_disk,
/obj/item/disk/design_disk,
/obj/item/disk/design_disk,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66433,26 +58984,18 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cus" = (
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cut" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
@@ -66460,41 +59003,31 @@
dir = 4;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuv" = (
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cuw" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-10";
- layer = 4.1;
- tag = "icon-plant-10"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cux" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -66514,6 +59047,9 @@
/obj/structure/chair/office/light{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66522,6 +59058,9 @@
/obj/structure/table/reinforced,
/obj/item/folder/white,
/obj/item/folder/white,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66548,6 +59087,7 @@
/obj/item/multitool{
pixel_x = 3
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66560,18 +59100,15 @@
/area/toxins/explab)
"cuD" = (
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"cuE" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuF" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
@@ -66593,44 +59130,23 @@
pixel_y = -3
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuH" = (
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuI" = (
/obj/structure/bed,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cuJ" = (
/obj/structure/mineral_door/wood{
name = "The Gobbetting Barmaid"
},
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cuK" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
+/area/maintenance/aft)
"cuL" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -66671,7 +59187,6 @@
external_pressure_bound = 0;
initialize_directions = 1;
internal_pressure_bound = 4000;
- on = 0;
pressure_checks = 2;
pump_direction = 0
},
@@ -66685,12 +59200,9 @@
/turf/simulated/floor/engine/vacuum,
/area/maintenance/incinerator)
"cuP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -66723,41 +59235,16 @@
"cuV" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cuW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery1)
+/area/maintenance/aft)
"cuX" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery1)
-"cuZ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery1)
"cva" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 2
},
@@ -66779,7 +59266,6 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
density = 0;
- dir = 4;
icon_state = "open";
id_tag = "acute2";
name = "Acute 2 Privacy Shutters";
@@ -66790,8 +59276,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvd" = (
@@ -66805,8 +59290,7 @@
opacity = 0
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvf" = (
@@ -66816,8 +59300,7 @@
req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/exam_room)
"cvg" = (
@@ -66831,24 +59314,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
-"cvi" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cvj" = (
/turf/simulated/wall,
/area/medical/chemistry)
@@ -66886,9 +59355,7 @@
name = "Medbay";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
@@ -66903,6 +59370,12 @@
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurple"
@@ -66914,6 +59387,8 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66928,6 +59403,12 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -66942,10 +59423,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -66991,8 +59472,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/lab)
"cvv" = (
@@ -67001,19 +59481,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -67025,33 +59499,33 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvx" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67066,15 +59540,13 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvz" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67090,32 +59562,28 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvA" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67129,11 +59597,10 @@
},
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -67141,9 +59608,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvD" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67162,9 +59627,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvE" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67174,21 +59637,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -67196,66 +59657,33 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cvG" = (
+/area/medical/research)
+"cvH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cvH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvI" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -67271,8 +59699,8 @@
dir = 8;
icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -67281,9 +59709,7 @@
dir = 4;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvJ" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -67294,26 +59720,22 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/research{
name = "Experimentation Lab";
req_access_txt = "8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/explab)
"cvK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -67326,6 +59748,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurple"
@@ -67346,7 +59771,6 @@
/obj/structure/table,
/obj/machinery/computer/crew,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -67364,7 +59788,6 @@
pixel_y = -4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -67398,7 +59821,6 @@
"cvR" = (
/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -67423,53 +59845,40 @@
/obj/structure/barricade/wooden,
/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvW" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvX" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 29
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cvY" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cvZ" = (
/obj/structure/chair/stool,
/turf/simulated/floor/wood{
- icon_state = "wood-broken7";
- tag = "icon-wood-broken7"
+ icon_state = "wood-broken7"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwa" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken6";
- tag = "icon-wood-broken6"
+ icon_state = "wood-broken6"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwb" = (
/obj/structure/table,
/obj/item/flashlight/lamp/green,
@@ -67497,9 +59906,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67527,10 +59934,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -67540,8 +59943,6 @@
pixel_x = 27
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"cwi" = (
@@ -67556,20 +59957,9 @@
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cwk" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cwl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -67578,7 +59968,6 @@
"cwm" = (
/obj/machinery/camera{
c_tag = "Medbay Hallway Fore";
- dir = 2;
network = list("SS13","Medbay")
},
/turf/simulated/floor/plasteel{
@@ -67586,37 +59975,10 @@
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cwn" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"cwo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay3)
"cwp" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cwq" = (
@@ -67631,41 +59993,18 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
-"cws" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/lab)
"cwt" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cwu" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/decal/cleanable/fungus,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
+/area/maintenance/aft)
"cwv" = (
/obj/structure/sign/chemistry{
pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
@@ -67681,16 +60020,13 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwx" = (
/obj/structure/table,
/obj/item/folder/white,
/obj/item/pen,
/obj/machinery/door/window/northleft{
dir = 2;
- icon_state = "left";
name = "Medbay Reception";
req_access_txt = "5"
},
@@ -67702,15 +60038,6 @@
/obj/machinery/status_display,
/turf/simulated/wall,
/area/medical/reception)
-"cwz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "bluecorner"
- },
-/area/hallway/primary/aft)
"cwA" = (
/turf/simulated/wall/r_wall,
/area/engine/equipmentstorage)
@@ -67728,12 +60055,6 @@
/area/maintenance/incinerator)
"cwC" = (
/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
/obj/machinery/alarm{
dir = 1;
pixel_y = -24
@@ -67741,8 +60062,7 @@
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Locker Room Port";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -67780,25 +60100,27 @@
},
/area/hallway/primary/aft)
"cwF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cwG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cwH" = (
+/area/maintenance/aft)
+"cwG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"cwH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -67806,25 +60128,15 @@
"cwI" = (
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/structure/rack,
-/obj/item/storage/firstaid/regular{
- pixel_y = 0
- },
+/obj/item/storage/firstaid/regular,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/item/clothing/glasses/hud/health,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cwJ" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/turf/simulated/floor/plasteel,
/area/toxins/explab)
"cwK" = (
@@ -67834,7 +60146,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -67842,9 +60153,7 @@
dir = 1;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwL" = (
/obj/machinery/firealarm{
dir = 1;
@@ -67853,35 +60162,13 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -67890,9 +60177,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67905,19 +60190,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwR" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -67926,9 +60210,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwS" = (
/obj/machinery/camera{
c_tag = "Research Division Hallway - Starboard";
@@ -67938,43 +60220,18 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwT" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cwU" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwW" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -67982,18 +60239,13 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cwY" = (
/obj/machinery/door/firedoor,
/obj/machinery/status_display{
@@ -68007,12 +60259,7 @@
},
/area/medical/medbay3)
"cwZ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/power/apc{
- dir = 2;
name = "Experimentation Lab APC";
pixel_y = -24
},
@@ -68036,89 +60283,38 @@
icon_state = "white"
},
/area/toxins/explab)
-"cxd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/explab)
"cxe" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxf" = (
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cxg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cxh" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cxi" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxj" = (
/obj/structure/bed,
/obj/effect/decal/cleanable/blood/gibs/limb,
/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxk" = (
/obj/item/toy/cards/deck,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxl" = (
/turf/simulated/floor/wood{
- icon_state = "wood-broken4";
- tag = "icon-wood-broken4"
+ icon_state = "wood-broken4"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxm" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68126,8 +60322,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -68145,101 +60339,42 @@
},
/area/medical/medbay3)
"cxr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 3;
icon_state = "whitebluecorner"
},
/area/medical/medbay3)
-"cxs" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cxt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"cxu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
-"cxv" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
-"cxw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
+ dir = 5
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cxx" = (
/obj/machinery/vending/cola,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cxy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -68254,9 +60389,7 @@
/obj/structure/table/wood,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cxA" = (
/obj/machinery/chem_heater,
/obj/machinery/camera{
@@ -68267,26 +60400,28 @@
/obj/structure/reagent_dispensers/fueltank/chem{
pixel_x = -30
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cxB" = (
-/obj/machinery/disposal{
- pixel_x = 0
- },
+/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
"cxC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -68308,11 +60443,12 @@
"cxE" = (
/obj/structure/bed/roller,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -68320,7 +60456,7 @@
/area/medical/reception)
"cxF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -68329,6 +60465,9 @@
/area/medical/reception)
"cxG" = (
/obj/structure/bed/roller,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -68337,8 +60476,10 @@
"cxH" = (
/obj/structure/bed/roller,
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -68353,8 +60494,10 @@
/area/medical/reception)
"cxJ" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -68373,13 +60516,8 @@
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cxL" = (
@@ -68397,7 +60535,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -68411,6 +60548,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cxN" = (
@@ -68420,13 +60558,11 @@
maxcharge = 15000
},
/obj/machinery/power/apc{
- dir = 2;
name = "Research Lab APC";
pixel_y = -26
},
/obj/structure/cable/yellow,
/obj/machinery/door_control{
- dir = 2;
id = "rndshutters";
name = "Shutters Control Button";
pixel_x = -24;
@@ -68439,15 +60575,11 @@
"cxO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -68455,21 +60587,19 @@
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cxR" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -68485,26 +60615,27 @@
name = "research and development lab shutters"
},
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Research and Development Desk";
req_access_txt = "7"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/toxins/lab)
"cxS" = (
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/preopen{
- id_tag = "researchrangeshutters";
- name = "blast door"
+ id_tag = "researchrangeshutters"
},
/turf/simulated/floor/plating,
/area/toxins/misc_lab{
name = "\improper Research Testing Range"
})
"cxT" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 8
- },
/turf/simulated/floor/plating/airless,
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -68575,7 +60706,6 @@
"cyb" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/west,
@@ -68587,9 +60717,7 @@
/obj/structure/bed/roller,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyd" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
@@ -68597,59 +60725,42 @@
},
/obj/item/clothing/mask/muzzle,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cye" = (
/obj/structure/table,
/obj/item/restraints/handcuffs/cable/white,
/obj/item/gun/syringe,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyf" = (
/obj/structure/rack,
/obj/item/hatchet,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyg" = (
/obj/machinery/iv_drip,
/obj/item/roller,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyh" = (
/obj/structure/rack,
/obj/item/tank/internals/anesthetic,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyi" = (
/obj/machinery/light_construct/small,
/obj/item/toy/cards/deck,
/obj/structure/table/wood,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyj" = (
/obj/item/dice/d20,
/obj/item/dice,
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -68659,29 +60770,18 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/toxins/lab)
-"cyl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cym" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyn" = (
/obj/machinery/atmospherics/unary/outlet_injector/on{
dir = 8
@@ -68715,21 +60815,10 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery1)
-"cyq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/turf/simulated/floor/carpet/arcade,
-/area/crew_quarters/fitness{
- name = "\improper Arcade"
- })
"cyr" = (
/obj/machinery/light_switch{
pixel_x = -23
@@ -68765,59 +60854,36 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
"cyu" = (
-/obj/structure/sign/fire{
- pixel_y = 0
- },
+/obj/structure/sign/fire,
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
"cyv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cyw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -68828,13 +60894,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -68854,13 +60913,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -68872,75 +60924,32 @@
/area/medical/chemistry)
"cyz" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/chemistry)
-"cyA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/chemistry)
"cyB" = (
/obj/machinery/chem_master{
pixel_x = -2
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
-"cyC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/chemistry)
-"cyD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cyE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyF" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
@@ -68950,29 +60959,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/chemistry)
-"cyH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cyI" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/reception)
-"cyJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cyK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -68990,25 +60982,17 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cyM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -69017,16 +61001,10 @@
dir = 4
},
/obj/machinery/door/airlock{
- name = "Aft Emergency Storage";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ name = "Aft Emergency Storage"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyO" = (
/obj/structure/closet/radiation,
/obj/effect/decal/warning_stripes/north,
@@ -69042,16 +61020,10 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "7;47;29;12"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyR" = (
/obj/structure/closet/secure_closet/scientist,
/obj/effect/decal/warning_stripes/north,
@@ -69069,49 +61041,31 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyU" = (
/obj/machinery/vending/cigarette,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cyV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Research Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cyW" = (
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cyX" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69123,27 +61077,12 @@
icon_state = "pipe-j2s";
sortType = 13
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cyZ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/medical/research)
"czc" = (
/obj/machinery/computer/aifixer,
/obj/machinery/requests_console{
@@ -69159,17 +61098,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czd" = (
/obj/machinery/vending/assist,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cze" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light/small{
@@ -69192,10 +61128,11 @@
dir = 4
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czg" = (
/obj/structure/table/glass,
/obj/machinery/photocopier/faxmachine{
@@ -69205,8 +61142,7 @@
pixel_y = 30
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69222,13 +61158,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/chair{
dir = 1
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69243,6 +61179,9 @@
dir = 4
},
/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69256,7 +61195,6 @@
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -69268,14 +61206,9 @@
icon_state = "0-4"
},
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
@@ -69297,10 +61230,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -69326,10 +61259,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69340,7 +61275,6 @@
"czq" = (
/obj/machinery/camera{
c_tag = "Medbay Hallway Fore";
- dir = 2;
network = list("SS13","Medbay")
},
/turf/simulated/floor/plasteel{
@@ -69369,8 +61303,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69385,9 +61317,6 @@
},
/area/medical/surgeryobs)
"czv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/light{
dir = 8
},
@@ -69452,9 +61381,7 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
@@ -69486,7 +61413,6 @@
"czB" = (
/obj/structure/closet/secure_closet/CMO,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
@@ -69500,16 +61426,13 @@
"czD" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69521,40 +61444,23 @@
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
-"czG" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
"czH" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"czI" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czJ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"czK" = (
@@ -69562,9 +61468,7 @@
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czL" = (
/obj/item/tank/internals/air,
/obj/item/tank/internals/air,
@@ -69573,9 +61477,7 @@
/obj/machinery/space_heater,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czM" = (
/turf/simulated/wall/r_wall,
/area/toxins/misc_lab{
@@ -69584,7 +61486,6 @@
"czN" = (
/obj/machinery/door/airlock/maintenance{
name = "Research Testing Range Maintenance";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
/turf/simulated/floor/plating,
@@ -69593,18 +61494,13 @@
})
"czO" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"czP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -69615,9 +61511,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"czR" = (
/obj/machinery/door_control{
id = "xeno_blastdoor";
@@ -69650,8 +61544,7 @@
/obj/item/radio/off,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czS" = (
@@ -69663,8 +61556,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czT" = (
@@ -69674,8 +61566,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"czU" = (
@@ -69685,12 +61576,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -69701,26 +61586,9 @@
icon_state = "pipe-j2s";
sortType = 14
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"czW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czX" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/structure/cable/yellow{
@@ -69734,34 +61602,22 @@
"czY" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
sortType = 12
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"czZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAa" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -69784,31 +61640,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAd" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAe" = (
/obj/structure/closet,
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAf" = (
/obj/structure/cable{
d1 = 2;
@@ -69835,9 +61691,7 @@
/obj/item/flashlight,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69870,25 +61724,11 @@
},
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
sortType = 23
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/chemistry)
-"cAk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cAl" = (
@@ -69903,8 +61743,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cAm" = (
@@ -69920,10 +61759,6 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/plasteel{
@@ -69949,20 +61784,15 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cAp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -69975,62 +61805,23 @@
},
/obj/item/storage/box/bodybags,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
-"cAr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/reception)
"cAs" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/reception)
-"cAt" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitehall";
- tag = "icon-whitehall (WEST)"
- },
-/area/medical/reception)
"cAu" = (
/obj/item/reagent_containers/dropper,
/obj/item/reagent_containers/glass/beaker{
@@ -70046,8 +61837,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cAv" = (
@@ -70055,13 +61845,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "bluecorner"
@@ -70073,23 +61856,20 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAx" = (
/obj/machinery/door/poddoor{
density = 0;
@@ -70110,44 +61890,35 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/medical/surgeryobs)
"cAy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAA" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -70165,24 +61936,18 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/wrench,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAD" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/storage/box/lights/mixed,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cAF" = (
/obj/machinery/reagentgrinder,
/obj/structure/cable/yellow{
@@ -70197,8 +61962,7 @@
},
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cAG" = (
@@ -70214,49 +61978,23 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/northwest,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cAI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cAJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cAK" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cAL" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -70275,8 +62013,7 @@
"cAN" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAO" = (
@@ -70286,8 +62023,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAP" = (
@@ -70300,8 +62036,7 @@
/obj/item/circuitboard/teleporter,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAR" = (
@@ -70319,8 +62054,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cAS" = (
@@ -70341,12 +62075,11 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -70375,51 +62108,23 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "whiteyellow";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
-"cAX" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cAY" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/crew_quarters/hor)
-"cAZ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Storage Room";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cBa" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -70467,8 +62172,7 @@
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBg" = (
@@ -70510,31 +62214,19 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
-"cBk" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cBl" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -70547,16 +62239,13 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/chair/stool,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/turf/simulated/floor/plasteel,
@@ -70565,8 +62254,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+ name = "Recovery Ward"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -70576,8 +62264,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
- req_access_txt = "40";
- req_one_access_txt = "0"
+ req_access_txt = "40"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70592,25 +62279,13 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cBr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "barber"
- },
-/area/medical/cmo)
"cBs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70624,10 +62299,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
@@ -70640,10 +62311,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -70655,26 +62322,21 @@
/area/medical/genetics_cloning)
"cBw" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/machinery/door/window/southleft{
- dir = 2;
name = "Cloning Shower"
},
/obj/structure/mirror{
pixel_x = -28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBx" = (
/obj/machinery/door/window/southleft{
base_state = "right";
- dir = 2;
icon_state = "right";
name = "Cloning Shower"
},
@@ -70684,8 +62346,7 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBy" = (
@@ -70693,14 +62354,12 @@
pixel_y = 2
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cBz" = (
@@ -70806,7 +62465,6 @@
/area/toxins/storage)
"cBM" = (
/obj/machinery/status_display{
- density = 0;
layer = 4
},
/turf/simulated/wall,
@@ -70818,19 +62476,11 @@
name = "\improper Toxins Lab"
})
"cBO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -70846,18 +62496,16 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBQ" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70867,19 +62515,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cBR" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -70889,22 +62535,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Research Director's Office";
- req_access_txt = "30";
- req_one_access_txt = "0"
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBS" = (
@@ -70924,25 +62568,22 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBU" = (
@@ -70954,22 +62595,20 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cBW" = (
@@ -70990,14 +62629,14 @@
dir = 4
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cBY" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -71017,8 +62656,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull";
- tag = "icon-whitebluefull"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cCd" = (
@@ -71030,12 +62668,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/chair,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -71083,8 +62720,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whiteyellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whiteyellowfull"
},
/area/medical/chemistry)
"cCh" = (
@@ -71112,20 +62748,16 @@
},
/obj/structure/table/glass,
/obj/structure/noticeboard{
- desc = "A board for pinning important notices upon.";
- name = "notice board";
pixel_x = -32;
pixel_y = 32
},
/obj/machinery/requests_console{
department = "Genetics";
- departmentType = 0;
name = "Genetics Requests Console";
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cCj" = (
@@ -71145,7 +62777,6 @@
"cCk" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -71154,7 +62785,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -71163,7 +62793,6 @@
/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -71173,7 +62802,6 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
@@ -71187,13 +62815,11 @@
pixel_y = -24
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/reception)
"cCp" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
@@ -71227,6 +62853,9 @@
dir = 4
},
/obj/effect/decal/warning_stripes/northeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -71240,6 +62869,12 @@
dir = 5;
max_integrity = 1e+007
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/grass,
/area/medical/surgeryobs)
"cCt" = (
@@ -71258,10 +62893,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -71279,10 +62914,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -71300,10 +62935,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -71314,18 +62949,17 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
- name = "Recovery Ward";
- req_access_txt = "0"
+ name = "Recovery Ward"
},
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -71346,15 +62980,6 @@
icon_state = "whiteblue"
},
/area/medical/genetics)
-"cCB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
"cCC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71379,12 +63004,8 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -71397,6 +63018,9 @@
/obj/structure/chair/office/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -71438,9 +63062,8 @@
/obj/structure/chair{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -71464,11 +63087,11 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -71481,12 +63104,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -71494,7 +63111,6 @@
"cCN" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -71512,32 +63128,34 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cCP" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cCQ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -71569,14 +63187,11 @@
pixel_x = -32
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cCV" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/item/radio/intercom{
@@ -71585,8 +63200,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cCW" = (
@@ -71604,8 +63218,7 @@
pixel_x = -3
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
@@ -71652,13 +63265,10 @@
"cDa" = (
/obj/machinery/door/airlock/maintenance{
name = "airlock access";
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDb" = (
/obj/machinery/door/poddoor/shutters{
dir = 8;
@@ -71674,6 +63284,9 @@
layer = 4;
pixel_x = -32
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -71688,7 +63301,7 @@
},
/obj/structure/rack,
/obj/effect/decal/warning_stripes/south,
-/obj/item/pipe_painter,
+/obj/item/painter,
/turf/simulated/floor/plasteel,
/area/atmos)
"cDe" = (
@@ -71730,21 +63343,19 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j1";
- tag = "icon-pipe-j1 (EAST)"
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDk" = (
/obj/structure/closet/crate,
/obj/item/crowbar/red,
@@ -71758,18 +63369,14 @@
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDl" = (
/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cDm" = (
-/obj/machinery/atmospherics/unary/cryo_cell{
- layer = 3.3
- },
+/obj/machinery/atmospherics/unary/cryo_cell,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/medical/cryo)
@@ -71780,14 +63387,11 @@
"cDo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDq" = (
/obj/machinery/light/small{
dir = 1
@@ -71801,12 +63405,10 @@
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/medical/medbreak)
@@ -71831,17 +63433,18 @@
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/hallway/primary/fore)
"cDu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -71862,8 +63465,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -71875,10 +63480,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cDA" = (
@@ -71896,9 +63503,7 @@
/obj/item/wrench,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDC" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -71937,7 +63542,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plating,
@@ -71957,14 +63561,12 @@
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cDI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Toxins Storage";
req_access_txt = "8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cDJ" = (
@@ -71977,16 +63579,16 @@
dir = 4;
pixel_x = -23
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cDK" = (
/obj/machinery/power/apc{
- dir = 2;
name = "RD Office APC";
pixel_y = -27
},
@@ -71997,22 +63599,19 @@
/obj/item/twohanded/required/kirbyplants/dead,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDL" = (
/obj/machinery/hologram/holopad,
/obj/machinery/light,
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = -32
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDM" = (
@@ -72020,14 +63619,9 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDN" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cDO" = (
@@ -72048,8 +63642,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cDQ" = (
@@ -72058,11 +63651,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cDR" = (
@@ -72075,9 +63664,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDS" = (
/obj/structure/sign/lifestar,
/turf/simulated/wall,
@@ -72092,13 +63679,8 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDU" = (
/turf/simulated/wall,
/area/medical/medbay3{
@@ -72110,17 +63692,12 @@
/turf/simulated/floor/plating,
/area/medical/cryo)
"cDX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cDY" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -72131,19 +63708,17 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
name = "Cloning Lab";
- req_access_txt = "0";
req_one_access_txt = "5"
},
/obj/effect/mapping_helpers/airlock/unres{
- dir = 4;
- icon_state = "airlock_unres_helper"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -72157,42 +63732,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
},
/area/medical/genetics_cloning)
-"cEa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cEb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cEc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cEd" = (
@@ -72202,8 +63749,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cEe" = (
@@ -72263,12 +63809,12 @@
/area/medical/surgeryobs)
"cEk" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -72291,12 +63837,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -72306,83 +63848,37 @@
codes_txt = "patrol;next_patrol=10.1-Central-from-Aft";
location = "10-Aft-To-Central"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
-"cEn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue"
- },
-/area/medical/cryo)
-"cEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
-"cEq" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/assembly/chargebay)
"cEr" = (
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
"cEs" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/effect/landmark/start{
name = "Roboticist"
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/bluegrid,
/area/assembly/chargebay)
"cEt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -72392,55 +63888,20 @@
dir = 9
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cEv" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=9.1-Escape-1";
location = "8.1-Aft-to-Escape"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
-"cEw" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cEx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
"cEy" = (
/obj/structure/sign/biohazard,
/turf/simulated/wall,
@@ -72449,28 +63910,20 @@
})
"cEz" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/cryo)
"cEA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cEB" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEC" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/fungus,
@@ -72480,6 +63933,7 @@
/area/maintenance/incinerator)
"cED" = (
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -72489,10 +63943,6 @@
dir = 10
},
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cEF" = (
@@ -72516,19 +63966,18 @@
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cEI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
"cEJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/southeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"cEK" = (
@@ -72544,9 +63993,7 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEM" = (
/obj/machinery/door/airlock/research{
name = "Toxins Space Access";
@@ -72554,33 +64001,13 @@
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cEN" = (
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"cEO" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cEP" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/cable/yellow{
@@ -72589,22 +64016,14 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
-"cEQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cER" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -72612,6 +64031,10 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -72625,7 +64048,10 @@
},
/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/medical/cryo)
@@ -72633,16 +64059,9 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cEU" = (
@@ -72655,9 +64074,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -72719,32 +64136,23 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery2)
"cFb" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cFc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -72754,11 +64162,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFd" = (
/turf/simulated/wall,
/area/medical/medbreak)
@@ -72767,9 +64176,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFf" = (
/obj/machinery/firealarm{
dir = 8;
@@ -72784,7 +64191,6 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/medical/medbreak)
@@ -72799,7 +64205,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/medical/medbreak)
@@ -72811,7 +64216,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/medical/medbreak)
@@ -72821,7 +64225,6 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/medical/medbreak)
@@ -72839,7 +64242,6 @@
/area/medical/medbay3)
"cFl" = (
/obj/machinery/door_control{
- dir = 2;
id = "Skynet_launch";
name = "Mech Bay Door Control";
pixel_x = 26;
@@ -72847,13 +64249,11 @@
req_one_access_txt = "29"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"cFm" = (
/obj/machinery/door_control{
- dir = 2;
id = "Skynet_launch";
name = "Mech Bay Door Control";
pixel_x = -26;
@@ -72874,17 +64274,15 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cFn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/mech_bay_recharge_floor,
/area/assembly/chargebay)
"cFo" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
@@ -72897,10 +64295,8 @@
base_state = "right";
dir = 1;
icon_state = "right";
- name = "door";
- req_access_txt = "0"
+ name = "door"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab{
name = "\improper Research Testing Range"
@@ -72917,37 +64313,7 @@
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cFt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
-"cFu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cFv" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -72963,22 +64329,7 @@
},
/area/medical/surgery2)
"cFx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cFy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -73024,20 +64375,9 @@
})
"cFD" = (
/obj/machinery/atmospherics/trinary/filter{
- density = 0;
dir = 8;
req_access = "0"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cFE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -73053,20 +64393,18 @@
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cFG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "8;12"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFH" = (
/turf/simulated/wall,
/area/toxins/mixing{
@@ -73135,10 +64473,10 @@
req_access_txt = "8"
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -73163,50 +64501,27 @@
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/assembly/chargebay)
-"cFP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cFQ" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFR" = (
/obj/item/latexballon,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFS" = (
/obj/item/clothing/suit/ianshirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFT" = (
/obj/structure/rack,
/obj/item/clothing/glasses/sunglasses,
-/obj/item/flashlight/pen{
- pixel_x = 0
- },
+/obj/item/flashlight/pen,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cFU" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -73219,23 +64534,10 @@
/obj/item/roller,
/obj/item/reagent_containers/spray/cleaner,
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/cryo)
-"cFX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
- })
"cFY" = (
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -73252,14 +64554,12 @@
/turf/simulated/floor/plating,
/area/medical/genetics_cloning)
"cGb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/genetics_cloning)
"cGc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -73274,13 +64574,11 @@
/area/medical/genetics_cloning)
"cGe" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -26
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73298,8 +64596,7 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cGg" = (
@@ -73309,46 +64606,34 @@
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cGh" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cGi" = (
/obj/structure/table,
-/obj/item/reagent_containers/iv_bag/blood/AMinus,
-/obj/item/reagent_containers/iv_bag/blood/APlus,
-/obj/item/reagent_containers/iv_bag/blood/BMinus,
-/obj/item/reagent_containers/iv_bag/blood/BPlus,
-/obj/item/reagent_containers/iv_bag/blood/OPlus,
/obj/machinery/alarm{
pixel_y = 23
},
-/obj/item/reagent_containers/iv_bag/blood/OMinus,
/obj/machinery/light{
dir = 1;
in_use = 1
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -73399,22 +64684,15 @@
"cGm" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/item/radio/intercom{
dir = 4;
- name = "station intercom (General)";
pixel_x = 28
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cGn" = (
@@ -73450,50 +64728,15 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery2)
-"cGq" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"cGr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
"cGs" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ req_access_txt = "29"
},
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
@@ -73507,10 +64750,6 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cGu" = (
@@ -73519,15 +64758,9 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cGv" = (
@@ -73545,12 +64778,7 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cGw" = (
@@ -73581,7 +64809,6 @@
})
"cGy" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/atmospherics/unary/thermomachine/freezer,
@@ -73604,20 +64831,13 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Research Testing Range";
- req_access_txt = "0";
req_one_access_txt = "7;47;29"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "purplefull"
},
@@ -73640,33 +64860,33 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cGD" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cGF" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/effect/decal/warning_stripes/south,
@@ -73675,17 +64895,14 @@
name = "\improper Toxins Lab"
})
"cGG" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -73699,48 +64916,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cGI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cGJ" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -73757,10 +64938,10 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -73778,11 +64959,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -73798,6 +64979,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -73809,8 +64996,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -73846,9 +65031,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -73861,19 +65045,10 @@
dir = 8
},
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cGT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
@@ -73883,7 +65058,6 @@
},
/obj/machinery/camera{
c_tag = "Toxins - Lab";
- dir = 2;
network = list("SS13","RD")
},
/obj/machinery/atmospherics/unary/portables_connector,
@@ -73939,9 +65113,6 @@
/area/medical/cryo)
"cGZ" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -73952,9 +65123,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73968,8 +65137,13 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -73978,16 +65152,19 @@
"cHb" = (
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -74003,10 +65180,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHd" = (
@@ -74023,25 +65202,15 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
-/area/medical/medbreak)
-"cHe" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHf" = (
@@ -74054,20 +65223,15 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -74077,21 +65241,14 @@
/obj/machinery/door/airlock/medical/glass{
id_tag = "";
name = "Staff Room";
- req_access_txt = "5";
- req_one_access_txt = "0"
+ req_access_txt = "5"
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbreak)
"cHi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -74100,10 +65257,12 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cHj" = (
@@ -74130,27 +65289,22 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
"cHl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
@@ -74169,9 +65323,7 @@
},
/area/medical/cryo)
"cHn" = (
-/obj/structure/sign/directions/evac{
- pixel_y = 0
- },
+/obj/structure/sign/directions/evac,
/turf/simulated/wall,
/area/assembly/chargebay)
"cHo" = (
@@ -74197,7 +65349,7 @@
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cHr" = (
@@ -74228,6 +65380,9 @@
dir = 8;
network = list("SS13","Medbay")
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whiteblue"
@@ -74243,8 +65398,7 @@
dir = 1
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/clothing/ears/earmuffs,
/obj/effect/decal/warning_stripes/east,
@@ -74257,9 +65411,7 @@
dir = 4;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cHy" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -74271,17 +65423,6 @@
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cHz" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
"cHA" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -74315,18 +65456,12 @@
name = "\improper Research Testing Range"
})
"cHD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
/obj/effect/decal/warning_stripes/northeast,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab{
name = "\improper Research Testing Range"
@@ -74345,8 +65480,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74354,7 +65487,12 @@
name = "\improper Toxins Lab"
})
"cHH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74362,11 +65500,11 @@
name = "\improper Toxins Lab"
})
"cHI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -74375,10 +65513,10 @@
name = "\improper Toxins Lab"
})
"cHJ" = (
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -74387,14 +65525,7 @@
name = "\improper Toxins Lab"
})
"cHK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab{
name = "\improper Research Testing Range"
@@ -74406,12 +65537,12 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74419,14 +65550,12 @@
name = "\improper Toxins Lab"
})
"cHM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
@@ -74443,9 +65572,6 @@
name = "\improper Toxins Lab"
})
"cHO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -74458,6 +65584,9 @@
req_access_txt = "8"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -74490,7 +65619,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -74512,9 +65640,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cHU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
@@ -74525,9 +65651,7 @@
"cHV" = (
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cHW" = (
/obj/structure/window/reinforced,
/obj/item/target,
@@ -74545,10 +65669,10 @@
name = "Toxins Launch Room";
req_access_txt = "8"
},
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -74563,9 +65687,7 @@
/obj/item/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cIc" = (
/obj/structure/chair,
/obj/effect/decal/warning_stripes/northeast,
@@ -74578,6 +65700,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/cryo)
"cIe" = (
@@ -74599,10 +65727,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74618,10 +65748,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -74642,8 +65772,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -74668,7 +65798,6 @@
name = "Port Maintenance"
})
"cIj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
@@ -74677,9 +65806,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cIk" = (
/obj/structure/urinal{
pixel_y = 29
@@ -74701,8 +65828,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "yellowfull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "yellowfull"
},
/area/medical/genetics)
"cIm" = (
@@ -74727,8 +65853,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIq" = (
@@ -74750,12 +65875,10 @@
/area/medical/surgery2)
"cIt" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purplecorner"
},
/area/hallway/primary/aft)
@@ -74772,10 +65895,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74804,9 +65923,7 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cIA" = (
/obj/machinery/light{
dir = 8
@@ -74821,15 +65938,10 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIB" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/extinguisher_cabinet{
pixel_y = -29
},
@@ -74840,8 +65952,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIC" = (
@@ -74888,9 +65999,11 @@
pixel_x = -32
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74901,11 +66014,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -74919,8 +66029,12 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -74933,11 +66047,8 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -74968,12 +66079,13 @@
name = "\improper Toxins Lab"
})
"cIL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -74981,10 +66093,10 @@
name = "\improper Toxins Lab"
})
"cIM" = (
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -75023,18 +66135,20 @@
},
/area/medical/virology)
"cIS" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/medical/virology)
"cIT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -75042,17 +66156,16 @@
"cIU" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/machinery/status_display{
dir = 4;
layer = 4;
pixel_x = -32
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75069,8 +66182,8 @@
/area/medical/medbay3)
"cIW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -75083,8 +66196,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIY" = (
@@ -75092,24 +66204,18 @@
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cIZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cJa" = (
@@ -75117,8 +66223,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cJb" = (
@@ -75131,10 +66236,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/turf/simulated/floor/plasteel,
/area/assembly/chargebay)
"cJc" = (
@@ -75142,10 +66243,10 @@
/turf/simulated/wall/r_wall,
/area/atmos)
"cJd" = (
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -75154,19 +66255,13 @@
name = "\improper Toxins Lab"
})
"cJe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
-"cJf" = (
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -75177,6 +66272,12 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -75184,12 +66285,7 @@
name = "\improper Secure Lab"
})
"cJh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/genetics_cloning)
@@ -75210,7 +66306,6 @@
pixel_y = 2
},
/obj/machinery/door_control{
- dir = 2;
id = "robotics";
name = "Shutter Control";
pixel_x = -26;
@@ -75220,12 +66315,8 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cJk" = (
-/obj/machinery/mecha_part_fabricator{
- dir = 2
- },
+/obj/machinery/mecha_part_fabricator,
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 20
},
@@ -75248,12 +66339,9 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cJm" = (
-/obj/machinery/mecha_part_fabricator{
- dir = 2
- },
+/obj/machinery/mecha_part_fabricator,
/obj/machinery/camera{
c_tag = "Robotics - Fore";
- dir = 2;
network = list("SS13","RD")
},
/obj/effect/decal/warning_stripes/yellow,
@@ -75275,8 +66363,6 @@
/area/assembly/robotics)
"cJo" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = 22
},
@@ -75287,9 +66373,7 @@
pixel_x = -23
},
/obj/effect/decal/warning_stripes/northwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -75299,21 +66383,12 @@
/area/assembly/robotics)
"cJq" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cJr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/wall/r_wall,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/medical/research)
"cJs" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
@@ -75323,11 +66398,8 @@
"cJt" = (
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- name = "emergency shower";
- tag = "icon-shower (EAST)"
+ name = "emergency shower"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -75335,10 +66407,10 @@
name = "\improper Toxins Lab"
})
"cJu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -75367,6 +66439,9 @@
pixel_y = -22
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -75386,12 +66461,8 @@
pixel_x = 8;
pixel_y = 2
},
-/obj/item/reagent_containers/iv_bag{
- pixel_y = 0
- },
-/obj/item/reagent_containers/iv_bag{
- pixel_y = 0
- },
+/obj/item/reagent_containers/iv_bag,
+/obj/item/reagent_containers/iv_bag,
/obj/item/reagent_containers/syringe,
/obj/item/reagent_containers/dropper,
/obj/structure/sign/biohazard{
@@ -75400,9 +66471,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJz" = (
/obj/structure/closet/bombcloset,
/obj/effect/decal/warning_stripes/north,
@@ -75422,7 +66491,6 @@
name = "\improper Toxins Lab"
})
"cJB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
broadcasting = 1;
frequency = 1485;
@@ -75430,9 +66498,7 @@
name = "Station Intercom (Medbay)";
pixel_x = 30
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -75474,34 +66540,12 @@
icon_state = "freezerfloor"
},
/area/medical/virology)
-"cJI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/mob/living/carbon/human/monkey,
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/medical/virology)
"cJJ" = (
/obj/effect/landmark{
name = "blobstart"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/medical/virology)
-"cJK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/mob/living/carbon/human/monkey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -75521,12 +66565,7 @@
/obj/structure/chair/office/light,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = -25;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+ pixel_x = -25
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75549,10 +66588,9 @@
/area/medical/virology)
"cJO" = (
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
-/obj/machinery/smartfridge/secure/chemistry/virology,
+/obj/machinery/smartfridge/secure/chemistry/virology/preloaded,
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
},
@@ -75571,12 +66609,7 @@
/obj/structure/chair/office/light,
/obj/machinery/vending/wallmed{
name = "Emergency NanoMed";
- pixel_x = 25;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+ pixel_x = 25
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -75587,18 +66620,13 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cJT" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75607,9 +66635,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"cJU" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -75618,20 +66644,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2{
- name = "Port Maintenance"
- })
-"cJV" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
@@ -75641,38 +66653,15 @@
icon_state = "yellow"
},
/area/hallway/primary/aft)
-"cJX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery2)
"cJY" = (
/obj/machinery/iv_drip,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery2)
-"cKa" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery2)
"cKb" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 2
},
@@ -75690,35 +66679,13 @@
icon_state = "white"
},
/area/medical/surgery2)
-"cKd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cKe" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/medical/medbreak)
-"cKf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cKh" = (
/obj/structure/table,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = -25
},
@@ -75731,7 +66698,6 @@
"cKi" = (
/obj/item/gun/energy/laser/practice,
/obj/machinery/power/apc{
- dir = 2;
name = "Research Firing Range APC";
pixel_y = -28
},
@@ -75746,8 +66712,7 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cKk" = (
@@ -75758,8 +66723,7 @@
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/medical/medbreak)
"cKl" = (
@@ -75778,11 +66742,8 @@
name = "\improper Arcade"
})
"cKn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics_cloning)
"cKo" = (
@@ -75798,7 +66759,6 @@
/area/assembly/robotics)
"cKq" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -26
},
@@ -75809,8 +66769,6 @@
/area/hallway/primary/aft)
"cKr" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -75828,8 +66786,7 @@
/obj/machinery/door_control{
id = "researchrangeshutters";
name = "Blast Door Control";
- pixel_y = -24;
- req_access_txt = "0"
+ pixel_y = -24
},
/obj/machinery/light,
/obj/effect/decal/warning_stripes/south,
@@ -75876,7 +66833,6 @@
dir = 4
},
/obj/machinery/driver_button{
- dir = 2;
id_tag = "toxinsdriver";
pixel_x = 24;
pixel_y = -24
@@ -75900,31 +66856,18 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"cKy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/surgery2)
"cKz" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/item/radio/intercom{
- frequency = 1459;
- name = "station intercom (General)";
pixel_x = -28
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery2)
"cKA" = (
/obj/machinery/optable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -75938,15 +66881,10 @@
name = "\improper Toxins Lab"
})
"cKC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKD" = (
/obj/machinery/computer/operating,
/obj/structure/cable/yellow{
@@ -75981,9 +66919,7 @@
"cKG" = (
/obj/structure/closet/wardrobe/grey,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKH" = (
/obj/item/circular_saw,
/obj/item/FixOVein,
@@ -76020,8 +66956,7 @@
/obj/item/stack/medical/bruise_pack/advanced,
/obj/machinery/camera{
c_tag = "Medbay Surgery 1 South";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/machinery/light,
/obj/structure/table/tray,
@@ -76045,8 +66980,8 @@
name = "Test Subject Cell";
req_access_txt = "39"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -76057,10 +66992,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plating,
/area/medical/virology)
"cKQ" = (
@@ -76068,8 +66999,13 @@
layer = 4;
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -76083,14 +67019,20 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"cKS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -76104,13 +67046,15 @@
/obj/effect/landmark/start{
name = "Virologist"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
},
/area/medical/virology)
"cKU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 4;
name = "CMO's Office APC";
@@ -76120,14 +67064,16 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/patient_a)
"cKV" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/structure/disposalpipe/segment,
@@ -76136,13 +67082,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cKW" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -76153,8 +67094,8 @@
"cKX" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -76163,7 +67104,6 @@
"cKY" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -76177,12 +67117,11 @@
"cLa" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -76200,9 +67139,11 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76221,6 +67162,9 @@
dir = 8;
pixel_x = 25
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76235,6 +67179,9 @@
pixel_x = 28;
pixel_y = 5
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76242,13 +67189,11 @@
"cLg" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Aft Primary Hallway - Middle";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -76283,12 +67228,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -76306,6 +67245,9 @@
})
"cLm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cLn" = (
@@ -76351,57 +67293,50 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cLs" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/machinery/camera{
c_tag = "Research Division Hallway - Robotics";
dir = 4;
network = list("SS13","RD")
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cLv" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
@@ -76411,13 +67346,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -76447,9 +67376,6 @@
name = "Mixing Room Interior Airlock";
req_access_txt = "8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -76458,9 +67384,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -76468,9 +67391,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLA" = (
/obj/effect/landmark/start{
name = "Roboticist"
@@ -76484,9 +67405,7 @@
"cLB" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLC" = (
/obj/structure/closet,
/obj/item/assembly/prox_sensor{
@@ -76498,9 +67417,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLD" = (
/obj/structure/chair{
dir = 4
@@ -76535,9 +67452,7 @@
pixel_x = 6;
pixel_y = -4
},
-/obj/item/assembly/timer{
- pixel_y = 0
- },
+/obj/item/assembly/timer,
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel,
@@ -76550,34 +67465,26 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
},
/area/medical/virology)
"cLI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
},
/area/medical/virology)
-"cLK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cLL" = (
/obj/structure/window/reinforced{
dir = 1
@@ -76608,6 +67515,7 @@
/area/medical/virology)
"cLO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76624,12 +67532,8 @@
/obj/item/transfer_valve{
pixel_x = -5
},
-/obj/item/transfer_valve{
- pixel_x = 0
- },
-/obj/item/transfer_valve{
- pixel_x = 0
- },
+/obj/item/transfer_valve,
+/obj/item/transfer_valve,
/obj/item/transfer_valve{
pixel_x = 5
},
@@ -76654,6 +67558,12 @@
d2 = 4;
icon_state = "0-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -76669,7 +67579,6 @@
on = 0
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay2{
@@ -76679,32 +67588,12 @@
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cLV" = (
/obj/structure/table,
/obj/item/reagent_containers/glass/beaker/large,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cLW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
+/area/maintenance/aft)
"cLX" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -76718,13 +67607,8 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76733,13 +67617,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitebluecorner"
@@ -76781,15 +67658,12 @@
name = "\improper Toxins Lab"
})
"cMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/radio/intercom{
dir = 8;
name = "Station Intercom (General)";
pixel_x = -28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -76827,16 +67701,9 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"cMd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
"cMh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -76850,8 +67717,7 @@
pixel_y = 5
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/table,
/obj/item/wrench,
@@ -76865,37 +67731,6 @@
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"cMj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"cMk" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"cMl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
"cMm" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -76907,12 +67742,8 @@
icon_state = "1-4"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cMn" = (
@@ -76938,16 +67769,12 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cMq" = (
/obj/machinery/firealarm{
dir = 4;
@@ -76957,9 +67784,7 @@
dir = 10;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cMr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -76989,8 +67814,7 @@
/obj/item/radio/headset/headset_medsci,
/obj/item/flashlight/pen,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/genetics)
"cMt" = (
@@ -77027,9 +67851,7 @@
/obj/structure/closet/crate,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMy" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -77075,10 +67897,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/plasteel{
@@ -77094,6 +67916,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -77109,10 +67934,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -77130,10 +67955,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -77152,10 +67977,10 @@
name = "Containment Cells";
req_access_txt = "39"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -77169,10 +67994,10 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -77191,10 +68016,10 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -77211,51 +68036,14 @@
name = "lightsout"
},
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"cMI" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"cMJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen"
- },
-/area/medical/virology)
"cMK" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -77268,14 +68056,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
},
/area/medical/virology)
"cMM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -77287,14 +68075,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"cMN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -77303,15 +68091,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreen"
},
/area/medical/virology)
"cMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -77338,7 +68126,6 @@
},
/obj/machinery/access_button{
command = "cycle_interior";
- frequency = 1449;
master_tag = "virology_airlock_control";
pixel_x = 10;
pixel_y = 25;
@@ -77347,6 +68134,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
},
@@ -77355,19 +68145,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
- req_access_txt = "40";
- req_one_access_txt = "0"
+ req_access_txt = "40"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -77384,13 +68166,6 @@
icon_state = "pipe-j2s";
sortType = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -77419,27 +68194,19 @@
},
/obj/machinery/access_button{
command = "cycle_exterior";
- frequency = 1449;
master_tag = "virology_airlock_control";
pixel_x = 10;
pixel_y = 25;
req_access = null;
req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
},
/area/medical/virology)
-"cMS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"cMT" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/plasteel{
@@ -77447,23 +68214,8 @@
icon_state = "yellowcorner"
},
/area/hallway/primary/aft)
-"cMU" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cMV" = (
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -77515,9 +68267,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/universal,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cMZ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -77526,9 +68276,7 @@
dir = 9;
icon_state = "whitehall"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNa" = (
/obj/structure/table,
/obj/machinery/light/small{
@@ -77542,9 +68290,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNb" = (
/obj/structure/table,
/obj/item/retractor,
@@ -77559,9 +68305,7 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNc" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -77598,12 +68342,10 @@
"cNf" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/r_n_d/circuit_imprinter,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -77619,14 +68361,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"cNh" = (
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
"cNi" = (
/obj/item/hemostat,
/obj/structure/table/glass,
@@ -77644,9 +68378,7 @@
dir = 8;
icon_state = "whitepurplecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNk" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -77658,35 +68390,16 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cNm" = (
/obj/machinery/atmospherics/pipe/simple/insulated,
/turf/simulated/wall/r_wall,
/area/maintenance/incinerator)
-"cNn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
-"cNo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/turf/simulated/wall/r_wall,
-/area/toxins/server{
- name = "\improper Research Division Server Room"
- })
"cNq" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
@@ -77697,7 +68410,6 @@
id_tag = "tox_airlock_control";
name = "Toxin Mixing Console";
pixel_x = -24;
- req_access_txt = "0";
tag_airpump = "tox_airlock_apump";
tag_chamber_sensor = "tox_airlock_sensor";
tag_exterior_door = "tox_airlock_exterior";
@@ -77705,7 +68417,6 @@
tag_interior_door = "tox_airlock_interior"
},
/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -77739,8 +68450,8 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cNv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitegreen"
},
@@ -77788,28 +68499,6 @@
icon_state = "whitegreen"
},
/area/medical/virology)
-"cNC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitegreen"
- },
-/area/medical/virology)
-"cND" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitegreen"
- },
-/area/medical/virology)
"cNF" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -77825,13 +68514,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -77840,35 +68522,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cNH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/southwest,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"cNI" = (
/turf/simulated/floor/plasteel{
dir = 10;
@@ -77881,64 +68544,64 @@
dir = 1;
network = list("SS13","Medbay")
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"cNK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"cNL" = (
/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"cNM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
-"cNN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"cNO" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNP" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNQ" = (
/obj/machinery/computer/rdconsole/robotics,
/obj/machinery/requests_console{
@@ -77960,13 +68623,8 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNS" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -77976,22 +68634,6 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
-"cNT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cNU" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -77999,8 +68641,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -78011,26 +68657,17 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cNW" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -78047,10 +68684,8 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"cNY" = (
@@ -78087,9 +68722,6 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cNZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
@@ -78098,9 +68730,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOa" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -78134,8 +68764,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -78148,19 +68777,17 @@
},
/area/assembly/robotics)
"cOf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOg" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -78172,33 +68799,27 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOh" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOi" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -78211,12 +68832,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78232,12 +68847,6 @@
/obj/machinery/light_switch{
pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78245,9 +68854,6 @@
name = "\improper Research Division Server Room"
})
"cOk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
name = "SERVER ROOM"
@@ -78257,9 +68863,7 @@
name = "\improper Research Division Server Room"
})
"cOl" = (
-/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server{
- dir = 2
- },
+/obj/machinery/atmospherics/unary/thermomachine/freezer/on/server,
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -78270,9 +68874,7 @@
"cOm" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cOn" = (
/obj/machinery/r_n_d/server/robotics,
/turf/simulated/floor/bluegrid{
@@ -78286,7 +68888,6 @@
})
"cOo" = (
/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
external_pressure_bound = 140;
on = 1;
pressure_checks = 0
@@ -78339,33 +68940,29 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/sign/biohazard{
pixel_y = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOt" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/spawner/lootdrop{
loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOu" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -78377,70 +68974,54 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cOv" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOw" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOx" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/unary/portables_connector,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOy" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"cOz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Isolation B";
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/medical/virology)
"cOA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Isolation A";
req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -78477,8 +69058,7 @@
/obj/item/reagent_containers/iv_bag/blood/random,
/obj/item/reagent_containers/iv_bag/blood/random,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOD" = (
@@ -78489,23 +69069,20 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOF" = (
/obj/structure/closet/secure_closet/medical1,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cOG" = (
@@ -78539,7 +69116,6 @@
/obj/item/healthanalyzer,
/obj/item/clothing/glasses/hud/health,
/obj/structure/reagent_dispensers/virusfood{
- density = 0;
pixel_y = 30
},
/obj/structure/table/glass,
@@ -78568,31 +69144,21 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cOK" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cOL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/structure/cable/yellow{
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -78604,14 +69170,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cON" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -78621,21 +69183,18 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
"cOP" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway - Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "escape"
},
/area/hallway/primary/aft)
@@ -78664,7 +69223,6 @@
},
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -78684,19 +69242,13 @@
name = "Privacy Shutters Control";
pixel_y = 25
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/medical/psych)
"cOV" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -78721,29 +69273,20 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPb" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPc" = (
/turf/simulated/wall,
/area/toxins/server{
@@ -78753,10 +69296,6 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78765,9 +69304,6 @@
})
"cPe" = (
/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78816,7 +69352,6 @@
"cPi" = (
/obj/machinery/camera{
c_tag = "Research Division - Server Room";
- dir = 2;
network = list("SS13","RD");
pixel_x = 22
},
@@ -78829,9 +69364,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78844,11 +69376,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPm" = (
/obj/machinery/atmospherics/unary/portables_connector{
dir = 8
@@ -78890,16 +69420,16 @@
"cPp" = (
/obj/item/bedsheet/medical,
/obj/structure/bed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/medical/virology)
"cPq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
/turf/simulated/floor/plasteel{
@@ -78909,8 +69439,8 @@
"cPr" = (
/obj/structure/bed,
/obj/item/bedsheet/medical,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -78922,11 +69452,11 @@
/area/medical/virology)
"cPt" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/medical{
name = "Break Room";
req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitegreenfull"
@@ -78934,7 +69464,6 @@
/area/medical/virology)
"cPv" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -78942,22 +69471,6 @@
icon_state = "dark"
},
/area/medical/morgue)
-"cPx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11;
- level = 1
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cPy" = (
/turf/simulated/wall,
/area/medical/medbay3)
@@ -78976,6 +69489,9 @@
/obj/structure/sign/deathsposal{
pixel_x = -30
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreen"
@@ -78989,8 +69505,8 @@
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -79007,8 +69523,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/hor)
"cPE" = (
@@ -79021,18 +69536,12 @@
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cPF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "Medical Surplus Storeroom";
- req_access_txt = "12";
- req_one_access_txt = "0"
+ req_access_txt = "12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPG" = (
/obj/structure/rack{
dir = 8;
@@ -79046,14 +69555,11 @@
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPH" = (
/obj/structure/closet/firecloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79061,8 +69567,7 @@
"cPI" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79070,8 +69575,7 @@
"cPJ" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79095,6 +69599,9 @@
layer = 2.9
},
/obj/structure/table/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreen"
@@ -79108,8 +69615,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79122,8 +69628,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79150,8 +69655,8 @@
/obj/machinery/door/airlock/public/glass{
name = "Departure Lounge"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79162,7 +69667,6 @@
name = "Departure Lounge"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/secondary/exit{
@@ -79173,7 +69677,6 @@
/obj/item/retractor,
/obj/item/hemostat,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = -29
},
@@ -79225,9 +69728,7 @@
"cPT" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cPU" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -79258,7 +69759,6 @@
"cPX" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -79266,22 +69766,7 @@
dir = 8;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
-"cPY" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cPZ" = (
/obj/machinery/firealarm{
dir = 1;
@@ -79296,8 +69781,6 @@
})
"cQa" = (
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -28
},
@@ -79309,8 +69792,6 @@
name = "\improper Research Division Server Room"
})
"cQb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -79321,6 +69802,8 @@
name = "Isolation A";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -79336,8 +69819,8 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -79376,8 +69859,6 @@
name = "\improper Research Division Server Room"
})
"cQf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -79388,6 +69869,8 @@
name = "Isolation B";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -79417,9 +69900,6 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -79427,31 +69907,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cQi" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cQj" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQk" = (
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -79467,24 +69923,13 @@
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cQm" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor"
- },
-/area/medical/virology)
+/area/maintenance/aft)
"cQn" = (
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -79494,8 +69939,8 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -79506,9 +69951,8 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -79541,7 +69985,9 @@
})
"cQs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
@@ -79555,7 +70001,6 @@
/obj/item/hand_labeler,
/obj/item/radio/headset/headset_med,
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/machinery/camera{
@@ -79570,7 +70015,6 @@
/area/medical/virology)
"cQu" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -79586,42 +70030,41 @@
/area/medical/virology)
"cQv" = (
/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
-"cQw" = (
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
"cQx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQz" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
- pixel_x = -24;
- shock_proof = 0
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -79630,19 +70073,17 @@
/area/medical/surgeryobs)
"cQA" = (
/obj/structure/morgue{
- dir = 8;
- icon_state = "morgue1";
- tag = "icon-morgue1 (WEST)"
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
"cQD" = (
+/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/decal/warning_stripes/southeast,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -79654,14 +70095,12 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -79673,9 +70112,7 @@
dir = 5
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQG" = (
/obj/structure/rack,
/obj/item/crowbar/red,
@@ -79698,26 +70135,20 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQI" = (
/obj/structure/closet,
/obj/item/clothing/glasses/science,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQK" = (
/obj/machinery/door/poddoor/shutters/preopen{
dir = 8;
@@ -79733,12 +70164,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQM" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -79750,8 +70178,7 @@
pixel_x = 26
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/computer/pandemic,
/turf/simulated/floor/plasteel{
@@ -79799,17 +70226,16 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/research{
name = "Research Shuttle and Xenobiology";
req_access_txt = "47"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cQR" = (
/obj/machinery/power/apc{
cell_type = 5000;
@@ -79822,12 +70248,6 @@
icon_state = "0-2"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -79838,31 +70258,26 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/south,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
"cQU" = (
/obj/item/storage/box/lights/mixed,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -79870,9 +70285,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cQW" = (
/turf/simulated/wall/r_wall,
/area/maintenance/starboardsolar)
@@ -79886,7 +70299,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"cQZ" = (
@@ -79914,26 +70326,24 @@
pixel_x = -2;
pixel_y = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreen"
},
/area/medical/virology)
"cRd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"cRe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -79944,6 +70354,9 @@
pixel_x = -28
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -79960,10 +70373,9 @@
req_access_txt = "27"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRj" = (
/obj/machinery/door/airlock/centcom{
icon = 'icons/obj/doors/airlocks/station/maintenance.dmi';
@@ -79972,7 +70384,6 @@
overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi';
req_access_txt = "27"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
@@ -79980,30 +70391,14 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cRk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/maintenance/aft)
"cRl" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -80011,9 +70406,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80026,19 +70419,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cRn" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"cRn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80047,17 +70435,13 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRp" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -80065,41 +70449,26 @@
},
/area/medical/medbay3)
"cRq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atm{
pixel_y = 32
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cRr" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cRs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"cRt" = (
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
@@ -80128,8 +70497,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80144,29 +70517,27 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cRx" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cRy" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
@@ -80178,15 +70549,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80203,21 +70572,14 @@
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cRC" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;7;47;29"
},
/obj/structure/cable/yellow{
@@ -80225,29 +70587,17 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cRD" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/maintenance/aft)
"cRE" = (
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80276,22 +70626,25 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "7;12;47"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRI" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -80299,9 +70652,7 @@
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cRJ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -80319,27 +70670,22 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cRK" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -80354,31 +70700,18 @@
},
/area/medical/medbay3)
"cRM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
},
/area/medical/medbay3)
-"cRN" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cRO" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -80400,14 +70733,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRQ" = (
/obj/machinery/power/apc{
dir = 8;
@@ -80423,14 +70754,9 @@
/area/maintenance/starboardsolar)
"cRR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cRS" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -80450,9 +70776,7 @@
pixel_x = 3;
pixel_y = 4
},
-/obj/item/storage/box/masks{
- pixel_y = 0
- },
+/obj/item/storage/box/masks,
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -80460,9 +70784,7 @@
},
/area/medical/medbay3)
"cRW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "whitegreen"
},
@@ -80484,15 +70806,6 @@
},
/turf/simulated/floor/wood,
/area/medical/psych)
-"cRY" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitegreen"
- },
-/area/medical/virology)
"cRZ" = (
/obj/structure/chair/stool,
/obj/machinery/firealarm{
@@ -80512,6 +70825,9 @@
},
/area/chapel/office)
"cSb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80524,8 +70840,7 @@
pixel_y = 32
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80540,15 +70855,14 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/chapel/office)
"cSe" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -80558,7 +70872,10 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -80577,9 +70894,7 @@
req_access_txt = "22"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"cSh" = (
@@ -80588,7 +70903,6 @@
name = "mysterious old book of "
},
/obj/item/reagent_containers/food/drinks/bottle/holywater{
- name = "flask of holy water";
pixel_x = -2;
pixel_y = 2
},
@@ -80598,15 +70912,12 @@
/obj/item/organ/internal/heart,
/obj/structure/closet/secure_closet/chaplain,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/office)
"cSi" = (
/obj/machinery/door/airlock/maintenance{
name = "Chapel Maintenance Access ";
- req_access_txt = "0";
req_one_access_txt = "12;27"
},
/obj/structure/cable/yellow{
@@ -80615,22 +70926,22 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSj" = (
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSk" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80648,16 +70959,13 @@
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSn" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -80674,13 +70982,14 @@
icon_state = "pipe-j2"
},
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -80697,16 +71006,23 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSr" = (
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -80729,17 +71045,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "7;12;47"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSu" = (
/obj/machinery/door/poddoor/preopen{
id_tag = "xeno_blastdoor";
@@ -80749,13 +71059,10 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cSv" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -80778,8 +71085,7 @@
/area/assembly/robotics)
"cSy" = (
/obj/machinery/power/terminal{
- dir = 1;
- icon_state = "term"
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
@@ -80789,7 +71095,6 @@
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -80818,13 +71123,8 @@
/obj/machinery/atmospherics/unary/tank/air{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSE" = (
@@ -80833,35 +71133,22 @@
name = "virology air connector port"
},
/obj/machinery/portable_atmospherics/canister/air,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSF" = (
/obj/item/trash/popcorn,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSG" = (
/obj/item/reagent_containers/food/snacks/sosjerky,
/obj/structure/table/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSH" = (
@@ -80870,14 +71157,10 @@
},
/obj/structure/table/glass,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cSI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/crema_switch{
pixel_x = -25
},
@@ -80892,9 +71175,7 @@
/obj/effect/landmark/start{
name = "Chaplain"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -80938,12 +71219,6 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -80959,8 +71234,7 @@
"cSR" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSS" = (
@@ -80970,10 +71244,8 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cST" = (
@@ -80989,8 +71261,7 @@
pixel_y = 29
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSU" = (
@@ -81005,12 +71276,10 @@
id = "chapelescapeshutters";
name = "Side Windows Shutter Control";
pixel_x = -6;
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cSV" = (
@@ -81026,7 +71295,6 @@
})
"cSW" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -81038,19 +71306,20 @@
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cSX" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -81061,14 +71330,15 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cSZ" = (
/obj/structure/table/glass,
/obj/item/paper_bin{
@@ -81092,29 +71362,26 @@
/obj/machinery/space_heater,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cTd" = (
/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTe" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81123,7 +71390,6 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/turf/simulated/floor/plasteel{
@@ -81136,9 +71402,6 @@
dir = 4;
pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/camera{
c_tag = "Virology - Lab";
dir = 8;
@@ -81146,12 +71409,8 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "whitegreen"
@@ -81166,6 +71425,12 @@
codes_txt = "patrol;next_patrol=10-Aft-To-Central";
location = "9.4-Escape-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -81191,7 +71456,6 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/sign/double/map/right{
@@ -81223,6 +71487,8 @@
name = "Secure Lab";
req_access_txt = "47"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81241,9 +71507,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTp" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -81255,24 +71519,20 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"cTq" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Departure Lounge - Port Fore";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-24";
- layer = 4.1;
- tag = "icon-plant-24"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -81312,8 +71572,7 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/medical/virology)
"cTw" = (
@@ -81331,7 +71590,6 @@
name = "robotics lab shutters"
},
/obj/machinery/door/window/eastright{
- dir = 4;
name = "Robotics Desk";
req_access_txt = "29"
},
@@ -81353,14 +71611,14 @@
"cTz" = (
/obj/machinery/camera{
c_tag = "Chapel Office - Backroom";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/item/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
pixel_x = 27
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -81383,7 +71641,6 @@
},
/area/chapel/office)
"cTC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -81393,6 +71650,7 @@
codes_txt = "patrol;next_patrol=9.2-Escape-2";
location = "9.1-Escape-1"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
@@ -81422,15 +71680,7 @@
name = "maint grille or trash spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cTG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
+/area/maintenance/aft)
"cTH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -81447,9 +71697,11 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/chapel/main)
@@ -81457,6 +71709,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/chapel/main)
"cTM" = (
@@ -81468,6 +71726,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -81478,9 +71742,7 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cTO" = (
/obj/structure/chair{
dir = 4
@@ -81497,6 +71759,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -81506,6 +71774,12 @@
dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -81540,6 +71814,12 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -81561,16 +71841,14 @@
},
/obj/machinery/camera{
c_tag = "Departure Lounge - Starboard Fore";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-14";
- layer = 4.1;
- tag = "icon-plant-14"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -81598,31 +71876,15 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"cTZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cUa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance";
req_access_txt = "5"
@@ -81635,24 +71897,18 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/item/trash/cheesie,
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/trash/cheesie,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"cUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cUd" = (
/obj/structure/cable{
d1 = 2;
@@ -81661,8 +71917,7 @@
},
/obj/machinery/camera{
c_tag = "Aft Starboard Solar Maintenance";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -81682,10 +71937,12 @@
icon_state = "1-4"
},
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81700,10 +71957,6 @@
name = "xeno_spawn";
pixel_x = -1
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
"cUg" = (
@@ -81714,7 +71967,6 @@
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/plasteel{
@@ -81722,16 +71974,11 @@
},
/area/chapel/office)
"cUh" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -81742,25 +71989,11 @@
opacity = 1;
req_access_txt = "27"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/office)
-"cUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/office)
"cUk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -81772,10 +72005,7 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -81804,31 +72034,19 @@
icon_state = "dark"
},
/area/chapel/office)
-"cUo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whiteblue"
- },
-/area/medical/medbay3)
"cUp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81842,11 +72060,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -81856,10 +72074,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -81870,16 +72084,15 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
"cUs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/carpet,
/area/chapel/main)
@@ -81889,24 +72102,12 @@
name = "Chapel";
opacity = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/main)
"cUu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -81917,17 +72118,6 @@
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cUw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
@@ -81940,32 +72130,15 @@
pixel_y = 32
},
/obj/machinery/camera{
- c_tag = "Chapel - Fore";
- dir = 2;
- network = list("SS13")
+ c_tag = "Chapel - Fore"
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
-"cUy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"cUz" = (
/obj/machinery/status_display{
- density = 0;
layer = 4
},
/turf/simulated/wall,
@@ -81978,11 +72151,7 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -82004,12 +72173,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
@@ -82031,12 +72194,6 @@
dir = 1;
pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
@@ -82051,10 +72208,7 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -82066,24 +72220,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
"cUG" = (
-/obj/machinery/atmospherics/unary/vent_pump,
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 28
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -82093,54 +72245,32 @@
})
"cUI" = (
/obj/structure/chair,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
-"cUJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"cUK" = (
/obj/item/seeds/berry,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cUL" = (
/obj/structure/reagent_dispensers/watertank,
/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cUM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/area/maintenance/aft)
"cUN" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -82176,15 +72306,6 @@
/obj/machinery/atmospherics/unary/portables_connector,
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
-"cUR" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/office)
"cUS" = (
/obj/machinery/door/morgue{
name = "Confession Booth (Chaplain)";
@@ -82215,13 +72336,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
@@ -82256,11 +72376,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -82271,16 +72391,6 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cVd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
@@ -82288,9 +72398,7 @@
/obj/machinery/biogenerator,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVf" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -82308,40 +72416,22 @@
/obj/item/plant_analyzer,
/obj/item/cultivator,
/obj/item/reagent_containers/glass/bucket,
-/obj/structure/rack{
- layer = 2.8
- },
+/obj/structure/rack,
/obj/item/seeds/corn,
/obj/item/seeds/cabbage,
/obj/item/seeds/ambrosia,
/obj/item/seeds/grass,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cVh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
+/area/maintenance/aft)
"cVi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cVj" = (
-/obj/structure/rack{
- layer = 2.8
- },
+/obj/structure/rack,
/obj/item/seeds/wheat,
/obj/item/seeds/watermelon,
/obj/item/seeds/watermelon,
@@ -82349,9 +72439,7 @@
/obj/item/seeds/glowshroom,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVk" = (
/turf/simulated/wall,
/area/hallway/secondary/exit{
@@ -82362,6 +72450,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -82373,6 +72467,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -82386,6 +72484,8 @@
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -82393,36 +72493,24 @@
name = "\improper Secure Lab"
})
"cVo" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/carrot,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVp" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/plant_analyzer,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVq" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/glowshroom,
/obj/item/seeds/corn,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cVr" = (
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
@@ -82431,6 +72519,12 @@
dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -82445,17 +72539,22 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
"cVv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -82476,8 +72575,7 @@
/area/chapel/main)
"cVA" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -82485,8 +72583,8 @@
},
/area/chapel/main)
"cVC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
@@ -82497,6 +72595,12 @@
dir = 4
},
/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -82529,12 +72633,12 @@
name = "biohazard containment door"
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/medical/research)
"cVL" = (
/obj/structure/closet/coffin,
/obj/machinery/light/small{
@@ -82575,6 +72679,9 @@
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 29
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreen"
@@ -82591,7 +72698,7 @@
/turf/simulated/floor/carpet,
/area/chapel/main)
"cVR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -82639,33 +72746,8 @@
icon_state = "chapel"
},
/area/chapel/main)
-"cVZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cWa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"cWb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/northwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -82686,6 +72768,9 @@
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whitegreen"
@@ -82702,7 +72787,6 @@
},
/obj/machinery/camera{
c_tag = "Virology - Break Room";
- dir = 2;
network = list("SS13","Medbay")
},
/turf/simulated/floor/plasteel{
@@ -82710,18 +72794,6 @@
icon_state = "whitegreen"
},
/area/medical/virology)
-"cWf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/southwestcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"cWg" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/warning_stripes/northeast,
@@ -82732,15 +72804,14 @@
name = "\improper Secure Lab"
})
"cWh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -82768,13 +72839,11 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
@@ -82804,8 +72873,7 @@
},
/obj/item/restraints/handcuffs,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/radio/off,
/obj/machinery/requests_console{
@@ -82821,7 +72889,7 @@
name = "\improper Departure Lounge"
})
"cWp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -82829,23 +72897,9 @@
},
/area/chapel/main)
"cWq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/chair,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cWr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/chapel/main)
+/area/maintenance/aft)
"cWs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -82859,13 +72913,13 @@
/area/chapel/main)
"cWt" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/centcom{
name = "Funeral Parlour";
opacity = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -82873,43 +72927,6 @@
icon_state = "dark"
},
/area/chapel/main)
-"cWu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
-"cWv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"cWw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
-"cWy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"cWz" = (
/turf/simulated/floor/plasteel{
icon_state = "chapel"
@@ -82917,11 +72934,12 @@
/area/chapel/main)
"cWA" = (
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -82934,13 +72952,7 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -82949,22 +72961,20 @@
/obj/structure/closet/l3closet/scientist,
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Secure Lab - Airlock";
dir = 8;
network = list("SS13","RD")
},
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -82978,8 +72988,10 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -82991,9 +73003,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
@@ -83024,9 +73037,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cWK" = (
/obj/structure/cable{
d1 = 4;
@@ -83038,9 +73049,11 @@
"cWL" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreen"
@@ -83048,7 +73061,6 @@
/area/medical/virology)
"cWM" = (
/obj/machinery/door/window/eastleft{
- dir = 4;
name = "Coffin Storage";
req_access_txt = "22"
},
@@ -83059,8 +73071,7 @@
pixel_y = -2
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cWO" = (
@@ -83071,20 +73082,10 @@
name = "Chaplain"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
- },
-/area/chapel/main)
-"cWP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "vault"
},
/area/chapel/main)
"cWR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -83094,7 +73095,7 @@
pixel_y = 5
},
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -83105,14 +73106,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -83134,6 +73127,12 @@
})
"cWV" = (
/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -83141,25 +73140,21 @@
"cWW" = (
/obj/item/storage/bible,
/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/main)
-"cWX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "chapel"
- },
-/area/chapel/main)
"cWY" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/obj/machinery/camera{
c_tag = "Chapel - Starboard";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -83197,16 +73192,6 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cXd" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
@@ -83214,30 +73199,15 @@
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"cXf" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
"cXg" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -83248,7 +73218,6 @@
"cXh" = (
/obj/structure/closet/l3closet/scientist,
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -83265,11 +73234,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -83287,13 +73254,11 @@
},
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Chapel - Funeral Parlour";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -83304,6 +73269,9 @@
pixel_y = 7
},
/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -83323,20 +73291,11 @@
icon_state = "4-8"
},
/obj/machinery/camera{
- c_tag = "Fitness Room - Fore";
- dir = 2
+ c_tag = "Fitness Room - Fore"
},
/obj/machinery/alarm{
pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -83344,15 +73303,6 @@
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
-"cXp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"cXq" = (
/obj/structure/table/glass,
/obj/item/storage/box/beakers{
@@ -83364,24 +73314,19 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
"cXr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 3;
icon_state = "whitebluecorner"
},
/area/medical/medbay3)
"cXs" = (
-/obj/machinery/ai_status_display{
- pixel_y = 0
- },
+/obj/machinery/ai_status_display,
/turf/simulated/wall,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -83399,8 +73344,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -83411,7 +73355,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -83437,11 +73380,11 @@
pixel_x = -25;
req_access_txt = "55"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -83449,7 +73392,6 @@
"cXw" = (
/obj/machinery/vending/medical,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -83459,20 +73401,20 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cXz" = (
/obj/machinery/smartfridge/secure/extract,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -83482,7 +73424,6 @@
/obj/item/reagent_containers/spray/cleaner,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/medbay3)
@@ -83494,8 +73435,7 @@
},
/obj/machinery/camera{
c_tag = "Departure Lounge - Security Post";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/item/book/manual/security_space_law{
pixel_x = -4;
@@ -83505,8 +73445,6 @@
pixel_x = 4
},
/obj/item/radio/intercom{
- broadcasting = 0;
- listening = 1;
name = "Station Intercom (General)";
pixel_y = -32
},
@@ -83523,6 +73461,12 @@
name = "Civilian"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -83530,17 +73474,17 @@
"cXE" = (
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/main)
"cXF" = (
/obj/machinery/door/window{
- dir = 4;
name = "Mass Driver";
req_access_txt = "22"
},
@@ -83558,8 +73502,6 @@
dir = 8;
pixel_x = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -83576,15 +73518,13 @@
/area/chapel/main)
"cXJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cXK" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cXL" = (
@@ -83593,8 +73533,7 @@
id = "chapelspaceshutters";
name = "Space Window Shutter Control";
pixel_x = -6;
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/machinery/light_switch{
pixel_x = 6;
@@ -83620,9 +73559,6 @@
/turf/simulated/floor/plating,
/area/solar/starboard)
"cXO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/chem_heater{
pixel_x = -4;
pixel_y = 4
@@ -83634,17 +73570,6 @@
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"cXP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurple"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
"cXQ" = (
/obj/structure/chair/office/light{
dir = 1
@@ -83652,9 +73577,6 @@
/obj/effect/landmark/start{
name = "Scientist"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
@@ -83688,12 +73610,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -83705,11 +73627,9 @@
"cXU" = (
/obj/machinery/camera{
c_tag = "Secure Lab - Fore";
- dir = 2;
network = list("SS13","RD")
},
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 26
},
/obj/structure/cable/yellow{
@@ -83769,8 +73689,7 @@
})
"cXY" = (
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-11";
- tag = "icon-plant-11"
+ icon_state = "plant-11"
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -83782,6 +73701,8 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -83790,15 +73711,14 @@
})
"cYa" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -83806,6 +73726,8 @@
/area/medical/cmo)
"cYb" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -83824,6 +73746,8 @@
"cYe" = (
/obj/structure/window/reinforced,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -83842,27 +73766,20 @@
name = "\improper Departure Lounge"
})
"cYg" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/main)
"cYh" = (
/obj/machinery/door/morgue{
- name = "Chapel Garden";
- req_access_txt = "0"
+ name = "Chapel Garden"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "cult";
- tag = "icon-cult"
+ icon_state = "cult"
},
/area/chapel/main)
"cYi" = (
@@ -83877,8 +73794,7 @@
"cYj" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYk" = (
@@ -83887,8 +73803,7 @@
name = "Chaplain"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYl" = (
@@ -83903,39 +73818,15 @@
},
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"cYm" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/glowshroom,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cYp" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
-"cYq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
+/area/maintenance/aft)
"cYr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -83976,20 +73867,20 @@
name = "\improper Secure Lab"
})
"cYw" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/ambrosia,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cYx" = (
/obj/structure/chair{
dir = 1
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -84005,7 +73896,10 @@
location = "14.5-Recreation"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -84055,16 +73949,16 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
"cYI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/junction{
dir = 2;
- icon_state = "pipe-j2";
- tag = "icon-pipe-j2"
+ icon_state = "pipe-j2"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -84076,15 +73970,9 @@
},
/area/medical/morgue)
"cYK" = (
-/obj/machinery/atmospherics/unary/portables_connector{
- dir = 1;
- name = "xenobiology air connector port"
- },
-/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "whitepurple";
- tag = "icon-whitepurple (SOUTHWEST)"
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -84094,9 +73982,7 @@
dir = 4;
pixel_x = -23
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "whitegreen"
@@ -84104,12 +73990,6 @@
/area/medical/virology)
"cYM" = (
/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
icon_state = "whitegreen"
},
@@ -84180,7 +74060,6 @@
"cYU" = (
/obj/machinery/monkey_recycler,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology{
@@ -84196,7 +74075,6 @@
pixel_y = -29
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology{
@@ -84208,7 +74086,6 @@
req_access_txt = "6"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -84241,16 +74118,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/camera{
c_tag = "Chapel Office";
- dir = 8;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -84306,16 +74176,12 @@
/obj/structure/table/wood,
/obj/machinery/bottler,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZh" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/turf/simulated/floor/wood,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZi" = (
/obj/machinery/camera{
c_tag = "Dormitories - Fore";
@@ -84333,17 +74199,10 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/solar/starboard)
-"cZk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/wall,
-/area/chapel/main)
"cZl" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-24";
- layer = 4.1;
- tag = "icon-plant-24"
+ layer = 4.1
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -84355,12 +74214,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
@@ -84378,9 +74237,6 @@
/area/space)
"cZq" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -84388,12 +74244,9 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZr" = (
/turf/simulated/wall,
/area/toxins/xenobiology{
@@ -84411,16 +74264,13 @@
/area/chapel/office)
"cZt" = (
/obj/machinery/power/apc{
- dir = 2;
- lighting = 3;
name = "Chapel Office APC";
pixel_y = -25
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -84437,43 +74287,26 @@
"cZv" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZw" = (
/obj/machinery/light/small{
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/machinery/iv_drip,
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"cZx" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
+/area/maintenance/aft)
"cZy" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -84483,9 +74316,10 @@
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -84496,13 +74330,13 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Arcade"
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet/arcade,
/area/crew_quarters/fitness{
name = "\improper Arcade"
@@ -84514,7 +74348,6 @@
/area/solar/starboard)
"cZC" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
@@ -84524,8 +74357,7 @@
/area/chapel/main)
"cZD" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -84557,11 +74389,7 @@
icon_state = "plant-21";
layer = 4.1;
pixel_x = -3;
- pixel_y = 3;
- tag = "icon-plant-21"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ pixel_y = 3
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -84569,15 +74397,11 @@
},
/area/medical/medbay3)
"cZJ" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/cultivator,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZK" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -84588,8 +74412,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -84607,40 +74431,18 @@
name = "\improper Secure Lab"
})
"cZN" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/watermelon,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"cZO" = (
/obj/machinery/door/airlock/medical{
name = "Psych Office";
req_access_txt = "64"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/wood,
/area/medical/psych)
-"cZQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay3)
"cZR" = (
/obj/structure/chair/comfy/black{
dir = 8
@@ -84650,6 +74452,22 @@
icon_state = "chapel"
},
/area/chapel/main)
+"cZS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Transit Tube";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/break_room)
"cZT" = (
/obj/structure/lattice,
/obj/effect/spawner/window/reinforced,
@@ -84664,9 +74482,9 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -84684,8 +74502,7 @@
/area/solar/starboard)
"cZX" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
@@ -84696,15 +74513,11 @@
},
/area/chapel/main)
"cZY" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
+/obj/machinery/hydroponics/soil,
/obj/item/seeds/berry,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daa" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -84744,16 +74557,14 @@
dir = 1
},
/obj/item/twohanded/required/kirbyplants{
- icon_state = "plant-25";
- tag = "icon-plant-25"
+ icon_state = "plant-25"
},
/turf/simulated/floor/wood,
/area/medical/psych)
"dae" = (
/obj/machinery/camera{
c_tag = "Head of Personnel's Office";
- dir = 1;
- network = list("SS13")
+ dir = 1
},
/obj/structure/table/wood,
/obj/item/storage/box/PDAs{
@@ -84766,16 +74577,10 @@
/area/crew_quarters/heads)
"daf" = (
/obj/machinery/firealarm{
- dir = 2;
pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Medbay Surgery 1 North";
- network = list("SS13")
- },
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+ c_tag = "Medbay Surgery 1 North"
},
/turf/simulated/floor/wood,
/area/medical/psych)
@@ -84791,14 +74596,12 @@
"dak" = (
/obj/machinery/alarm{
dir = 8;
- icon_state = "alarm0";
pixel_x = 24
},
/obj/structure/closet/secure_closet/psychiatrist,
/turf/simulated/floor/wood,
/area/medical/psych)
"dan" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -84806,19 +74609,13 @@
},
/obj/effect/decal/warning_stripes/north,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dap" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/beacon,
/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
@@ -84848,9 +74645,7 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -84865,8 +74660,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -84877,21 +74672,18 @@
"dat" = (
/obj/machinery/camera{
c_tag = "Departure Lounge - Starboard Aft";
- dir = 8;
- network = list("SS13")
+ dir = 8
},
/obj/machinery/light{
dir = 4
},
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_x = 29
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-16";
- layer = 4.1;
- tag = "icon-plant-16"
+ layer = 4.1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -84901,12 +74693,10 @@
"dau" = (
/obj/machinery/camera{
c_tag = "Departure Lounge - Port Aft";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -84928,17 +74718,6 @@
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"daw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
"dax" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -84946,9 +74725,6 @@
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -84960,30 +74736,27 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"day" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daF" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -85001,19 +74774,6 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
-"daH" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85051,17 +74811,15 @@
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"daN" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -85074,12 +74832,11 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/medbay3)
"daP" = (
@@ -85093,18 +74850,17 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/medical/psych)
"daR" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85141,9 +74897,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/carpet,
/area/medical/psych)
"dbb" = (
@@ -85153,9 +74906,6 @@
icon_state = "4-8"
},
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/carpet,
/area/medical/psych)
"dbc" = (
@@ -85172,6 +74922,7 @@
/obj/effect/landmark{
name = "lightsout"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -85203,7 +74954,6 @@
/turf/simulated/floor/carpet,
/area/medical/psych)
"dbj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=9.4-Escape-4";
@@ -85219,7 +74969,6 @@
/obj/item/crowbar,
/obj/machinery/camera{
c_tag = "Medbay Cryo";
- dir = 2;
network = list("SS13","Medbay")
},
/obj/item/screwdriver{
@@ -85240,7 +74989,6 @@
},
/area/medical/cryo)
"dbm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/south,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=9.3-Escape-3";
@@ -85250,30 +74998,6 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"dbn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
"dbo" = (
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel{
@@ -85289,7 +75013,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/plasteel{
@@ -85326,37 +75050,29 @@
pixel_x = -32
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dbw" = (
/obj/item/radio/intercom{
- frequency = 1459;
name = "Station Intercom (General)";
pixel_y = 21
},
/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -85366,10 +75082,10 @@
/obj/structure/chair/comfy/black{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -85390,20 +75106,14 @@
dir = 4;
icon_state = "whitegreen"
},
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dbz" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85435,14 +75145,12 @@
dir = 1
},
/obj/machinery/status_display{
- density = 0;
layer = 4;
pixel_y = 32
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -85498,8 +75206,7 @@
/obj/item/reagent_containers/dropper,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
@@ -85527,12 +75234,15 @@
},
/area/medical/medbay3)
"dbH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/wood,
/area/medical/psych)
"dbI" = (
@@ -85559,6 +75269,8 @@
name = "Scientist"
},
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85578,15 +75290,13 @@
/obj/machinery/chem_dispenser,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitepurplefull";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitepurplefull"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
"dbL" = (
/obj/machinery/mass_driver{
- dir = 2;
id_tag = "chapelgun"
},
/obj/structure/sign/securearea{
@@ -85691,6 +75401,8 @@
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85734,19 +75446,13 @@
})
"dbX" = (
/obj/machinery/light/small,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/obj/machinery/door_control{
id = "chapelparlourshutters";
name = "Window Shutter Control";
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"dbZ" = (
@@ -85784,18 +75490,6 @@
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
-"dcg" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
@@ -85832,6 +75526,9 @@
pixel_y = -29
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85902,7 +75599,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurple"
},
/area/toxins/xenobiology{
@@ -85970,7 +75666,6 @@
},
/obj/machinery/disposal,
/obj/machinery/alarm{
- frequency = 1439;
pixel_y = 23
},
/obj/effect/decal/warning_stripes/southwest,
@@ -86092,8 +75787,7 @@
})
"dcK" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
@@ -86238,8 +75932,7 @@
/area/space)
"ddR" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -86342,22 +76035,17 @@
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/engine,
/area/engine/engineering)
"ded" = (
/obj/machinery/dye_generator,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "barber"
@@ -86370,43 +76058,29 @@
name = "Medbay Aft"
})
"deg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
req_one_access_txt = "12;5;39;6"
},
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"deh" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dei" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
/area/medical/psych)
"dej" = (
@@ -86424,49 +76098,37 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"del" = (
/obj/item/candle,
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
"dem" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- tag = "icon-vault"
+ icon_state = "vault"
},
/area/chapel/main)
-"den" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"deo" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
base_state = "right";
- dir = 8;
icon_state = "right";
- name = "Outer Window";
- req_access_txt = "0"
+ name = "Outer Window"
},
/obj/machinery/door/window/brigdoor{
- dir = 4;
name = "Security Desk";
req_access_txt = "1"
},
@@ -86482,6 +76144,9 @@
"dep" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/carpet,
/area/medical/psych)
"deq" = (
@@ -86493,12 +76158,13 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/medical/psych)
"des" = (
@@ -86528,39 +76194,21 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/wall/r_wall,
/area/medical/virology)
-"dew" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
-"dey" = (
-/obj/machinery/atmospherics/unary/outlet_injector/on{
- dir = 1
- },
-/turf/simulated/floor/plating/airless,
-/area/space/nearstation)
"dez" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
-"deA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
- },
-/turf/simulated/wall/r_wall,
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
@@ -86622,9 +76270,7 @@
pixel_y = -8
},
/turf/simulated/wall,
-/area/maintenance/maintcentral{
- name = "Central Maintenance"
- })
+/area/maintenance/maintcentral)
"deG" = (
/obj/structure/chair/office/dark{
dir = 4
@@ -86651,14 +76297,13 @@
pixel_x = -3;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -86692,12 +76337,8 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/chapel/main)
"deQ" = (
@@ -86805,12 +76446,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"deZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop)
"dfa" = (
/obj/machinery/computer/rdconsole/mechanics,
/turf/simulated/floor/plasteel{
@@ -86825,9 +76460,6 @@
},
/area/engine/mechanic_workshop)
"dfh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
- },
/obj/structure/chair/office/light{
dir = 1;
pixel_y = 3
@@ -86841,9 +76473,7 @@
/obj/effect/decal/warning_stripes/northeastcorner,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dfj" = (
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/north,
@@ -86897,16 +76527,11 @@
},
/area/chapel/main)
"dfq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/effect/landmark/start{
name = "Mechanic"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 7;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -86919,28 +76544,12 @@
opacity = 1;
req_access_txt = "27"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/chapel/main)
-"dft" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "vault"
- },
-/area/engine/mechanic_workshop)
"dfu" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -86969,21 +76578,13 @@
/area/chapel/main)
"dfx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 10
},
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
},
/area/engine/mechanic_workshop)
-"dfy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/engine,
-/area/engine/mechanic_workshop)
"dfz" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -86995,27 +76596,17 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"dfA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/engineering/glass{
name = "Mechanic Workshop";
req_access_txt = "70"
@@ -87035,17 +76626,16 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"dfD" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/obj/machinery/camera{
@@ -87054,6 +76644,9 @@
network = list("SS13","RD")
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -87061,11 +76654,11 @@
name = "\improper Secure Lab"
})
"dfG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -87087,18 +76680,11 @@
name = "\improper Secure Lab"
})
"dfI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/vending/cola,
/turf/simulated/floor/plasteel{
dir = 5;
@@ -87107,10 +76693,6 @@
/area/engine/mechanic_workshop)
"dfJ" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -87125,14 +76707,13 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop)
"dfK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "vault"
@@ -87156,9 +76737,7 @@
pixel_y = 32
},
/obj/machinery/shower{
- dir = 4;
- icon_state = "shower";
- tag = "icon-shower (EAST)"
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
@@ -87166,10 +76745,6 @@
},
/area/medical/virology)
"dfT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -87178,16 +76753,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dfU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/obj/effect/decal/warning_stripes/west,
/obj/structure/cable/yellow{
d1 = 4;
@@ -87197,21 +76771,26 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
"dfV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -87238,17 +76817,16 @@
name = "\improper Secure Lab"
})
"dfX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dfY" = (
@@ -87269,29 +76847,24 @@
},
/area/medical/virology)
"dfZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "bluecorner"
},
/area/hallway/secondary/entry{
name = "Arrivals"
})
"dgb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -87302,11 +76875,13 @@
icon_state = "map-left-MS";
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/hallway/secondary/entry{
@@ -87315,8 +76890,7 @@
"dgg" = (
/obj/machinery/camera{
c_tag = "Chapel - Port";
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -87354,18 +76928,6 @@
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"dgl" = (
-/obj/machinery/light{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
@@ -87402,15 +76964,6 @@
})
"dgr" = (
/turf/simulated/wall/r_wall,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
-"dgs" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
@@ -87429,18 +76982,14 @@
"dgu" = (
/obj/effect/decal/warning_stripes/south,
/obj/structure/reagent_dispensers/watertank,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
"dgv" = (
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -87493,9 +77042,7 @@
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dgD" = (
/obj/machinery/camera{
c_tag = "Quartermaster's Office";
@@ -87517,11 +77064,14 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/light/small{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -87537,12 +77087,13 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dgH" = (
/obj/structure/closet/l3closet,
/obj/effect/decal/warning_stripes/southeast,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -87553,12 +77104,10 @@
/area/maintenance/starboard)
"dgJ" = (
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/obj/machinery/alarm{
dir = 4;
- icon_state = "alarm0";
pixel_x = -22
},
/turf/simulated/floor/engine,
@@ -87571,9 +77120,10 @@
/area/engine/mechanic_workshop)
"dgL" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"dgO" = (
@@ -87583,21 +77133,11 @@
"dgW" = (
/obj/machinery/computer/camera_advanced/xenobio,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"dhd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
"dhf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -87605,9 +77145,7 @@
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhi" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -87626,9 +77164,6 @@
},
/area/chapel/main)
"dhk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -87637,10 +77172,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dhl" = (
@@ -87655,9 +77192,6 @@
/turf/simulated/floor/plating,
/area/chapel/main)
"dhm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -87666,10 +77200,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen";
- tag = "icon-whitehall (WEST)"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dhn" = (
@@ -87685,14 +77221,9 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhr" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -87703,109 +77234,85 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"dht" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhu" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhw" = (
/obj/structure/closet/crate,
/obj/item/clothing/gloves/color/fyellow,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitebluecorner"
},
/area/medical/genetics)
"dhy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "whiteblue"
},
/area/medical/genetics)
"dhz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
},
/area/medical/genetics)
"dhA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- level = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -87829,81 +77336,107 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/effect/decal/warning_stripes/south,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "storage room";
req_access = "12"
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhG" = (
/obj/item/seeds/watermelon,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"dhI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/mob/living/simple_animal/bot/cleanbot{
name = "Mopfficer Sweepsky";
on = 0
},
/turf/simulated/floor/plating,
/area/maintenance/fore)
+"dio" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"diT" = (
+/obj/structure/morgue,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"djx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "acute2";
+ name = "Acute 2 Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/exam_room)
"djL" = (
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
/area/security/permabrig)
"dmU" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery2)
-"dnk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
+"dnu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellowcorner"
+ icon_state = "showroomfloor"
},
-/area/hallway/primary/starboard)
+/area/security/main)
"dom" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
+"doV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
"dqh" = (
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"dqm" = (
@@ -87922,38 +77455,28 @@
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
-"dvV" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
+"dtM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit";
+ luminosity = 2
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/area/security/nuke_storage)
"dwC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
-"dxy" = (
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+"dxa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
+ icon_state = "white"
},
-/area/hallway/primary/port)
+/area/medical/surgery2)
"dAs" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
@@ -87964,8 +77487,7 @@
id_tag = "sol_inner";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -87975,13 +77497,76 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dHm" = (
-/obj/machinery/atmospherics/unary/vent_pump,
+"dCV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"dDw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"dDT" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
+"dDV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "green"
+ icon_state = "whitepurple"
},
-/area/hydroponics)
+/area/medical/research)
+"dFD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"dGT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
"dHr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -87999,26 +77584,29 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"dJz" = (
+"dKL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
},
-/turf/simulated/floor/plasteel,
-/area/construction)
-"dMG" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+/area/security/brig)
+"dKR" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/window/reinforced/tinted{
+ dir = 5;
+ max_integrity = 120;
+ reinf = 0
},
-/turf/simulated/floor/engine,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/security/detectives_office)
"dMV" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
@@ -88028,32 +77616,17 @@
icon_state = "dark"
},
/area/atmos)
-"dOL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"dOQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redcorner"
+ icon_state = "whiteblue"
},
-/area/security/permabrig)
-"dPn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
+/area/medical/medbay3)
"dRN" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
@@ -88064,23 +77637,12 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"dSJ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
"dTK" = (
@@ -88090,52 +77652,101 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"dUP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+"dVK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"dWX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "bluecorner"
},
-/area/hallway/primary/central)
+/area/hallway/primary/aft)
"dXb" = (
/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- level = 2
- },
-/obj/machinery/light{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/light,
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/engine,
/area/engine/engineering)
+"dYi" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engine/gravitygenerator)
"dZe" = (
/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/cryo)
-"ebM" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
+"dZM" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "cmoprivacy";
+ name = "privacy shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/medical/cmo)
+"ebA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"ebM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/engine,
/area/engine/engineering)
"ebV" = (
@@ -88161,6 +77772,15 @@
icon_state = "green"
},
/area/hydroponics)
+"edB" = (
+/obj/effect/landmark/start{
+ name = "Life Support Specialist"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
"edK" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -88172,55 +77792,85 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/engineering)
-"ehr" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/library)
-"elv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"egZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
- dir = 2;
+ dir = 4;
icon_state = "redcorner"
},
-/area/hallway/primary/fore)
-"elA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+/area/security/brig)
+"ehr" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"eiF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/explab)
+"ekd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
"elK" = (
/obj/effect/spawner/airlock/w_to_e,
/turf/simulated/wall/r_wall,
/area/security/permabrig)
-"erQ" = (
-/obj/structure/window/reinforced{
+"eoq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/security/vacantoffice)
+"erv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/fitness{
- name = "\improper Recreation Area"
- })
-"esj" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+/area/crew_quarters/courtroom)
+"esf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/engine/break_room)
+/turf/simulated/floor/wood,
+/area/library)
"evR" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -88234,17 +77884,13 @@
id_tag = "sol_pump"
},
/obj/machinery/airlock_sensor{
- frequency = 1379;
id_tag = "sol_sensor";
pixel_x = 12;
pixel_y = -25
},
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
id_tag = "sol_airlock";
- pixel_x = 0;
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "sol_pump";
tag_chamber_sensor = "sol_sensor";
tag_exterior_door = "sol_outer";
@@ -88252,34 +77898,81 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
-"eIn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"eGG" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"eIg" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "surgeryobs2";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
- },
-/area/crew_quarters/kitchen)
-"eKN" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/medical/surgery1)
+"eKV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"eKV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
/area/medical/reception)
+"eNd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/engine/mechanic_workshop)
+"ePy" = (
+/obj/structure/chair/comfy/beige,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/primary/port)
+"eQf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bcarpet05"
+ },
+/area/blueshield)
+"eQt" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"eRU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/crew_quarters/locker)
"eSt" = (
/obj/structure/window/reinforced{
dir = 1
@@ -88287,62 +77980,109 @@
/obj/effect/spawner/airlock/e_to_w/long/square,
/turf/space,
/area/space/nearstation)
-"eSB" = (
+"eSE" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/courtroom)
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
"eTd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/security/brig)
-"faY" = (
+"eUz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"eYE" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"fga" = (
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
name = "Inner Pipe Access";
req_access_txt = "24"
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/atmos)
-"fgw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+"fhF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/primary/starboard)
+"fhH" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/storage/primary)
+/area/security/brig)
"fhW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Pod Bay"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/hallway/secondary/entry{
name = "Arrivals"
})
+"fla" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
"flr" = (
/obj/structure/window/plasmareinforced{
dir = 1
@@ -88372,10 +78112,12 @@
icon_state = "dark"
},
/area/engine/engineering)
+"foM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
"frX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -88392,18 +78134,38 @@
icon_state = "white"
},
/area/medical/reception)
+"ftd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"fts" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
+"fvO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
"fwO" = (
/obj/machinery/door/airlock/external{
id_tag = "specops_home";
@@ -88411,41 +78173,77 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"fxB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/break_room)
"fyS" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/virology)
-"fDi" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"fBO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"fFk" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/security/warden)
+"fCO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/security/permabrig)
+"fEr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "brown"
+ dir = 4;
+ icon_state = "neutralcorner"
},
-/area/storage/primary)
-"fFl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/hallway/primary/central)
+"fES" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"fGt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
"fHC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 5
@@ -88453,12 +78251,13 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"fNU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+"fOf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
+/area/crew_quarters/locker)
"fPa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -88466,47 +78265,58 @@
icon_state = "dark"
},
/area/chapel/main)
-"fTe" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+"fUI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/crew_quarters/sleep)
+"fWW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
"fZa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
/area/security/permabrig)
-"fZu" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+"fZo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"fZC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/security/brig)
+"fZG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/bluegrid{
+ icon_state = "gcircuit"
},
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/port)
+/area/assembly/chargebay)
"fZV" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -88516,6 +78326,19 @@
/obj/machinery/tcomms/core/station,
/turf/simulated/floor/bluegrid,
/area/tcommsat/server)
+"gaa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/hydroponics)
"gbT" = (
/obj/machinery/door/airlock/external{
id_tag = "admin_home";
@@ -88530,26 +78353,29 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
-"gdk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"gdd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
+ icon_state = "neutralcorner"
},
-/area/chapel/main)
+/area/hallway/primary/starboard)
"gdM" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
@@ -88558,13 +78384,9 @@
"ged" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 8;
pixel_x = -26
@@ -88581,19 +78403,85 @@
/obj/machinery/power/rad_collector{
anchored = 1
},
+/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/visible/supply{
dir = 10
},
-/obj/structure/cable,
/turf/simulated/floor/engine,
/area/engine/supermatter)
-"gog" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
+"gid" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
},
-/area/security/main)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/engine,
+/area/engine/engineering)
+"gip" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/starboard)
+"gkU" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"glM" = (
+/obj/machinery/door_timer/cell_2{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"gnJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
+"gnZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
"gpj" = (
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
@@ -88601,8 +78489,7 @@
"gqj" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/light{
dir = 8
@@ -88610,30 +78497,18 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"gsn" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"gqF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"gsr" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/engine,
-/area/engine/engineering)
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"gwJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/construction)
"gyy" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 9
@@ -88648,7 +78523,6 @@
icon_state = "space";
layer = 4;
name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/atmospherics/unary/portables_connector{
@@ -88658,32 +78532,61 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"gGG" = (
+"gDB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/crew_quarters/courtroom)
-"gHt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/area/bridge)
+"gEi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
- },
-/area/security/brig)
+/turf/simulated/floor/carpet,
+/area/ntrep)
"gIN" = (
/obj/structure/chair/wood/wings{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/theatre)
+"gKb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/security/brig)
+"gMS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/kitchen)
"gOD" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -88695,12 +78598,18 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"gQu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -88712,6 +78621,21 @@
/obj/effect/spawner/airlock/s_to_n,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarstarboard)
+"gSK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"gTp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
"gYM" = (
/obj/machinery/light{
dir = 8
@@ -88721,9 +78645,6 @@
},
/area/engine/engineering)
"gZY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -88731,6 +78652,12 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"har" = (
+/obj/effect/spawner/window,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/civilian/barber)
"hdL" = (
/obj/structure/cable/yellow{
d2 = 8;
@@ -88738,13 +78665,19 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
-"hfb" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+"het" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
},
+/area/security/permabrig)
+"hfb" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -88753,10 +78686,61 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/engineering)
+"hht" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"hio" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/security/brig)
+"hiO" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
+"hjH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/engine,
+/area/toxins/explab)
+"hka" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"hlZ" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -88766,24 +78750,38 @@
/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"hnt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"hmM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/courtroom)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/kitchen)
"hnC" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
},
/turf/simulated/floor/plasteel,
/area/atmos)
+"hnI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/storage/primary)
"hnL" = (
/obj/structure/chair{
dir = 8
@@ -88791,7 +78789,7 @@
/obj/effect/landmark/start{
name = "Civilian"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
@@ -88799,11 +78797,7 @@
"hqN" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ req_access_txt = "10"
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -88819,6 +78813,17 @@
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
+"hwe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
"hxv" = (
/obj/machinery/camera{
c_tag = "Telecoms - Server Room - Aft";
@@ -88827,7 +78832,6 @@
},
/obj/structure/cable/yellow,
/obj/machinery/power/apc{
- dir = 2;
name = "south bump";
pixel_y = -24
},
@@ -88840,38 +78844,48 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
-"hBn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
"hBM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/storage/primary)
+"hCM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/chemistry)
+"hDK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Cargo Bay";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
"hEA" = (
/obj/machinery/camera/autoname{
- dir = 4;
- network = list("SS13")
+ dir = 4
},
/obj/machinery/door_control{
desc = "A remote control-switch for the engineering security doors.";
@@ -88893,43 +78907,21 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "yellow"
},
/area/engine/engineering)
-"hEP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "chapel"
- },
-/area/chapel/main)
"hHE" = (
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
-"hHX" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
"hIG" = (
/obj/machinery/firealarm{
dir = 4;
@@ -88946,17 +78938,35 @@
},
/area/engine/engineering)
"hIT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/security/armoury)
+"hKu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/crew_quarters/kitchen)
+"hLt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
+ name = "maint grille or trash spawner"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"hLH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
@@ -88964,10 +78974,57 @@
/obj/structure/lattice,
/turf/simulated/wall,
/area/space/nearstation)
-"hNq" = (
+"hLW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "8;12"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"hNy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"hRw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"hVe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
"hWr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
@@ -88976,12 +79033,19 @@
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
+"hYq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"hYZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
@@ -88993,22 +79057,6 @@
},
/turf/simulated/floor/wood,
/area/security/vacantoffice)
-"iae" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
"ibi" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/structure/cable/yellow{
@@ -89019,6 +79067,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"ibR" = (
@@ -89046,14 +79100,26 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"ihM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/surgery1)
+"iip" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
"iiB" = (
/obj/docking_port/stationary{
dir = 8;
@@ -89065,37 +79131,133 @@
},
/turf/space,
/area/space)
+"ijf" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"ijt" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"ijy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ilf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"imC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
"imQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "green"
},
/area/hydroponics)
+"imZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "open";
+ id_tag = "acute1";
+ name = "Acute 1 Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/exam_room)
+"inj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutral"
+ },
+/area/hallway/primary/port)
"iof" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
-"izL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
+"iuh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"ivn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"iyv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/explab)
"iAT" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/obj/machinery/camera{
c_tag = "Engineering Supermatter Starboard";
@@ -89109,34 +79271,35 @@
/obj/machinery/atmospherics/unary/portables_connector,
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"iHk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
+/area/maintenance/aft)
+"iEd" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"iHk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
-"iHq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
"iIk" = (
/obj/effect/decal/warning_stripes/east,
/obj/structure/cable/yellow{
@@ -89149,28 +79312,12 @@
"iMC" = (
/obj/effect/decal/warning_stripes/west,
/obj/machinery/light{
- dir = 8;
- icon_state = "tube1"
+ dir = 8
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"iNq" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
"iNu" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -89181,6 +79328,22 @@
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel,
/area/atmos)
+"iNL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "browncorner"
+ },
+/area/hallway/primary/port)
+"iRu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
"iSH" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -89192,31 +79355,40 @@
dir = 8;
name = "Atmos to Loop"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/engine,
/area/engine/engineering)
+"iTo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard)
"iTR" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- level = 2
+ dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"iWi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/research{
- name = "Research Division"
- })
+/area/maintenance/aft)
+"iUs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/courtroom)
"iWv" = (
/obj/machinery/alarm{
dir = 4;
@@ -89224,17 +79396,17 @@
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
-"iYb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+"iXL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "floorgrime"
},
-/area/chapel/main)
+/area/security/permabrig)
+"iZz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
"iZY" = (
/obj/structure/sign/pods,
/turf/simulated/wall,
@@ -89245,6 +79417,17 @@
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
+"jaV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"jbk" = (
/obj/structure/reflector/double{
anchored = 1;
@@ -89254,108 +79437,186 @@
icon_state = "dark"
},
/area/engine/engineering)
-"jdi" = (
-/obj/effect/landmark/start{
- name = "Life Support Specialist"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"jdX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- name = "MiniSat Transit Tube";
- req_one_access_txt = "32;19"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/break_room)
-"jeK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
"jeY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/medical/virology)
+"jgD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery2)
"jhQ" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"jmm" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 2
+"jlB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"jrE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"jwh" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/aft)
+"jzm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"jCi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/maintenance/incinerator)
-"jsQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel/dark,
-/area/tcommsat/server)
+/area/crew_quarters/locker)
"jCT" = (
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
+"jGr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"jGE" = (
/obj/effect/decal/warning_stripes/southeast,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
+"jGU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
+"jKJ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/main)
"jLP" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
+"jNa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"jNj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "vault"
+ },
+/area/turret_protected/ai)
"jPv" = (
/obj/effect/decal/warning_stripes/north,
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
+"jQZ" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
"jUV" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -89368,17 +79629,47 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"jZd" = (
+/obj/machinery/door_timer/cell_3{
+ pixel_y = -32
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "red"
+ },
+/area/security/brig)
"kez" = (
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
-"kkt" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
+"keY" = (
+/obj/effect/landmark/start{
+ name = "Cook"
},
-/turf/simulated/floor/plating,
-/area/atmos)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/kitchen)
+"kfI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"kgV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
"kmF" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -89396,30 +79687,44 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"koz" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"kry" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/wood,
-/area/security/vacantoffice)
-"ksa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
+/area/crew_quarters/bar)
+"krK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"ksa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
+"ksz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"kto" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/green{
@@ -89428,26 +79733,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/space,
/area/space/nearstation)
-"ktv" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9;
- tag = "icon-intact-y (NORTHWEST)"
- },
-/turf/space,
-/area/space/nearstation)
-"ktI" = (
+"ktX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "green"
- },
-/area/hydroponics)
+/turf/simulated/floor/carpet,
+/area/chapel/main)
"kuf" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -89458,30 +79749,76 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
-"kwJ" = (
-/obj/machinery/message_server,
-/turf/simulated/floor/bluegrid,
-/area/tcommsat/server)
-"kxc" = (
+"kvG" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/assembly/chargebay)
-"kxf" = (
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/hor)
+"kwD" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Biohazard_medi";
+ name = "Quarantine Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Surgery Maintenance";
+ req_access_txt = "45"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/turf/simulated/floor/plating,
+/area/medical/surgeryobs)
+"kwJ" = (
+/obj/machinery/message_server,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/server)
+"kxf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/effect/decal/warning_stripes/northwestcorner,
/obj/effect/decal/warning_stripes/southeastcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/engine/engineering)
+"kzH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whiteblue"
+ },
+/area/medical/cryo)
"kBa" = (
/obj/machinery/atmospherics/binary/pump/on{
name = "Gas to Cooling Loop"
@@ -89495,6 +79832,12 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
"kBq" = (
@@ -89512,10 +79855,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Primary Tool Storage"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/storage/primary)
@@ -89532,24 +79872,35 @@
},
/turf/simulated/floor/plating,
/area/engine/supermatter)
-"kHS" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"kIc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/library)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
"kKa" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- icon_state = "intact";
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
+"kKz" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = -25
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/sleep)
"kLs" = (
/obj/machinery/atmospherics/unary/portables_connector{
layer = 2
@@ -89558,17 +79909,16 @@
icon_state = "dark"
},
/area/engine/engineering)
-"kNc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"kNr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ icon_state = "white"
},
-/area/engine/gravitygenerator)
+/area/toxins/xenobiology{
+ name = "\improper Secure Lab"
+ })
"kNJ" = (
/turf/simulated/floor/plasteel{
dir = 1;
@@ -89582,11 +79932,11 @@
/obj/machinery/power/rad_collector{
anchored = 1
},
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"kSC" = (
@@ -89617,6 +79967,50 @@
icon_state = "dark"
},
/area/engine/supermatter)
+"kWi" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"kXs" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"kZl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/theatre)
+"law" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/sleep)
"lcc" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/plasteel{
@@ -89629,21 +80023,41 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"len" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"lfz" = (
-/obj/effect/decal/warning_stripes/west,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+"leu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/toxins/storage)
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"lfV" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
+"lgr" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "telelab";
+ name = "test chamber blast door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/toxins/explab)
"lgv" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -89653,24 +80067,28 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"lhK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
+/turf/simulated/floor/plasteel,
+/area/security/brig)
+"lid" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/area/security/main)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"ljZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
"lmi" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -89678,37 +80096,77 @@
},
/turf/space,
/area/space/nearstation)
-"lpU" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 2
+"lpc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"lpU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"lwo" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+"lwN" = (
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/structure/grille,/obj/item/cigbutt,/obj/item/trash/cheesie,/obj/item/trash/candy,/obj/item/trash/chips,/obj/item/trash/pistachios,/obj/item/trash/plate,/obj/item/trash/popcorn,/obj/item/trash/raisins,/obj/item/trash/sosjerky,/obj/item/trash/syndi_cakes);
+ name = "maint grille or trash spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"lBy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
+/area/quartermaster/storage)
"lCt" = (
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
+"lDa" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
+"lDm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
+"lFH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
"lFT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/engine,
/area/toxins/explab)
@@ -89718,10 +80176,12 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/engine/engineering)
"lGr" = (
@@ -89735,6 +80195,14 @@
},
/turf/simulated/floor/engine,
/area/engine/supermatter)
+"lHZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/aft)
"lIR" = (
/turf/simulated/floor/plasteel{
dir = 4;
@@ -89746,10 +80214,10 @@
/obj/machinery/power/rad_collector{
anchored = 1
},
+/obj/structure/cable,
/obj/machinery/atmospherics/pipe/manifold/visible/supply{
dir = 1
},
-/obj/structure/cable,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"lOU" = (
@@ -89758,51 +80226,57 @@
/turf/simulated/floor/engine,
/area/engine/engineering)
"lPA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
name = "Arrivals"
})
-"lUY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"lWo" = (
+"lSh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted{
+ dir = 5;
+ max_integrity = 120;
+ reinf = 0
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"lYf" = (
+/turf/simulated/floor/plating,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"lUc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
+"lUv" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"lWo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/turret_protected/ai)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/brig)
"mcn" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"mcP" = (
@@ -89810,9 +80284,6 @@
dir = 8
},
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/space,
/area/construction/hallway{
name = "\improper MiniSat Exterior"
@@ -89836,21 +80307,45 @@
id_tag = "sol_outer";
locked = 1;
name = "Arrivals External Access";
- req_access = null;
- req_access_txt = "0"
+ req_access = null
},
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
- layer = 3.3;
master_tag = "sol_airlock";
name = "exterior access button";
pixel_x = -13;
- pixel_y = -23;
- req_access_txt = "0"
+ pixel_y = -23
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
+"mfz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery1)
+"mhq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
+"mhx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "greenfull"
+ },
+/area/hallway/primary/central)
"miB" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -89859,11 +80354,30 @@
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 5;
- tag = "icon-intact-y (NORTHWEST)"
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/engine,
/area/engine/engineering)
+"mmk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
"moi" = (
/obj/machinery/atmospherics/trinary/filter/flipped{
dir = 1;
@@ -89885,21 +80399,28 @@
req_access_txt = "13;75"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
-"mpt" = (
+"msg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 9
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "dark"
},
-/area/medical/research{
- name = "Research Division"
+/area/security/podbay)
+"myY" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
})
"mzf" = (
/obj/structure/window/plasmareinforced{
@@ -89908,16 +80429,26 @@
/obj/machinery/power/rad_collector{
anchored = 1
},
-/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/structure/cable{
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/engine,
/area/engine/supermatter)
+"mAa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
"mAt" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -89926,19 +80457,40 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
/area/crew_quarters/kitchen)
+"mDj" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
+"mFx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/medbay3)
"mGz" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/northeastcorner,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
@@ -89948,16 +80500,57 @@
d2 = 4;
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
-"mVG" = (
+"mKy" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"mOc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
+"mQu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/hydroponics)
+"mRP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitebluecorner"
+ },
+/area/medical/medbay3)
+"mVG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -89974,7 +80567,16 @@
},
/turf/simulated/floor/engine,
/area/engine/engineering)
+"mVW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
"mWL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -89985,6 +80587,17 @@
"mXy" = (
/turf/simulated/floor/mineral/titanium,
/area/shuttle/arrival/station)
+"mZH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
"mZJ" = (
/obj/structure/reflector/single{
anchored = 1;
@@ -89992,70 +80605,73 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
-"naP" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/engine,
-/area/engine/engineering)
-"nbq" = (
+"naY" = (
/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "whitegreen"
},
-/area/hallway/primary/fore)
-"nbt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/area/medical/virology)
+"nbG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"nbO" = (
/obj/effect/spawner/airlock/s_to_n,
/turf/simulated/wall,
/area/construction)
+"nej" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
"neT" = (
/obj/effect/decal/warning_stripes/southwest,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
-"nhZ" = (
+"nhK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ icon_state = "purplefull"
+ },
+/area/hallway/primary/aft)
+"nhP" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/sleep)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/theatre)
"nig" = (
/obj/effect/decal/warning_stripes/south,
/obj/structure/disposalpipe/segment{
@@ -90063,17 +80679,31 @@
},
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
-"npj" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"niH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"njo" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/hydroponics)
+"nnI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/area/security/main)
+/turf/simulated/floor/plasteel,
+/area/engine/gravitygenerator)
"nqA" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -90086,66 +80716,56 @@
dir = 4;
name = "Cooling Loop Bypass"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"ntG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"nuB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"nvN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"nxh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/area/toxins/xenobiology{
- name = "\improper Secure Lab"
- })
-"nwx" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
})
+"nza" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
"nzK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"nEe" = (
-/obj/structure/window/reinforced{
+"nzX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
+/turf/simulated/floor/plasteel,
+/area/atmos)
"nEQ" = (
/obj/machinery/atmospherics/binary/pump/on{
dir = 1;
@@ -90160,8 +80780,24 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
+"nHB" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
"nIZ" = (
/obj/docking_port/stationary{
dir = 8;
@@ -90174,34 +80810,16 @@
/turf/space,
/area/space)
"nKy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/ntrep)
-"nKW" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
-"nLj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"nLH" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/courtroom)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
"nMx" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -90213,6 +80831,13 @@
"nMC" = (
/turf/simulated/wall/r_wall,
/area/storage/secure)
+"nPe" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "darkbluecorners"
+ },
+/area/turret_protected/aisat_interior{
+ name = "\improper MiniSat Central Foyer"
+ })
"nRh" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -90227,18 +80852,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
-"nVz" = (
+"nVg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
+"nVz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -90247,21 +80875,41 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"obL" = (
-/obj/effect/decal/warning_stripes/west,
+"nXf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/bluegrid,
+/area/assembly/chargebay)
+"nYP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"odF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "bcarpet05"
},
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
- })
+/area/blueshield)
"odO" = (
/obj/machinery/blackbox_recorder,
/turf/simulated/floor/bluegrid,
/area/tcommsat/server)
+"oeP" = (
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
"ofz" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -90277,8 +80925,7 @@
"ogE" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room";
- req_access_txt = "10";
- req_one_access_txt = "0"
+ req_access_txt = "10"
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -90290,14 +80937,6 @@
},
/turf/simulated/floor/engine,
/area/engine/engineering)
-"ogV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
"oiv" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -90305,7 +80944,12 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -90320,99 +80964,81 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"okl" = (
-/obj/effect/landmark/start{
- name = "Cook"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "cafeteria"
- },
-/area/crew_quarters/kitchen)
"onG" = (
/obj/effect/spawner/window/reinforced,
/obj/effect/spawner/airlock/s_to_n,
/turf/simulated/floor/plating,
/area/maintenance/auxsolarport)
-"oqV" = (
+"orm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/bridge)
-"oym" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "purplecorner"
- },
-/area/hallway/primary/aft)
-"oBY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "green"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hydroponics)
-"oGg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/locker)
+"oxC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11;
- level = 1
+ dir = 8
},
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"oJA" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/security/permabrig)
+"oCE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/engine,
+/area/engine/engineering)
+"oJQ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"oMK" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/hallway/primary/central)
"oOs" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"oOT" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+"oQz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plasteel/dark,
-/area/tcommsat/server)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/crew_quarters/sleep)
"oRr" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -90427,18 +81053,34 @@
/obj/structure/sign/fire,
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
-"oUC" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"oUk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/chemistry)
+"oVK" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"oVM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
"oWm" = (
/obj/structure/cable/yellow{
d1 = 2;
@@ -90447,6 +81089,15 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"oWL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"pad" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -90469,12 +81120,21 @@
pixel_x = -25;
req_access_txt = "55"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/xenobiology{
name = "\improper Secure Lab"
})
+"paZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
"pcW" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -90482,35 +81142,22 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
-"pdC" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
-"pdV" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+"pef" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "red"
},
-/area/medical/research{
- name = "Research Division"
- })
+/area/security/processing)
"peo" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
@@ -90520,6 +81167,17 @@
/obj/effect/spawner/airlock/s_to_n,
/turf/simulated/wall,
/area/maintenance/starboard)
+"pes" = (
+/obj/structure/barricade/wooden,
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"peO" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/binary/pump{
@@ -90528,6 +81186,12 @@
},
/turf/simulated/floor/plasteel,
/area/atmos)
+"pjn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/engine/gravitygenerator)
"pkf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -90540,16 +81204,25 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"pkJ" = (
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+"pkq" = (
+/obj/structure/chair{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
})
+"pkX" = (
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "brown"
+ },
+/area/hallway/primary/port)
"plu" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6
@@ -90559,24 +81232,52 @@
},
/area/engine/engineering)
"pmh" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 2
- },
+/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/machinery/meter,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/engineering)
-"poN" = (
+"poJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/security/podbay)
+"ppw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/mob/living/carbon/human/monkey,
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
+/area/medical/virology)
"ptc" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whiteblue"
},
/area/medical/paramedic)
+"ptn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"pue" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -90588,11 +81289,23 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
+"pvu" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/storage/primary)
"pvv" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/engine,
/area/engine/engineering)
+"pyX" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
"pzX" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -90603,25 +81316,45 @@
},
/turf/simulated/floor/plasteel,
/area/assembly/robotics)
-"pDi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+"pAj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "purplecorner"
+ dir = 4;
+ icon_state = "whiteblue"
},
-/area/hallway/primary/aft)
-"pFi" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+/area/medical/medbay3)
+"pAk" = (
+/obj/machinery/smartfridge/medbay,
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"pJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/chemistry)
+"pAO" = (
+/obj/structure/chair{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"pHQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"pJV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/security/armoury)
"pKs" = (
@@ -90630,25 +81363,54 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"pKv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
"pMx" = (
/obj/effect/spawner/airlock/w_to_e,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
+"pMS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "purple"
+ },
+/area/hallway/primary/aft)
"pNG" = (
/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/engineering)
+"pNK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
"pOV" = (
/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry{
@@ -90670,19 +81432,20 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/east,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
"pRy" = (
/obj/effect/decal/warning_stripes/north,
/obj/machinery/camera,
@@ -90695,32 +81458,79 @@
icon_state = "vault"
},
/area/engine/mechanic_workshop)
-"pUc" = (
-/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
-/obj/structure/lattice,
-/turf/space,
-/area/space/nearstation)
-"pUq" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- dir = 8;
- initialize_directions = 11;
- level = 2
+"pSL" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/engine,
-/area/engine/engineering)
-"pXI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"pTP" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/lawoffice)
+"pUc" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/lattice,
+/turf/space,
+/area/space/nearstation)
+"pUh" = (
+/obj/structure/morgue{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/medical/morgue)
+"pUq" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/effect/decal/warning_stripes/west,
+/turf/simulated/floor/engine,
+/area/engine/engineering)
+"pXV" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "lawyer_blast";
+ name = "privacy shutters";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel,
-/area/hallway/primary/aft)
+/turf/simulated/floor/plating,
+/area/lawoffice)
+"qaB" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "telelab";
+ name = "test chamber blast door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/toxins/explab)
"qaM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -90733,36 +81543,55 @@
"qbl" = (
/obj/effect/spawner/airlock,
/turf/simulated/wall,
-/area/maintenance/aft{
- name = "Aft Maintenance"
+/area/maintenance/aft)
+"qbE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
})
"qcE" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plating,
/area/construction)
-"qcX" = (
+"qee" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
-/area/medical/research{
- name = "Research Division"
- })
-"qhv" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- on = 1
+/area/medical/medbay3)
+"qeW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/atmos)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/starboard)
"qhx" = (
/obj/effect/spawner/airlock/w_to_e,
/turf/simulated/wall/r_wall,
@@ -90772,46 +81601,73 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/security/brig)
+"qlH" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"qnt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
+"qob" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"qpO" = (
/turf/simulated/wall,
/area/engine/equipmentstorage)
-"qsd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+"qts" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 9
},
-/turf/simulated/floor/plasteel,
-/area/assembly/robotics)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
"qtt" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 5;
- icon_state = "intact";
- tag = "icon-intact (NORTHEAST)"
+ dir = 5
},
/obj/structure/lattice,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"qtw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/plasteel{
+"qwd" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ density = 0;
dir = 2;
- icon_state = "neutralcorner"
+ icon_state = "open";
+ id_tag = "surgeryobs1";
+ name = "Privacy Shutters";
+ opacity = 0
},
-/area/hallway/primary/aft)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/medical/surgery2)
"qxn" = (
/obj/machinery/alarm{
dir = 1;
@@ -90820,22 +81676,16 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/engine/engineering)
-"qAm" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/space,
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
"qAG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -90847,17 +81697,6 @@
/area/crew_quarters/fitness{
name = "\improper Recreation Area"
})
-"qBH" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
"qBP" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -90867,47 +81706,27 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
-"qCG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"qFg" = (
/obj/machinery/space_heater,
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
name = "Aft Maintenance APC";
pixel_y = -24
},
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"qHr" = (
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/area/maintenance/aft)
+"qHi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/toxins/misc_lab{
- name = "\improper Research Testing Range"
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
})
"qHS" = (
/obj/structure/disposalpipe/trunk{
@@ -90922,6 +81741,33 @@
icon_state = "yellowcorner"
},
/area/engine/break_room)
+"qIg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "cautioncorner"
+ },
+/area/hallway/primary/starboard)
+"qME" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/main)
"qQy" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -90932,41 +81778,61 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
-"qWn" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- dir = 2
+"qSf" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "darkbluecorners"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"qTK" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/sleep)
+"qWn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"qYF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+"qWM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
"raV" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plating,
/area/engine/engineering)
"rdz" = (
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-06";
- level = 4.1;
- tag = "icon-plant-06"
+ level = 4.1
},
/obj/effect/decal/warning_stripes/northwest,
/obj/structure/sign/securearea{
@@ -90980,10 +81846,27 @@
/area/hallway/secondary/entry{
name = "Arrivals"
})
+"rfg" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
"riM" = (
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
+"rjj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/permabrig)
"rjU" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -90993,6 +81876,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -91000,15 +81886,8 @@
name = "\improper MiniSat Exterior"
})
"rlJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
- level = 2
- },
-/obj/machinery/light{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -91017,6 +81896,22 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/engine,
/area/engine/engineering)
+"rmz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "arrival"
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
"rpg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -91026,24 +81921,20 @@
},
/turf/space,
/area/solar/starboard)
-"rrO" = (
-/obj/machinery/door/poddoor{
- density = 0;
- icon_state = "open";
- id_tag = "transittube";
- name = "Transit Tube Blast Door";
- opacity = 0
- },
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
+"rqY" = (
+/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
"rsT" = (
/obj/machinery/atmospherics/binary/pump{
name = "Mix to Gas"
@@ -91054,27 +81945,75 @@
icon_state = "4-8"
},
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
+"rvu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"rwh" = (
/obj/machinery/power/supermatter_crystal/engine,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"rxV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 5
- },
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/atmos)
+"ryN" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
+"rzT" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"rDe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness{
+ name = "\improper Arcade"
+ })
"rDg" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -91085,6 +82024,12 @@
dir = 1;
on = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -91103,18 +82048,30 @@
/turf/space,
/area/space)
"rDF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
},
/area/engine/break_room)
+"rDS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/security/brig)
"rEw" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91126,25 +82083,52 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
-"rHe" = (
+"rFa" = (
+/obj/effect/spawner/window/reinforced/plasma,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/engine,
+/area/engine/engineering)
+"rGT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 10
},
-/turf/simulated/floor/plasteel,
-/area/security/brig)
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"rHl" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"rIq" = (
/obj/structure/table,
/obj/item/clothing/mask/breath{
@@ -91155,6 +82139,17 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
+"rID" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/construction)
+"rJk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/exam_room)
"rJJ" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
@@ -91168,6 +82163,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -91178,14 +82176,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/equipmentstorage)
-"rOw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
"rOZ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -91195,18 +82185,23 @@
},
/turf/space,
/area/solar/starboard)
-"rPA" = (
+"rPb" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "transittube";
+ name = "Transit Tube Blast Door";
+ opacity = 0
+ },
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+ dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
+/turf/simulated/floor/plasteel,
+/area/engine/break_room)
"rRM" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/structure/cable/yellow{
@@ -91214,6 +82209,9 @@
d2 = 8;
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -91231,6 +82229,25 @@
},
/turf/space,
/area/space)
+"rUJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"rVv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"rYj" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 9
@@ -91246,52 +82263,66 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
+"rZk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"say" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/construction/hallway{
name = "\improper MiniSat Exterior"
})
-"sdQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+"saH" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floorgrime"
- },
-/area/maintenance/incinerator)
-"sfr" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"siL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "bluecorner"
+ icon_state = "green"
},
-/area/hallway/primary/aft)
+/area/hydroponics)
+"sbG" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"sjx" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
"sjF" = (
/obj/structure/window/reinforced{
dir = 1
@@ -91305,180 +82336,243 @@
icon_state = "dark"
},
/area/space/nearstation)
-"skc" = (
+"soT" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+ dir = 1
},
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"spg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "showroomfloor"
+ },
+/area/security/main)
+"spj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"ssZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"spv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet,
+/area/library)
+"ssZ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/engine/engineering)
+"svF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"svR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/library)
"swl" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/engine/engineering)
-"szt" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
+"sxA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/brig)
"sBY" = (
/turf/simulated/floor/plating,
/area/storage/secure)
"sDC" = (
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_cerebron";
name = "North of Cerebron"
},
/turf/space,
/area/space)
-"sEe" = (
+"sFz" = (
+/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/turf/simulated/floor/plating,
+/area/engine/mechanic_workshop)
+"sHl" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
},
-/area/medical/morgue)
-"sGi" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/carpet,
+/area/security/vacantoffice)
"sJe" = (
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 9
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
-"sJj" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway{
- name = "\improper MiniSat Exterior"
- })
-"sQp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"sRB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
-"tay" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/security/brig)
-"tbK" = (
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/equipmentstorage)
-"tca" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"tdP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
-"teY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/chapel/main)
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"sLs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"sLS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/kitchen)
+"sOB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
+"sOJ" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/xenobiology{
+ name = "\improper Secure Lab"
+ })
+"sRB" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"sVC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"sYp" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"tbK" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/equipmentstorage)
+"tca" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"teE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/bridge)
+"teW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"tfV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"tgE" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -91486,14 +82580,25 @@
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
-"thz" = (
-/obj/effect/decal/warning_stripes/north,
+"thC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads)
+"tjR" = (
+/obj/effect/decal/warning_stripes/northwestcorner,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/toxins/mixing{
- name = "\improper Toxins Lab"
+/area/hallway/secondary/entry{
+ name = "Arrivals"
})
"tlh" = (
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -91505,6 +82610,9 @@
/obj/machinery/firealarm{
pixel_y = 29
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
@@ -91516,9 +82624,6 @@
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -91533,9 +82638,8 @@
/turf/simulated/floor/engine,
/area/engine/engineering)
"tvn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -91545,8 +82649,25 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/engine/engineering)
+"tvw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "whitepurple"
+ },
+/area/toxins/lab)
+"tvx" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
"twD" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -91556,6 +82677,15 @@
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
+"tAk" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "showroomfloor"
+ },
+/area/security/main)
"tAn" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
@@ -91564,9 +82694,6 @@
dir = 1;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -91575,6 +82702,20 @@
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/engine,
/area/engine/engineering)
+"tBw" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "vault"
+ },
+/area/security/main)
+"tCC" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/main)
"tEL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91585,6 +82726,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
+"tFb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"tNG" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91594,7 +82745,7 @@
/turf/simulated/floor/wood,
/area/library)
"tOU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -91610,6 +82761,18 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
+"tSj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery1)
+"tST" = (
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/gateway)
"tSX" = (
/obj/structure/lattice,
/obj/structure/lattice,
@@ -91618,6 +82781,18 @@
},
/turf/space,
/area/space/nearstation)
+"tTh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "green"
+ },
+/area/hydroponics)
"tVw" = (
/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
dir = 5
@@ -91628,9 +82803,32 @@
/obj/effect/spawner/window/reinforced,
/obj/effect/spawner/airlock/e_to_w,
/turf/simulated/floor/plating,
-/area/maintenance/aft{
- name = "Aft Maintenance"
- })
+/area/maintenance/aft)
+"tYS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"tYX" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id_tag = "Prison Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/security/permabrig)
"tZI" = (
/obj/machinery/atmospherics/unary/outlet_injector{
frequency = 1441;
@@ -91642,9 +82840,22 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"tZW" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
"uaQ" = (
/turf/simulated/wall,
/area/engine/mechanic_workshop)
+"udB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
"ueD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -91661,23 +82872,25 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/hos)
-"ulS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "redcorner"
+"uhY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
"umD" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
@@ -91685,14 +82898,11 @@
name = "\improper Auxiliary Restrooms"
})
"umT" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
-/obj/item/reagent_containers/iv_bag,
/obj/machinery/light{
dir = 1;
on = 1
},
+/obj/structure/closet/crate/freezer/iv_storage,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whiteblue"
@@ -91700,16 +82910,19 @@
/area/medical/medbay2{
name = "Medbay Storage"
})
-"upv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+"uov" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
- },
-/turf/simulated/floor/plasteel,
-/area/quartermaster/storage)
+/area/medical/surgery1)
+"uqy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
"uuE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
@@ -91718,18 +82931,68 @@
req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/crew_quarters/captain{
name = "\improper Captain's Quarters"
})
+"uvM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads)
"uzt" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "green"
},
/area/hydroponics)
+"uAA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/construction)
+"uBl" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"uBN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/theatre)
+"uDi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/engine/mechanic_workshop)
+"uEN" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
"uJn" = (
/obj/effect/spawner/airlock/w_to_e,
/turf/simulated/wall/r_wall,
@@ -91747,52 +83010,89 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"uMj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/gateway)
"uMx" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay3)
-"uQl" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+"uOL" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"uQj" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/area/medical/medbay3)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
"uQo" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whiteblue"
},
/area/medical/medbay3)
"uRT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/bridge)
"uTZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 2
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/atmos)
+"uUE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -91802,22 +83102,42 @@
/area/hallway/secondary/entry{
name = "Arrivals"
})
+"uYO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/atmos)
+"vaE" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/hallway/primary/port)
"vaO" = (
/turf/simulated/wall,
/area/hallway/secondary/entry)
-"veh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10;
- level = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"vfe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 5;
+ icon_state = "cafeteria"
},
-/area/crew_quarters/courtroom)
+/area/crew_quarters/kitchen)
"vfv" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -91827,10 +83147,14 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
+"vge" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
"vgP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
@@ -91843,27 +83167,61 @@
},
/turf/space,
/area/space)
+"vjp" = (
+/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
"vjL" = (
/obj/effect/spawner/window/reinforced/plasma,
/turf/simulated/floor/engine,
/area/engine/supermatter)
"vmT" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
- dir = 6;
- icon_state = "intact";
- tag = "icon-intact (SOUTHEAST)"
+ dir = 6
},
/obj/structure/lattice,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"vny" = (
+"vmY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/engine/mechanic_workshop)
+"vrH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Courtroom";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/engine,
-/area/engine/engineering)
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/crew_quarters/courtroom)
+"vss" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "redcorner"
+ },
+/area/security/brig)
"vtP" = (
/obj/machinery/conveyor/west{
id = "garbage"
@@ -91871,10 +83229,21 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/disposal)
-"vuE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+"vtR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "gateshutter";
+ name = "Gateway Access Shutter"
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/gateway)
+"vuE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "whitebluefull"
},
@@ -91887,12 +83256,33 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"vBA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+"vyo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"vBv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 2;
+ id_tag = "evashutter";
+ name = "E.V.A. Storage Shutter"
+ },
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"vBA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -91900,60 +83290,69 @@
/area/bridge)
"vCR" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/engine/engineering)
-"vDW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+"vDc" = (
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
},
+/area/security/brig)
+"vDW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/brig)
"vEp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/starboard)
-"vFn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"vHA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
+/area/crew_quarters/sleep)
+"vHW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
})
-"vJx" = (
+"vIz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/turf/simulated/floor/plasteel,
-/area/storage/primary)
-"vLz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/engine,
+/area/engine/engineering)
"vLL" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -91965,6 +83364,37 @@
icon_state = "redcorner"
},
/area/security/brig)
+"vNb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/central)
+"vNe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/port)
+"vOx" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/toxins/lab)
+"vOE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/courtroom)
"vRY" = (
/obj/effect/spawner/window/reinforced/plasma,
/obj/structure/cable/yellow{
@@ -91972,8 +83402,22 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/engine,
/area/engine/engineering)
+"vSx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/brig)
"vUD" = (
/obj/machinery/power/emitter{
anchored = 1;
@@ -91986,57 +83430,14 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
-"vVo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/crew_quarters/locker)
-"vVE" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+"vZl" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "dark"
+ dir = 1;
+ icon_state = "redcorner"
},
-/area/medical/morgue)
-"vXU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
- },
-/area/security/main)
-"vYK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"vZb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/decal/warning_stripes/north,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/entry{
- name = "Arrivals"
- })
+/area/hallway/primary/fore)
"vZo" = (
/turf/simulated/floor/plating,
/area/space/nearstation)
@@ -92048,28 +83449,95 @@
icon_state = "dark"
},
/area/engine/engineering)
-"wgm" = (
+"waJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner"
+/turf/simulated/floor/plasteel,
+/area/security/armoury)
+"wfs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/turret_protected/ai_upload)
+"wma" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/courtroom)
+"wri" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/medical/medbay3)
-"wlG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "whiteblue"
+ icon_state = "dark"
},
-/area/medical/reception)
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"wsx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"wtP" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/storage)
+"wul" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai)
+"wuT" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
"wuZ" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plating,
/area/engine/engineering)
"wvK" = (
@@ -92081,22 +83549,17 @@
},
/obj/machinery/power/solar_control{
id = "aftstarboard";
- name = "Aft Starboard Solar Control";
- track = 0
+ name = "Aft Starboard Solar Control"
},
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
-"wxw" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 2;
- initialize_directions = 11
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/medical/morgue)
+"wvO" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/quartermaster/office)
"wxE" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -92105,23 +83568,43 @@
/obj/structure/lattice,
/turf/space,
/area/space/nearstation)
+"wyc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgery2)
"wyX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "cafeteria";
- tag = "icon-cafeteria (NORTHEAST)"
+ icon_state = "cafeteria"
},
-/area/medical/research{
- name = "Research Division"
+/area/medical/research)
+"wzo" = (
+/obj/item/flashlight/lantern{
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
+"wzV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/arcade,
+/area/crew_quarters/fitness{
+ name = "\improper Arcade"
})
"wAP" = (
/obj/structure/transit_tube{
- icon_state = "D-SW";
- tag = "icon-D-SW"
+ icon_state = "D-SW"
},
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -92129,12 +83612,48 @@
},
/turf/space,
/area/space/nearstation)
+"wBj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 5;
+ icon_state = "cafeteria"
+ },
+/area/crew_quarters/kitchen)
+"wEq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/security/permabrig)
+"wEZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay3)
+"wFW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/primary/aft)
"wHZ" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -92153,26 +83672,58 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/engine,
/area/engine/engineering)
-"wRS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"wSU" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
+"wRy" = (
+/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/security/brig)
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"wSh" = (
+/obj/structure/chair/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/mrchangs)
+"wSP" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "floorgrime"
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"wUE" = (
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/locker)
+"wVS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "whiteblue"
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
"xbe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -92180,35 +83731,7 @@
icon_state = "dark"
},
/area/security/podbay)
-"xca" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/bridge/meeting_room{
- name = "\improper Command Hallway"
- })
-"xhr" = (
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"xla" = (
+"xfn" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -92217,29 +83740,50 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/hallway/primary/starboard)
+"xhx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"xkY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/reception)
"xno" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/visible/purple{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
},
/area/atmos)
+"xqz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
+/area/assembly/robotics)
"xrG" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
@@ -92251,8 +83795,14 @@
},
/turf/simulated/floor/plating,
/area/maintenance/starboardsolar)
+"xtA" = (
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
"xuA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -92261,41 +83811,30 @@
/area/maintenance/fpmaint2{
name = "Port Maintenance"
})
-"xvd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- req_access_txt = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"xyA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/cyan,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4;
- level = 2
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/atmos)
-"xyZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/theatre)
-"xBd" = (
+"xvi" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/hallway/primary/aft)
+"xxA" = (
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/engine/gravitygenerator)
"xDw" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/meter,
@@ -92304,15 +83843,23 @@
},
/turf/simulated/floor/engine,
/area/engine/engineering)
+"xDS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 1;
+ icon_state = "red"
+ },
+/area/security/brig)
"xEi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel/dark,
/area/tcommsat/server)
"xFR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -92322,8 +83869,8 @@
},
/area/medical/reception)
"xGP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"xHf" = (
@@ -92333,38 +83880,14 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/plasteel,
-/area/engine/engineering)
-"xHU" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/decal/warning_stripes/south,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
-/turf/simulated/floor/engine,
-/area/engine/engineering)
-"xJS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "neutralcorner"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/hallway/primary/central)
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"xLf" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -92378,63 +83901,67 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "stage_stairs";
- tag = "icon-stage_stairs"
+ icon_state = "stage_stairs"
},
/area/security/podbay)
-"xQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"xQv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"xSh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"xRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5;
- level = 1
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
},
-/turf/simulated/floor/wood,
-/area/security/vacantoffice)
+/area/medical/reception)
+"xUe" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/chapel/main)
"xXW" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/podbay)
-"xYx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+"xYR" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "floorgrime"
},
-/area/security/permabrig)
-"xYW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
"xZq" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/solar/starboard)
+"yag" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/surgeryobs)
"yaq" = (
/obj/machinery/power/emitter{
anchored = 1;
@@ -92452,22 +83979,71 @@
},
/turf/simulated/floor/plating,
/area/engine/engineering)
+"yaQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
+"ycU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "bar"
+ },
+/area/crew_quarters/bar)
"yeW" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+ name = "RADIOACTIVE AREA"
},
/turf/simulated/wall/r_wall,
/area/engine/supermatter)
-"yij" = (
+"ygd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/hallway/primary/port)
+"ygK" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/construction)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel,
+/area/crew_quarters/locker)
+"ygY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/engine,
+/area/engine/engineering)
+"yhg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/ntrep)
(1,1,1) = {"
aaa
@@ -103110,13 +94686,13 @@ tlh
aLB
aLB
aLB
-aLB
-aLB
-aML
-aML
-aML
+gwJ
+aTP
+aUY
+aUY
+aUY
aZk
-baJ
+myY
dgx
bdR
aYg
@@ -103131,7 +94707,7 @@ bip
bdR
bzw
bdR
-baJ
+eGG
bFe
aWD
aaa
@@ -103370,7 +94946,7 @@ aLB
aLB
aLB
aLB
-aWH
+aML
aXU
aWD
baX
@@ -103388,8 +94964,8 @@ bin
aUN
aUN
aUN
-baJ
-bDn
+baX
+dgx
aUN
aaa
aaa
@@ -103402,7 +94978,7 @@ bTH
aWD
dgi
bBt
-dgs
+dgx
dgz
dgz
dgz
@@ -103627,10 +95203,10 @@ aLB
aLB
aLB
aLB
-aWI
+aML
aXV
aWD
-bbF
+baX
bcR
bcy
bhb
@@ -103645,8 +95221,8 @@ biq
aUN
bAR
bzx
-bBv
-bDp
+tjR
+dgx
aUN
aaa
aaa
@@ -103654,11 +95230,11 @@ aaa
aaa
aaa
aUN
-bRT
+baJ
bUO
bQN
-bBt
-bBt
+dgo
+dgo
dgv
dgz
dgz
@@ -103884,10 +95460,10 @@ aLB
aLB
aLB
aLB
-aWI
+aML
aXW
aZm
-bbF
+baX
bBt
dgx
bhb
@@ -103902,8 +95478,8 @@ bin
aUN
bAQ
baJ
-bBt
-bDp
+xhx
+dgx
aUN
aaa
aaa
@@ -104141,12 +95717,12 @@ aLB
aLB
aLB
aLB
-yij
+aLB
aML
aZm
-vZb
-dgo
-beO
+baX
+bBt
+dgx
bhW
aUN
bin
@@ -104158,9 +95734,9 @@ brs
bin
aUN
bhb
-bzz
-dgo
-bFn
+baJ
+xhx
+bhV
aWD
aaa
aaa
@@ -104172,7 +95748,7 @@ bCx
bUS
fhW
lPA
-dgo
+lPA
pOV
dgz
dgz
@@ -104398,7 +95974,7 @@ aLB
aSt
aLB
aLB
-yij
+aLB
aML
aWD
bbS
@@ -104417,7 +95993,7 @@ aUN
bDU
bzy
bBw
-vFn
+dgx
aUN
aaa
aaa
@@ -104428,8 +96004,8 @@ aUN
baJ
bUQ
aWD
-dgl
-bsx
+dgi
+bBt
dgw
dgz
dgD
@@ -104652,10 +96228,10 @@ aLB
aLB
aLB
aLB
-aSu
aLB
aLB
-yij
+aLB
+aLB
aML
aWD
bdH
@@ -104673,8 +96249,8 @@ bin
aUN
aUN
aUN
-baJ
-bDK
+baX
+bDm
aWD
abq
kmF
@@ -104909,10 +96485,10 @@ aLB
aLB
aLB
aLB
-aSu
aLB
aLB
-yij
+aLB
+aLB
aXX
aWD
jCT
@@ -104930,7 +96506,7 @@ bip
bdR
bzw
bdR
-baJ
+eSE
bFG
aWD
kmF
@@ -105167,9 +96743,9 @@ aML
aLB
aLB
aSv
-aTP
-aUY
-dJz
+rID
+uAA
+uAA
aXY
aZn
bcf
@@ -105187,7 +96763,7 @@ bin
aUN
aUN
aUN
-baJ
+wRy
bES
aWD
bMT
@@ -105199,7 +96775,7 @@ aWD
baJ
bLC
bLD
-bXI
+nbG
bXH
apf
abq
@@ -105444,20 +97020,20 @@ bin
aaa
aUN
bzA
+pSL
+bcR
+niH
+uWq
+uWq
+uWq
+uWq
+uWq
+uWq
bBv
-bEJ
-brU
-bky
-hBn
-bMK
-bMK
-bMK
-bQx
-bRW
dgb
apf
auJ
-cEg
+eYE
apf
aaa
aaa
@@ -105703,18 +97279,18 @@ aWD
bCx
bBx
bDt
-bnX
-bgW
+rmz
+ahq
bKR
bNm
bMB
bOf
-bPM
+ahq
bRy
bTm
apf
bLK
-avU
+rvu
apf
bZP
bZS
@@ -105921,15 +97497,15 @@ abq
apf
awE
avQ
-awc
-atk
-atk
+avW
+pHQ
atk
atk
atk
atk
+ijy
aEC
-atk
+fZo
aHX
apd
aHk
@@ -105937,10 +97513,10 @@ aHk
aOl
aHk
aHk
-aqB
-auA
-aHv
-aHv
+qob
+fZo
+vHW
+vHW
aYm
aWq
aYT
@@ -105953,7 +97529,7 @@ bky
bky
brU
bky
-bky
+kWi
buD
bxr
bky
@@ -105966,12 +97542,12 @@ apf
apf
apf
apf
-bPN
+bjE
apf
apf
apf
aoX
-avU
+rvu
bWm
bZP
bcE
@@ -106188,14 +97764,14 @@ apf
alL
apf
aIJ
-atk
-aHv
-aHv
+uqy
+aVF
+aVF
aPe
-aEC
-atk
-atk
-aWs
+lwN
+uqy
+ahC
+apd
apd
apd
aYb
@@ -106218,7 +97794,7 @@ dgj
bBz
bDv
bFo
-bLN
+bXI
bgY
bgY
bjE
@@ -106227,8 +97803,8 @@ bQy
bgY
bgY
cJU
-cJV
-bDL
+cJU
+rGT
cae
bZQ
cdr
@@ -106475,18 +98051,18 @@ btm
btm
bFJ
apf
-cwu
+cdn
aEj
bKy
apf
atj
-bPP
+apd
aoX
auy
auC
-bWg
+aoX
cgo
-avU
+rvu
caw
cbo
ccp
@@ -106730,20 +98306,20 @@ bfG
bfG
bfG
bDC
-bpB
+bDC
apf
bHd
aUu
anE
apf
aqB
-bPQ
-atk
-atk
-atk
+apd
+apd
+apd
+apd
bWi
-aHv
-bYS
+cgo
+rvu
bZS
bZS
bZS
@@ -107258,9 +98834,9 @@ bTo
bFp
aqB
cQS
-bZT
+bXK
cdD
-ccq
+arU
apd
apf
aaa
@@ -107494,7 +99070,7 @@ biy
bko
bma
brl
-dxy
+brV
brA
btp
bvC
@@ -107505,18 +99081,18 @@ bFW
bFp
bHf
bHf
-fNU
+bHf
bME
-hZZ
+eoq
hZZ
bRB
bTn
bUD
bFp
ayB
-bYV
+rvu
apf
-bPQ
+apd
aEj
cdG
apf
@@ -107750,28 +99326,28 @@ bgX
bmS
bkp
bmb
-bjP
+tZW
but
brB
-bto
-bvB
-bvB
-bzC
-bBD
+ePy
+ygd
+ygd
+vaE
+inj
bDA
bFr
bHg
bHg
-koz
+bHg
bOP
bOi
-bOi
-xRI
+sHl
+bHf
bHf
bUE
bFp
apd
-bYV
+rvu
apf
cbq
apf
@@ -107814,7 +99390,7 @@ cMz
cSZ
clp
cPp
-cQm
+cIS
cQZ
cHZ
abq
@@ -108023,7 +99599,7 @@ bKA
bHf
bOj
bPT
-szt
+bHf
bHf
bHf
bWj
@@ -108064,7 +99640,7 @@ aaa
aaa
cHZ
cIS
-cJI
+cIR
cHj
cLH
cMA
@@ -108265,20 +99841,20 @@ bgX
bkr
bgX
bgX
-bpB
+bDC
brx
bfG
bfG
bfG
bfG
bDC
-fZu
+bDC
bFp
bJz
bIS
bHf
bHf
-bKB
+oeP
bPU
bHf
bTn
@@ -108292,9 +99868,9 @@ dan
ceN
chP
ceN
-cPj
+ceN
ckv
-cPj
+ceN
cof
bZU
cow
@@ -108320,7 +99896,7 @@ aaa
aaa
aaa
cFv
-cIR
+ppw
cJJ
cKO
cLI
@@ -108542,7 +100118,7 @@ bTo
bUF
bFp
auC
-bYV
+avU
bZU
bZU
bZU
@@ -108578,9 +100154,9 @@ aaa
aaa
cHZ
cIT
-cJK
+cIR
cHj
-cLH
+naY
cMC
cNv
cOA
@@ -108799,17 +100375,17 @@ bFp
bFp
bFp
apf
-bYV
+avU
bZU
cbs
cuV
cdJ
ceO
bZU
-chq
-bxt
+chy
+ckw
bZU
-cmY
+ebA
bZU
cpS
crc
@@ -108818,7 +100394,7 @@ cty
cqZ
cry
chy
-cdL
+chy
czd
bZU
cFR
@@ -108845,8 +100421,8 @@ cPr
cQp
cQZ
cHZ
-dew
-dey
+cSA
+arA
aaa
aaa
aaa
@@ -109004,7 +100580,7 @@ akt
akt
akt
awE
-aoZ
+awe
apf
abq
abq
@@ -109056,17 +100632,17 @@ bTp
bUG
bWk
apf
-bYT
+bfl
bZU
cem
dfi
dgC
cfm
bZU
-cji
-cje
+chy
+bgZ
bZU
-cje
+ebA
bZU
cpA
cdK
@@ -109086,7 +100662,7 @@ cdN
bZU
cNa
cNP
-cOK
+chy
cfc
bZU
aaa
@@ -109303,7 +100879,7 @@ bBK
bDG
bBK
bHk
-bIV
+bHm
bKC
bMH
bOl
@@ -109313,17 +100889,17 @@ arJ
apd
deJ
apf
-bYV
+avU
bZU
cbu
ceE
-chv
-chc
+chy
+cEB
cfU
-che
+ceE
clu
bZU
-cje
+ebA
bZU
bZU
bZU
@@ -109332,7 +100908,7 @@ cdO
cdO
bZU
bZU
-cyl
+bZU
bZU
cAg
cDk
@@ -109519,15 +101095,15 @@ ars
auf
auw
awK
-axm
+xuA
aqB
apf
aAU
aCs
aDv
-aEN
aEK
aEK
+qHi
aIO
bOg
aCs
@@ -109566,11 +101142,11 @@ cBE
cBE
bBK
bRF
-arL
+arU
apd
deH
apf
-bYV
+avU
bZU
ceu
cHV
@@ -109589,12 +101165,12 @@ cod
cod
cod
cym
-cyZ
+cym
cAw
-cod
+tYS
cDj
-cBk
-cBk
+cjl
+cjl
cGg
cJR
bZU
@@ -109782,13 +101358,13 @@ apf
apf
aCs
aFF
-aEO
+aEK
aGf
aHs
-aIP
+aEK
aKd
ayK
-aSm
+afl
axX
aSm
aSm
@@ -109798,7 +101374,7 @@ aSm
aSm
aYo
aSm
-aSm
+vjp
bdm
bdZ
nig
@@ -109809,7 +101385,7 @@ bpD
brK
bpK
aXi
-btw
+btv
bvH
bxT
bzH
@@ -109823,11 +101399,11 @@ cgp
bIU
bBK
bRG
-bPP
+apd
atj
apd
apf
-bYV
+avU
bZU
cbw
ccx
@@ -109835,7 +101411,7 @@ cdN
chS
bZU
ckH
-clw
+cEL
bZU
cog
coD
@@ -109854,11 +101430,11 @@ cFT
ckD
cIb
cDT
-cEQ
+cOM
cGZ
-cEQ
-cMU
-cPx
+cOM
+cOM
+cOM
cJR
bZU
aaa
@@ -109867,7 +101443,7 @@ cJO
cKS
cLO
cMH
-cNC
+cNv
cOE
cPt
cQs
@@ -110026,7 +101602,7 @@ aaa
akI
aoY
alr
-any
+tvx
apc
aqq
arE
@@ -110041,32 +101617,32 @@ aCt
aDx
aEP
aGg
-aGg
+hVe
aIQ
aKe
azT
aMS
-aOu
-aPJ
-aOu
-aSz
-aOu
-aOu
-aOu
-aPJ
-aOu
-aOu
+nLH
+nLH
+nLH
+wtP
+lid
+nLH
+nLH
+nLH
+nLH
+lBy
bcs
-qaM
+kfI
bgV
-aXi
-biF
+wvO
+nHB
bpo
bmj
boh
bpL
buu
-btx
+btv
bvH
bxT
bzH
@@ -110080,9 +101656,9 @@ bBK
bOm
bBK
bRH
-bPQ
-bUH
-bXU
+apd
+apd
+auI
bXK
cak
bZU
@@ -110092,7 +101668,7 @@ bZU
bZU
bZU
bib
-cje
+bgZ
bZU
cog
coC
@@ -110106,7 +101682,7 @@ coC
czp
cAx
czp
-cAx
+kwD
dbu
cEY
cEY
@@ -110123,13 +101699,13 @@ cFv
cJP
cKT
cLP
-cMI
-cND
+cMB
+cNB
cOF
cKM
cWe
cRd
-cRY
+cYM
cSG
cHZ
aaa
@@ -110282,15 +101858,15 @@ abq
aaa
akI
ajy
-amp
-anz
+alr
+tvx
aoV
aqs
arG
akt
auy
avY
-axo
+axn
aoX
aoX
avU
@@ -110304,15 +101880,15 @@ aKf
aCs
aMT
aRo
-aPQ
+aSb
aRo
aSN
-aRo
+nYP
aXw
aRo
-aPQ
-aRo
+aSb
aRo
+nYP
aRo
bdZ
bjd
@@ -110320,10 +101896,10 @@ bfw
biG
bpy
bmk
-boi
+boh
bpM
aXi
-btw
+btv
bvH
bBp
bfG
@@ -110341,7 +101917,7 @@ bRH
bVR
bWm
apf
-bYV
+avU
apf
auC
apf
@@ -110380,7 +101956,7 @@ cHZ
cOH
cPK
cQN
-cMJ
+cMN
cTf
cTv
cKM
@@ -110547,7 +102123,7 @@ atd
akt
auz
avX
-axo
+axn
cgo
cgo
avU
@@ -110560,15 +102136,15 @@ aCs
aCs
aCs
aMY
-aOs
+aRo
aPP
-aRp
-aSG
-oGg
+aRo
+aYi
+nYP
aWS
-aOs
-bar
-aOs
+aRo
+baT
+aRo
bcu
bfg
bea
@@ -110577,7 +102153,7 @@ bfw
biH
bfw
bml
-boj
+boh
bpN
bfw
btz
@@ -110598,7 +102174,7 @@ apf
apf
apf
apf
-aPT
+avU
cgH
cgU
apf
@@ -110608,12 +102184,12 @@ cjr
chy
ckA
bZU
-cmV
+clj
coC
coy
crE
-ctR
-cuW
+crE
+crE
cwe
cwC
coC
@@ -110625,8 +102201,8 @@ cEi
cEY
cGi
cIq
-cJX
-cKy
+cGo
+cGo
cGo
cMV
cEY
@@ -110804,7 +102380,7 @@ akt
akt
apf
apd
-axo
+axn
aoX
aoX
avU
@@ -110819,9 +102395,9 @@ aLP
aNb
aRo
baT
-tdP
+aRo
baT
-upv
+nYP
aYi
aRo
baT
@@ -110837,24 +102413,24 @@ bpF
bok
bpO
bfw
-ksa
+btv
bvK
bxY
bzJ
-bCt
+bXI
bDL
-bFu
-bFu
-bFu
-bFu
-bMJ
-bFu
-bFu
-bFu
-bFu
-bFu
-bFu
-bFu
+bgY
+bgY
+bgY
+bgY
+aSM
+bgY
+bgY
+bgY
+bgY
+bgY
+bgY
+bgY
bZR
apf
chn
@@ -110865,12 +102441,12 @@ dgG
cuV
clU
bZU
-cmV
+clj
coC
cpW
crH
ctW
-cuZ
+crH
cwg
cxm
cyp
@@ -110882,7 +102458,7 @@ czt
cFa
cGp
cIv
-cKa
+cLi
cKD
cLi
cNc
@@ -111062,28 +102638,28 @@ aoX
aEU
aHv
aHY
-ayD
+jap
azN
aNm
aCu
aDA
aET
-cbm
-ccw
+bkX
+bnW
aMq
aCu
aPw
aMW
aOu
aYh
-eKN
+aOu
aTL
tca
aYh
aOu
bas
aOu
-aOu
+tca
bcv
beb
bfv
@@ -111122,29 +102698,29 @@ cju
cjk
bZU
bZU
-cmV
+clj
coC
cpV
-crE
+tSj
ctV
-crE
+uov
ihM
-crE
-cyo
-czs
+mfz
+eIg
+yag
czn
cCs
cCv
-czs
-cEZ
-cGo
+yag
+qwd
+wyc
dmU
-cGo
+jgD
cKA
-cGo
+dxa
cKL
cEY
-cNT
+clj
bZU
abq
aaa
@@ -111313,18 +102889,18 @@ alv
amr
anD
ato
-axp
+ato
bFu
ate
aGj
-cJU
-cJU
-bgY
+hka
+ato
+bFu
azK
aAX
aCu
aDB
-bnW
+xYR
aGk
cjv
clW
@@ -111333,15 +102909,15 @@ aLS
aMZ
aOW
aOu
-aRq
+aSz
beb
mGz
aOu
aOu
aYk
-aRo
+iZz
baV
-bcw
+bdZ
bfq
bfw
bfw
@@ -111379,7 +102955,7 @@ bZU
bZU
bZU
bZU
-cmW
+clo
coC
cpY
crE
@@ -111569,11 +103145,11 @@ akx
alw
apH
anE
-aoZ
+awe
apd
apd
aoZ
-auC
+gqF
ajg
ajg
ayF
@@ -111581,7 +103157,7 @@ azP
ajg
aCu
aCE
-bkX
+pNK
aEH
ciy
cli
@@ -111597,8 +103173,8 @@ aOu
aWM
aYl
aOu
-aOu
-bcx
+tca
+qaM
bfp
bhX
bkx
@@ -111610,7 +103186,7 @@ btO
bfw
ksa
bvN
-bxT
+vNe
bzK
bDs
bFY
@@ -111627,7 +103203,7 @@ bzK
cgs
bYi
bZW
-bZY
+bFw
bzK
cho
cfX
@@ -111865,7 +103441,7 @@ bmq
bon
bpR
aXi
-rPA
+btv
bvH
bxT
bai
@@ -111874,7 +103450,7 @@ bDN
bFw
bHr
bIZ
-bHr
+fla
bFw
bOo
bFw
@@ -111882,7 +103458,7 @@ bRK
bTt
bai
bFw
-bFw
+jrE
bZc
bZZ
bzK
@@ -112119,10 +103695,10 @@ bkK
biL
bkB
bmr
-boj
+boh
bpS
brJ
-rPA
+btv
bvH
bxT
bzM
@@ -112131,7 +103707,7 @@ bBQ
bBQ
bBQ
bBQ
-bBQ
+teW
bBQ
bBQ
bBQ
@@ -112162,12 +103738,12 @@ cwY
czv
cYO
cCx
-cDv
+mRP
cxp
cDc
cxp
cIV
-cKd
+cxp
cKW
cxp
cNI
@@ -112339,7 +103915,7 @@ aaa
abq
alL
alz
-anG
+cgU
auB
aqy
apd
@@ -112348,7 +103924,7 @@ cgm
ajg
axt
aAY
-aAY
+iip
aBa
aCw
aCw
@@ -112387,11 +103963,11 @@ bBR
bBR
bFx
bBR
-xvd
bBR
+hiO
+bMM
+bMM
bMM
-bBR
-bBR
bRL
bTv
bUJ
@@ -112412,8 +103988,8 @@ cpb
crd
csG
cua
-cvd
-cwj
+djx
+dio
cxr
uQo
cxy
@@ -112421,10 +103997,10 @@ cBq
cCE
cDx
cEk
-cEk
+jlB
cHb
cIW
-cKf
+cIW
cKX
cLv
cNK
@@ -112580,9 +104156,9 @@ add
ady
aeb
aey
-aeX
-afC
agf
+afC
+aeX
agO
ahz
abB
@@ -112600,7 +104176,7 @@ amv
apd
aqz
cgo
-cgo
+bbj
auD
ajg
awX
@@ -112617,7 +104193,7 @@ ajg
aME
aNX
apf
-aPT
+avU
apf
aWh
aTY
@@ -112636,7 +104212,7 @@ bmt
bss
btR
bfw
-rPA
+btv
bvH
bxT
bai
@@ -112644,18 +104220,18 @@ bBS
bBS
bzK
bHs
-bKI
bBQ
-bMN
+teW
+bFw
bOp
bFw
bRM
bFw
bai
bWt
-tNG
+esf
+bHr
bHr
-kHS
bzK
ccA
auy
@@ -112675,7 +104251,7 @@ cxt
csJ
cys
cBp
-cys
+dZM
csJ
csJ
cFd
@@ -112857,7 +104433,7 @@ anI
aph
aqA
apd
-apd
+ksz
auE
ajg
axv
@@ -112871,10 +104447,10 @@ abq
aaa
aaa
aKj
-aNE
aNa
+hDK
apf
-aPT
+avU
apf
aSK
aTZ
@@ -112901,8 +104477,8 @@ bzK
bzK
bzK
bKw
-bKI
bBQ
+teW
bFw
bOp
bFw
@@ -112910,9 +104486,9 @@ bRM
bTw
bzK
bWu
-bWt
+dDw
bZf
-qBH
+tNG
bzK
chp
auJ
@@ -112927,8 +104503,8 @@ crf
csI
cpB
cmX
-cwk
-cxs
+cwj
+cxt
csJ
cbJ
cBs
@@ -112940,7 +104516,7 @@ cHd
cIY
cIA
cFd
-cLK
+cLk
cNM
bSD
cLz
@@ -113131,7 +104707,7 @@ aGy
aLV
aRB
apf
-aPT
+avU
apf
bZa
aWt
@@ -113145,12 +104721,12 @@ bfw
bjJ
bkS
bmi
-bmi
+pkX
bmv
brX
bsi
aAM
-btE
+bkG
bvH
byd
bzK
@@ -113158,8 +104734,8 @@ bBT
bDO
bFy
bFw
-bKI
bBQ
+teW
bFw
bOq
bPY
@@ -113185,10 +104761,10 @@ csH
cue
cri
cwj
-cxt
+dOQ
cys
czw
-cBr
+cBs
cCF
cpF
csJ
@@ -113200,7 +104776,7 @@ cFd
cLw
cNL
cPy
-cNT
+clj
chy
chy
cHZ
@@ -113213,7 +104789,7 @@ bZU
cUm
cSK
cTA
-cUj
+cTD
cZs
cSO
daS
@@ -113388,7 +104964,7 @@ aHj
aLW
aNe
apf
-aPT
+avU
apf
apf
apf
@@ -113415,8 +104991,8 @@ bDw
bDP
bzK
bHu
-bKI
bBQ
+teW
bFw
bOr
bFw
@@ -113439,8 +105015,8 @@ cok
cpb
crd
csN
-cua
-cri
+rJk
+imZ
cwl
cxu
csJ
@@ -113454,10 +105030,10 @@ cHg
cJa
cKj
cKe
-cLW
-cNN
+cLk
+cNM
cPy
-cNT
+clj
coD
chy
bZU
@@ -113637,31 +105213,31 @@ aaa
aBb
aCy
aDF
-aEY
+aEZ
aGo
aHC
aGu
aHb
-aLX
+aLW
aNf
-aOz
+aOy
aPV
-azS
+bgY
aSM
aVk
aVq
-azS
+bgY
aYX
-azS
-azS
+bgY
+bgY
azB
apf
bfD
bhl
-biR
bhl
-bmx
-boq
+bhl
+bmw
+bhl
bpX
brM
btG
@@ -113672,8 +105248,8 @@ bzK
bzK
bzK
bKE
-bKI
bBQ
+teW
bFw
bOs
bPZ
@@ -113699,7 +105275,7 @@ csE
cuk
cvf
cwj
-cxt
+jNa
cys
czy
cBt
@@ -113707,15 +105283,15 @@ cCK
cDO
csJ
cFg
-cHe
+cHg
cIZ
cIB
cFd
-cLw
-cNK
+jzm
+wEZ
cPy
cRl
-cTZ
+cOM
cNZ
cKV
cZq
@@ -113732,7 +105308,7 @@ cZt
cSO
cSO
dbw
-cWP
+cUX
cSO
cXF
cYl
@@ -113864,9 +105440,9 @@ acU
adn
adn
aep
-ado
+oxC
afd
-ado
+iXL
fZa
agS
ahF
@@ -113885,8 +105461,8 @@ aaa
apf
aqB
arU
-aEl
-axa
+atj
+apd
ajg
axz
axQ
@@ -113894,7 +105470,7 @@ aaa
aBb
aCz
aDG
-aEZ
+dtM
aGp
aHB
aIY
@@ -113916,7 +105492,7 @@ beg
bfE
bhm
biS
-bkF
+biS
bmy
bos
btS
@@ -113928,9 +105504,9 @@ bzK
bBT
bDO
bFz
-bHw
-bJa
+bFw
bBQ
+teW
bFw
bOt
bRh
@@ -113946,7 +105522,7 @@ bdq
cdT
chT
cgf
-chJ
+oRr
clY
cmX
cmX
@@ -113968,27 +105544,27 @@ cHi
cGm
cKk
cFd
-cLw
-cNK
+cLk
+cNM
cPy
cRo
-cji
+chy
chy
bZU
cZw
daM
dby
bZU
-cyE
+svF
bZU
-cSf
+cTD
cWm
cTD
cZa
-cUR
+cSf
dfs
-teY
-cWr
+cUX
+cWs
cUX
cSO
dbL
@@ -114127,7 +105703,7 @@ afp
agq
acN
ahE
-dOL
+aiy
aiE
abB
aaa
@@ -114141,8 +105717,8 @@ abq
abq
alL
aqC
-amz
-aEj
+apd
+apd
auI
awg
awZ
@@ -114173,12 +105749,12 @@ apf
ceY
bhn
biT
-bkG
+iNL
bmz
bot
bpZ
aAM
-rPA
+btv
bvR
bxT
bzK
@@ -114186,8 +105762,8 @@ bDw
bDP
bzK
bHx
-bBQ
-bBQ
+spv
+svR
bMP
bzK
bzK
@@ -114202,7 +105778,7 @@ apf
ccC
cdT
cfs
-cgg
+cgf
chK
clX
ckF
@@ -114225,7 +105801,7 @@ cHh
cFd
cKe
cFd
-cLw
+cLk
cKQ
cPy
cPy
@@ -114236,7 +105812,7 @@ cDU
daL
cPy
cPy
-cyE
+svF
bZU
cSg
cRh
@@ -114398,7 +105974,7 @@ abq
aaa
apf
anE
-arN
+apd
ajg
ajg
ajg
@@ -114416,9 +105992,9 @@ aIZ
aLZ
aNi
kDt
-fFk
-izL
-vJx
+aPX
+aRu
+aRu
aRu
aRu
aWT
@@ -114460,40 +106036,40 @@ ccD
cdT
chU
cgf
-chJ
cjt
-oRr
+cjt
+cjt
cLT
cpE
cxI
-csS
+ckU
cuL
-cvi
-cwo
-cxw
+cKW
+cYO
+cDv
cxL
cxp
cNG
-cxp
+ekd
cpH
cCH
-cFP
+cIV
cHl
cxp
cxp
cKY
cLY
-cDv
+mFx
cKW
cRp
-cUo
+cxp
cxp
cYO
cZI
daO
cRV
cPy
-cyE
+svF
bZU
cSh
cRh
@@ -114503,7 +106079,7 @@ cUT
cSO
cSO
cWt
-cZk
+cSO
cSO
cSO
dhn
@@ -114670,12 +106246,12 @@ aBb
aBb
abq
aIX
-aMa
+aLW
aNj
-aOC
+kDt
aPX
aRu
-aSO
+aRu
hBM
aRu
aWT
@@ -114683,74 +106259,74 @@ aYr
aZD
avx
bcI
-beh
+bNp
bjl
blI
biV
bkI
-biV
+cfI
bkI
-bqa
-beh
-btJ
-bvT
-byg
-bzP
-byg
-bFZ
+bQF
+bNp
+bNp
+bek
+bfV
+bfV
+bfV
+bsV
bFA
byg
-bJb
-byg
-byg
-dUP
-byg
-byg
-byg
-bUL
-byg
-bFZ
+bfV
+bfV
+bfV
+bfV
+bfV
+bfV
+bfV
+bjm
+bfV
+bsV
bZh
-byg
-cMS
+bfV
+bfV
ccE
cdT
cfz
cdq
chL
cik
-cil
+cik
cjA
cpD
crj
csQ
-cuK
+ckd
cvh
-cwn
-cxv
+cDe
+cDe
cyt
czD
cNF
uMx
-uMx
+cFj
cEl
cFj
cHk
-uMx
-uMx
-uMx
+cFj
+cFj
+cFj
cLX
cNU
cPA
-cNU
+qee
cUe
-uQl
-cDe
+cFj
+cFj
cZy
daN
cRu
cPy
-cyE
+svF
bZU
cRh
cRh
@@ -114929,23 +106505,23 @@ aaa
aKj
aPx
aNk
-avx
+qlH
aPZ
-aRu
-aSP
+aUg
+aUg
atJ
bmK
aWU
aYs
aZE
-avx
+pvu
bcJ
bei
bfI
bfI
biW
bfI
-bfI
+oJQ
bfI
bjn
bfI
@@ -114956,18 +106532,18 @@ bzQ
bfI
bfI
bfI
-bfI
+oJQ
bJc
bKL
bfI
-bOu
+bfI
bfI
bfI
bfI
bjn
bfI
bfI
-bfI
+oJQ
caC
cby
ccF
@@ -114980,7 +106556,7 @@ cim
cop
cdT
crm
-ctq
+ckU
cuM
cvk
cwq
@@ -114988,12 +106564,12 @@ cwq
cyw
cAh
cwq
-cwq
-cwq
-cEO
+pAj
cwq
cHy
cwq
+bOZ
+cwq
cwq
cwq
cwq
@@ -115002,12 +106578,12 @@ cvk
cRL
cUq
cXr
-wgm
-cZQ
+cRL
+daP
daP
dbG
cPy
-cyE
+svF
bZU
dem
deL
@@ -115143,7 +106719,7 @@ aaa
abB
aci
aco
-acA
+wEq
acF
aco
adp
@@ -115152,7 +106728,7 @@ aer
aeP
acN
afx
-agu
+agq
acN
ahI
aiy
@@ -115189,7 +106765,7 @@ aNl
aOA
aQa
aRu
-aSP
+aRu
bmJ
aVt
aWV
@@ -115201,18 +106777,18 @@ bej
bfJ
bhp
biX
-bfS
+bdb
bpI
-bfS
+bdb
bqb
brO
-bfS
-bfS
-bfS
+bdb
+bdb
+bdb
bzR
-bfS
-bfS
-bfS
+bdb
+bdb
+bdb
bfS
bJd
bKM
@@ -115224,10 +106800,10 @@ bTC
bUM
bWz
bXT
-bMR
+oWL
bMR
bek
-ccG
+bfV
chM
chM
cel
@@ -115247,9 +106823,9 @@ czJ
cCa
cDf
cDW
-cEn
-cFU
cHm
+cFU
+kzH
cDW
cKZ
cKZ
@@ -115257,22 +106833,22 @@ cKZ
cKZ
cKZ
cRE
-cUp
+cUq
cXw
dfO
cZO
cYC
cRU
cRU
-cyE
+svF
bZU
del
-cTG
+deN
deN
deU
cZX
cVU
-cWv
+cWz
dfG
cWz
cXI
@@ -115401,18 +106977,18 @@ acg
aca
acr
acD
-acM
-acZ
-ads
+acg
+aet
+adm
adS
-aeu
-aeS
+aco
+aeO
acN
acN
acN
acN
ahx
-aiD
+aiB
aje
aiK
abq
@@ -115446,10 +107022,10 @@ cDt
aOA
aQb
aRu
-aSP
aRu
+hnI
aVu
-fgw
+aRu
aYr
aZG
aOF
@@ -115494,7 +107070,7 @@ ciX
cjD
cdT
cxI
-csS
+ckU
crP
cvj
cvj
@@ -115513,7 +107089,7 @@ cIF
cJM
cLb
cKZ
-cwj
+gSK
cUp
ckQ
cRU
@@ -115521,15 +107097,15 @@ cOU
daU
cRX
cRU
-cyE
+svF
bZU
cUx
-cTH
-deN
+ktX
+lUv
deY
cVw
cUY
-gdk
+dfw
cWV
cXm
cXJ
@@ -115703,10 +107279,10 @@ aRN
aOA
aQc
aRu
-aSR
-aUg
-aUg
-elA
+aRu
+aRu
+aRu
+aRu
aYv
aZH
asL
@@ -115751,7 +107327,7 @@ ciY
clZ
cjT
cmq
-ctq
+ckU
cnn
cjQ
cnp
@@ -115786,8 +107362,8 @@ deN
deX
cVz
cUZ
-hEP
-cWV
+cWz
+jQZ
cUX
cXJ
dhl
@@ -115919,13 +107495,13 @@ abB
adb
adu
adU
-ado
-ado
+het
+fCO
afv
-ado
-xYx
+iXL
+fZa
agU
-ahN
+ahG
aiG
acN
abB
@@ -115954,7 +107530,7 @@ aaa
aaa
aaa
aAf
-nbq
+aKs
aMe
bTq
aOA
@@ -115967,9 +107543,9 @@ aWW
aYw
bcd
axg
-bcN
-bek
-bfK
+bNp
+mmk
+tFb
bhr
biZ
bkL
@@ -115985,8 +107561,8 @@ bCl
aPC
bFH
bMV
-bJg
-bKP
+bJf
+bKO
bNM
bOR
bRu
@@ -116006,15 +107582,15 @@ cgr
chM
cjw
cjO
-ckG
+ckI
ckK
ckN
crW
cmj
cnq
+hCM
cpZ
-cyA
-cAk
+cAm
cAF
cDf
cDm
@@ -116028,7 +107604,7 @@ cLd
cLd
cLd
cwj
-cUp
+cUq
cXA
cRU
daf
@@ -116043,7 +107619,7 @@ deP
dfo
fPa
fPa
-iYb
+fPa
cWW
cXn
cXK
@@ -116211,7 +107787,7 @@ aFd
aaa
aaa
aHG
-aKt
+aKs
aMf
aKm
aOF
@@ -116224,7 +107800,7 @@ aOF
aUo
aOF
aOF
-bcO
+bQF
ben
bfM
bhq
@@ -116237,7 +107813,7 @@ bvq
bwc
bvY
bym
-bzV
+uvM
bBX
bqc
bHq
@@ -116252,20 +107828,20 @@ bTF
bUP
bWA
bYR
-bZx
-caM
-bek
-ccG
+vBv
+dDT
+vNb
+bfV
ceq
kNJ
cjz
ptc
chM
cjx
-cjP
+cjO
ckI
cmq
-ctq
+ckU
cnn
cjQ
cwr
@@ -116296,12 +107872,12 @@ bTc
bZU
cSR
cTK
-cUs
+deN
cUY
cVw
cUY
-cWu
-cWV
+dfw
+xUe
cUX
cXJ
dhl
@@ -116453,7 +108029,7 @@ aoW
aqa
arj
aqa
-aqH
+aqa
aCT
amx
amx
@@ -116481,7 +108057,7 @@ abq
aaa
aZJ
bbg
-bcN
+bNp
bek
bjA
bhq
@@ -116500,7 +108076,7 @@ bqc
bHv
bEx
bJh
-bKQ
+bKZ
bxq
bOS
bRv
@@ -116512,22 +108088,22 @@ bYZ
bZx
caM
bek
-cdA
+bjD
chM
cca
cfx
chW
chM
ciY
-clZ
+wVS
cjT
cmq
-ctq
+ckU
ckt
cvj
cui
+hCM
cpZ
-cyC
cAm
cBd
cDf
@@ -116552,14 +108128,14 @@ cRU
cRm
bZU
cST
-cTK
+rUJ
cUs
cUZ
cVz
cUZ
-cWw
-cWV
-cXm
+cWz
+ijf
+wzo
cXJ
dhl
aaa
@@ -116738,7 +108314,7 @@ aOG
aaa
aUr
bbh
-bcQ
+bcM
bel
bfO
bhq
@@ -116751,7 +108327,7 @@ brS
bje
bya
bym
-bzV
+thC
bBY
bqc
bHt
@@ -116769,7 +108345,7 @@ bYw
bMS
caD
bek
-ccG
+bfV
chM
cck
cgI
@@ -116780,10 +108356,10 @@ cjR
cdT
ckM
ckO
-wlG
+cnn
cvj
csX
-cpZ
+oUk
cyB
cAl
cAW
@@ -116810,13 +108386,13 @@ cRm
bZU
cSU
cTK
-cUs
+deN
cVa
cVA
cVa
-cWy
-cWX
-cZx
+dfw
+cVa
+dfw
cXL
cSO
aaa
@@ -116954,7 +108530,7 @@ acN
acN
acN
ahQ
-aiy
+rjj
ajF
acN
akH
@@ -116986,7 +108562,7 @@ aKw
aMf
aaa
aOG
-aQg
+aOG
aVw
aSU
aUj
@@ -116997,7 +108573,7 @@ aZJ
bbi
bcP
beo
-bfK
+acw
bht
bjc
bkP
@@ -117007,7 +108583,7 @@ btP
brT
bje
byu
-byn
+bym
bzX
bBZ
aPG
@@ -117026,7 +108602,7 @@ bOB
bMS
bUM
ben
-ccK
+bjm
chM
chM
chM
@@ -117036,11 +108612,11 @@ cjy
cjy
cdT
cpx
-ctI
+ckU
csx
cvj
cvj
-cvU
+pAk
cyG
cAo
cyG
@@ -117055,7 +108631,7 @@ cBv
bTa
clI
cmc
-jeK
+cIo
cVb
cnE
cIm
@@ -117217,10 +108793,10 @@ ajT
akG
akR
alN
-amY
vLL
vLL
vLL
+hRw
vLL
vLL
asM
@@ -117233,7 +108809,7 @@ aqJ
azA
aAa
aBf
-ayL
+alM
aDM
aFg
aAE
@@ -117244,8 +108820,8 @@ aMf
abq
aOG
aQh
-vLz
-hNq
+aRA
+aRA
aUk
aVx
aOG
@@ -117265,7 +108841,7 @@ buB
bje
bye
bym
-bzY
+bzV
bCa
aPF
bFH
@@ -117283,7 +108859,7 @@ bXY
bMW
can
bek
-ccG
+bfV
cfi
cia
cjC
@@ -117298,7 +108874,7 @@ cuP
cvo
cwv
cxC
-cyD
+xkY
cAn
cCk
cDg
@@ -117309,14 +108885,14 @@ cIf
cJh
cKn
bRn
-cMd
+cIo
clQ
-cMd
-wxw
+cIo
+cIo
cnc
cpJ
cIm
-cmV
+clj
bZU
bZU
bZU
@@ -117324,7 +108900,7 @@ cRr
bZU
cWZ
cVs
-cNH
+cWi
cXa
cSO
cSO
@@ -117470,11 +109046,11 @@ agV
ahS
aiJ
ajH
-akf
+tYX
akK
ajH
-alF
-aAs
+xDS
+qiC
qiC
qiC
apm
@@ -117485,26 +109061,26 @@ qiC
awt
atq
atq
-wSU
-axI
+atq
+atq
ayR
aAb
-aRP
+rDS
aCG
-aDN
+aKH
aDN
aCF
-aHJ
+vZl
aJd
aKy
aMf
aaa
aOG
aUP
-wRS
+aRA
aSV
aUl
-sGi
+aUk
aZx
aOG
bcl
@@ -117539,12 +109115,12 @@ bWD
bXZ
bMW
caN
-cbA
-bda
+bek
+bcX
cdW
cDS
cjF
-ckU
+xSh
cmq
cnn
cma
@@ -117555,7 +109131,7 @@ cuS
cvL
cma
cxF
-cyH
+cmq
cAp
cCm
cDg
@@ -117567,13 +109143,13 @@ cHs
cGh
cDg
bRt
-rOw
-cIo
+cSB
+cSB
cmu
cVm
col
cIm
-cmV
+clj
bZU
cPH
cSN
@@ -117581,7 +109157,7 @@ cSr
cTq
cTO
cVD
-cWf
+cTt
cUv
cUv
dau
@@ -117727,14 +109303,14 @@ acN
ahR
aiI
ajG
-ajU
+akf
ajJ
akT
alO
-apn
atr
atr
atr
+hNy
atr
aqd
atr
@@ -117742,12 +109318,12 @@ asV
arZ
atr
atr
-gHt
-aII
-ulS
+atr
+aFz
+atr
aAc
-aBh
-azw
+aUx
+aKc
aDO
aFh
aCr
@@ -117768,7 +109344,7 @@ aZN
bbk
bdS
beq
-bfS
+bdb
aYx
abq
abq
@@ -117795,14 +109371,14 @@ bPS
bWE
bZw
bZA
-caM
-bek
+dDT
+uhY
bcX
cdW
cia
cjE
-ckT
-cjG
+xSh
+cmq
ckf
coo
coo
@@ -117813,7 +109389,7 @@ coo
coo
cxE
cmq
-cAp
+aac
cCl
cDh
cBv
@@ -117826,21 +109402,21 @@ cBv
bSE
clV
cmd
-sEe
+cIo
cVl
cIn
cIm
-cmW
+clo
bZU
cPI
cQM
+pue
cRt
-cRt
-cRt
+cVc
cTP
-cUw
cRt
cRt
+nej
cRt
cTr
cXb
@@ -118001,7 +109577,7 @@ asS
agB
asS
axK
-aqJ
+sOB
aAd
aBi
akD
@@ -118015,17 +109591,17 @@ aMf
aaa
aOG
aQk
-qYF
+aRA
aSX
-aUl
-iHq
+wfs
+aRA
aWZ
aOG
bco
-bbl
+aZL
bgH
bek
-bfS
+bdb
aYx
abq
abq
@@ -118036,12 +109612,12 @@ bur
bwg
boE
bAj
-bCf
-bAk
+boE
+boE
bGa
-bAk
+boE
aUi
-bJk
+bJf
bKO
bMY
bPq
@@ -118054,7 +109630,7 @@ bMW
bMW
caP
cbC
-ccL
+bbr
cdX
cjj
ckd
@@ -118070,7 +109646,7 @@ cuF
coo
cxH
cyI
-cAp
+aac
cCl
czC
cAq
@@ -118093,14 +109669,14 @@ cPJ
cQM
cTg
cSk
-cSk
+gnZ
cTQ
-pue
-cVc
+cSo
+cSo
+gTp
cRt
-cVZ
dbj
-cXd
+cXb
cYf
cXb
cYf
@@ -118260,8 +109836,8 @@ avd
aqY
atr
lgv
-aBj
-ayL
+aFA
+alM
aDP
aFg
aAE
@@ -118272,9 +109848,9 @@ aMf
abq
aOG
aQh
-xQv
-xQq
-fDi
+aRA
+aRA
+aUk
aVz
aOG
aOG
@@ -118282,7 +109858,7 @@ aZL
aZL
bdU
bek
-bfS
+bdb
aYx
abq
aBV
@@ -118290,14 +109866,14 @@ aIb
bkW
btY
brY
+bAk
btQ
-btQ
-bAe
-btQ
+bAj
+boE
bDr
-oqV
+boE
bHD
-aPU
+aUi
bJj
bKX
bMW
@@ -118310,8 +109886,8 @@ bMW
bMW
bMW
caO
-bek
-bcX
+beo
+mVW
cdW
cjh
cmq
@@ -118322,12 +109898,12 @@ cia
cpM
cmq
xFR
-cmp
+clL
cvM
cia
cxG
cmq
-cAp
+aac
cnn
czC
cCi
@@ -118338,24 +109914,24 @@ dhB
cGj
czC
bSX
-bRr
+cSB
cSB
cmw
-cIn
+diT
com
cIm
-cje
+bgZ
bZU
bZU
cQR
cRv
-lUY
-lUY
-lUY
-cUy
-cVd
-lUY
-cWa
+cRt
+cRt
+cRt
+cRt
+cRt
+cRt
+cRt
cTr
cXb
cTX
@@ -118506,20 +110082,20 @@ hIT
ala
aon
app
-aqK
+app
arV
avb
auS
-auS
+fBO
ayV
auT
aDD
ayq
-alF
+vSx
aZa
-aRP
+rDS
aCI
-aDN
+aKH
aDN
aCF
aHJ
@@ -118537,9 +110113,9 @@ aOG
aaa
aZJ
bbm
-bcN
+bNp
bek
-bfS
+bdb
aYx
abq
aCV
@@ -118556,11 +110132,11 @@ bDX
byq
bkW
bLS
-xca
+bKO
bMZ
bOG
bQn
-bRZ
+bQn
bRZ
bWb
bWG
@@ -118572,9 +110148,9 @@ bcX
cdW
cia
cky
-clL
-cmq
-cmq
+clK
+xkY
+nVg
cox
cpP
eKV
@@ -118582,14 +110158,14 @@ vuE
crC
cvR
cwx
-cmq
+kIc
cmq
cAs
cCo
czC
cEe
cBB
-cCB
+dhB
dhA
dhD
cGk
@@ -118601,7 +110177,7 @@ cna
cnC
coq
cIm
-cmY
+bgZ
bZU
cSc
cRn
@@ -118773,9 +110349,9 @@ auR
aDg
asS
aqJ
-aYL
-aBh
-azw
+lgv
+glM
+aKc
aDO
aFi
aCr
@@ -118794,22 +110370,22 @@ aOG
aaa
aUr
bbn
-bcW
+bbr
bel
-bfS
+bdb
aYx
abq
aBY
bop
boC
-boE
+teE
bsa
boE
byp
byq
bTh
-dPn
-ogV
+boE
+boE
bFK
bkW
bLl
@@ -118818,7 +110394,7 @@ btk
bOH
bSa
bSa
-bSa
+eQf
bUX
bWH
bYJ
@@ -118829,19 +110405,19 @@ bcX
cdZ
cDS
ckx
-clK
-cmp
+cmq
+cmq
cnn
cia
cpO
fsY
-crC
+xFR
cmq
cvO
cia
-cxI
-cyJ
-cAr
+cxF
+cmq
+aac
cCn
czC
cMs
@@ -118854,14 +110430,14 @@ czC
bTb
cIn
cIn
-vVE
-cQA
+cna
+pUh
cos
cIm
-cmY
+bgZ
bZU
cPL
-cRk
+cQM
cRx
cTr
cUz
@@ -119010,12 +110586,12 @@ abq
agA
agA
ahV
-aiN
-aiN
+ahU
+ahU
akc
akr
pJV
-pJV
+waJ
anL
asa
agA
@@ -119031,7 +110607,7 @@ aEV
aJy
aOY
aZb
-aBl
+aFl
akD
akD
akD
@@ -119053,13 +110629,13 @@ aZJ
bbo
bcX
bek
-bfS
+bdb
aYx
abq
aDK
bpV
boD
-boE
+gDB
bsa
boE
byw
@@ -119075,7 +110651,7 @@ bxo
bNb
bSa
bSb
-bSa
+eQf
bUY
bWI
bYd
@@ -119098,7 +110674,7 @@ cwb
cwy
cxJ
cmq
-cAp
+aac
cno
czC
cAu
@@ -119115,11 +110691,11 @@ cnb
cVv
cot
cIm
-cQi
+clu
bZU
cPM
-cRs
-cRy
+cQM
+cRx
cTt
cUv
cUv
@@ -119288,8 +110864,8 @@ axi
asd
atr
lgv
-aBj
-ayL
+aFA
+alM
aDQ
aFg
aAE
@@ -119310,13 +110886,13 @@ aMf
bbp
bcX
bek
-bfS
+bdb
aYx
abq
bkW
bpY
boE
-boE
+gDB
bvW
btU
bwh
@@ -119332,14 +110908,14 @@ bvl
bNf
bSa
bSa
-bSa
-bSa
+cfJ
+odF
bWJ
bYe
bZm
cas
-faY
-ccM
+vNb
+bcX
cea
cjm
cDS
@@ -119355,7 +110931,7 @@ coo
coo
cia
clM
-cAt
+cms
coo
cYF
czC
@@ -119376,14 +110952,14 @@ cNV
czI
bZU
cRq
-cRy
+cRx
+cRt
cRt
cRt
cRt
cRt
cRt
cRt
-pue
cTr
cXb
cTX
@@ -119535,7 +111111,7 @@ aof
aop
aps
aqN
-asc
+aqN
aqN
auW
agB
@@ -119547,33 +111123,33 @@ azF
baq
aRP
aCJ
-aDN
+aKH
aDN
aCF
aHJ
-aJj
-aKF
-aMh
-aNr
-aMh
+aJh
+aKC
+aKC
+aKw
+aKC
aQp
aRC
-aMh
+aKC
aMh
aXR
-aOH
-aNr
+aKC
+aKw
aZP
bbq
-bcY
+bcX
ber
-bfS
+bdb
aYx
abq
aEh
bqf
boD
-boE
+gDB
bwf
boE
bwi
@@ -119596,7 +111172,7 @@ bYf
bZl
car
ccn
-ccN
+bcX
cdW
cfo
cgw
@@ -119605,12 +111181,12 @@ cjH
cgw
coz
cnd
-cgw
-cgw
+jwh
+dWX
cgw
ctQ
-cwz
-siL
+cgw
+cgw
cgw
cAv
cCp
@@ -119625,24 +111201,24 @@ cLg
cMT
cns
cns
-hHX
+cEX
cWG
cMh
cNS
cNW
cON
cPN
-cRD
-cRy
+cQM
+cRx
+cRt
+nej
cRt
cRt
cRt
-cVZ
-cVh
-lUY
-daw
+cVc
+cRt
dbm
-cXp
+cXb
cYf
cYX
cYf
@@ -119786,42 +111362,42 @@ ajL
akd
akN
alB
-alB
+spg
anM
aoc
aoo
apr
aqM
arY
-atv
+arY
auV
-awz
+crz
awz
aqJ
aFz
amE
aqJ
-nUW
-aBm
-azw
+lgv
+jZd
+aKc
aDO
aFj
aCr
aHM
aJg
aKG
-aMi
+aKG
aNs
-aMi
-aMi
-aMi
-aMi
+aKG
+aKG
+aKG
+aKG
aUp
aMi
-aXa
+aMi
aYz
aZQ
-bbr
+kuf
bcZ
bes
bfU
@@ -119854,38 +111430,38 @@ bZn
car
cbE
qBP
-kuf
+mOc
cfp
+tEL
cgx
-pXI
cjI
-ckV
+tPc
tPc
cnt
+wFW
+xvi
tPc
tPc
tPc
-dSJ
-cub
dRX
-pdC
+tPc
cxK
cyL
-czG
-tEL
-tEL
-oJA
-cDz
-xBd
-cgx
-cGq
rEw
cgx
cgx
-gsn
+cgx
+cDz
+cgx
+cgx
+cgx
+rEw
+cgx
+cgx
+cgx
cWl
-oUC
-tEL
+cDz
+cgx
cNX
cOO
cPO
@@ -119893,13 +111469,13 @@ cRB
cRA
cTC
cTc
-cTc
+dGT
cUA
cVi
cVC
cRt
cTr
-cXf
+cXb
cTX
cTX
cTX
@@ -120045,21 +111621,21 @@ agA
aks
alY
anO
-aof
-atr
+tCC
+dKL
api
aqP
-atr
+dKL
atw
auZ
atv
-atv
-awB
+fhH
+arY
aFB
ayw
-aPb
-bcB
-aBn
+aOY
+aZb
+aFz
akD
akD
akD
@@ -120067,19 +111643,19 @@ amx
aKL
aJk
aNt
-aMj
aNt
-aMj
-elv
-aMj
-aMj
+aNt
+aNt
+aNt
+aNt
+aNt
aUq
-aMj
-aMj
-aMj
+aNt
+aNt
+aNt
aZR
bbs
-bda
+bcX
bek
bfV
aYx
@@ -120087,22 +111663,22 @@ abq
aDK
bqh
boD
-boE
+hht
bvW
btW
bwi
bBU
byq
-bCf
-bEa
+boE
+bDY
bFP
bHy
-bKY
-bLd
+bJn
+bLb
bNd
bOL
bQr
-bSd
+bQr
bSd
cgq
bWM
@@ -120110,38 +111686,38 @@ bYg
bZn
car
cco
-ccN
+bcX
cee
cfq
cgy
-oym
-cjJ
-pDi
+cgy
+cgy
+cgy
cmm
cnu
-cmm
+lHZ
cqk
crI
csT
cuc
-cuc
+pMS
cuc
czx
cyM
czH
cAA
cCQ
-qtw
+cmm
cEv
-cEo
+cmm
cFl
-cGr
+cmm
czH
cIt
cuc
cuc
cWH
-cmm
+lHZ
cmm
cCQ
cOP
@@ -120150,7 +111726,7 @@ cRO
cSX
cTV
cUB
-cTW
+wuT
cWB
cWT
dac
@@ -120301,7 +111877,7 @@ aku
agA
alD
alY
-alC
+tAk
atK
aoq
aoq
@@ -120310,11 +111886,11 @@ aoq
aoq
auY
awA
-atr
-aos
-aFA
-amE
-atr
+egZ
+dKL
+vss
+sxA
+dKL
nUW
aBo
aCK
@@ -120323,7 +111899,7 @@ aHL
aGx
aHO
aJl
-aKI
+aNt
aMk
aMk
aOK
@@ -120336,22 +111912,22 @@ aXb
aYA
aZS
bbt
-bcX
-bek
-bfV
+lDm
+beo
+jGr
aYx
abq
bkW
bqg
boE
-boE
+hht
bvW
btX
bwk
bBO
byq
bCh
-bEb
+bwi
bFQ
bGu
bJr
@@ -120360,14 +111936,14 @@ bvy
bOM
bSe
bSe
-bSe
-bSe
+yhg
+anr
bWN
nKy
bZo
cas
-faY
-ccM
+uhY
+bcX
ced
cfr
cft
@@ -120381,7 +111957,7 @@ cmo
cmo
cmo
cvn
-cvn
+nhK
cwE
cmo
cyN
@@ -120572,7 +112148,7 @@ akD
akD
amx
aPm
-rHe
+aAc
alF
alM
aDS
@@ -120601,14 +112177,14 @@ abq
aEh
cfh
boD
-boE
+hht
bsa
boE
byy
byq
byq
bDW
-bEc
+bwi
bFR
bkW
bJs
@@ -120617,7 +112193,7 @@ bxp
bON
bSe
bSf
-bSe
+gEi
bVc
bWO
bYn
@@ -120647,7 +112223,7 @@ cDo
cBK
cDH
cDC
-cEq
+cDC
cFm
cGt
cHo
@@ -120814,7 +112390,7 @@ abq
abq
atK
alC
-alY
+dnu
alS
atK
aoj
@@ -120827,8 +112403,8 @@ awC
akD
aAl
aFV
-aKb
-aPc
+alM
+aqJ
beT
aBq
aCL
@@ -120841,12 +112417,12 @@ aKK
aMk
aNv
aNA
-aNA
+vOE
aRE
aTa
-aNq
-aVE
-aVE
+bNP
+oVK
+mZH
aYC
aMk
beD
@@ -120858,14 +112434,14 @@ abq
aBY
bqj
boG
-boE
+mAa
bsa
boE
byx
byq
bAi
bDQ
-bEd
+boE
bFS
bkW
bJt
@@ -120885,8 +112461,8 @@ bcX
cef
cft
cgA
-cid
cic
+gnJ
ckX
cmo
cnw
@@ -120904,7 +112480,7 @@ cAC
cBJ
cCI
cDD
-kxc
+cEr
cCI
cGu
cHo
@@ -120918,10 +112494,10 @@ cQk
cOS
cpR
cIx
-cmY
+ebA
bZU
cUG
-cSo
+nxh
cUE
cSV
abq
@@ -121083,7 +112659,7 @@ avf
akD
akD
aAn
-aAn
+gKb
aKA
aRP
bfm
@@ -121103,11 +112679,11 @@ aRF
aTb
aNq
aVE
-aVE
+sYp
baO
aMk
beR
-bdc
+bMR
bek
bfV
aYx
@@ -121116,13 +112692,13 @@ aBY
bql
bsc
btZ
-bsg
+bua
bwn
bAb
byq
byq
byq
-bEe
+bDX
byq
bkW
bMm
@@ -121142,26 +112718,26 @@ bdb
cee
cOm
cgB
-cie
cic
+cie
ckY
cmo
-cnx
+tvw
coP
cqh
crL
csV
-crL
+vOx
cvq
cxZ
cmo
-czW
+ciw
czL
cAD
cBJ
cCJ
-cDD
-cEr
+fZG
+nXf
cFn
cGv
cHq
@@ -121169,13 +112745,13 @@ cIw
cJl
cMm
cLm
-cMk
-cLo
-cQv
+nzK
+nzK
+pzX
cOT
cPS
cIx
-cmY
+ebA
bZU
cTh
cTU
@@ -121342,12 +112918,12 @@ akD
aFg
aFX
aKc
-aQy
-bfk
+aBl
+lgv
aFA
amE
aDU
-aFn
+aGr
amx
aHS
aJp
@@ -121355,16 +112931,16 @@ aOb
aMl
aNx
aUa
-hnt
+aNA
aNA
aTc
aNq
aVE
-aVE
+sYp
baL
aMk
aMk
-bdc
+bMR
bek
bfV
aYx
@@ -121374,12 +112950,12 @@ aIH
bkW
bum
bsh
-bua
-byQ
+fGt
+sLs
bBW
bCA
bEf
-bsh
+byQ
bFT
aRj
bJv
@@ -121395,12 +112971,12 @@ bNh
bNh
caR
bek
-ccO
-ceg
+bdb
+cee
cfu
-cgC
-cif
-iWi
+cic
+cic
+cie
ckZ
cmo
cng
@@ -121424,15 +113000,15 @@ cJb
cHp
cIu
cJk
-cMj
-cLp
+pkf
+uEN
cLo
cLr
cQv
cPR
cSx
cIx
-cmY
+ebA
bZU
cTi
cWo
@@ -121599,13 +113175,13 @@ akD
amE
amE
amx
-aUx
-tay
-aWo
+alF
+lgv
+vDc
amE
aDX
aFo
-alM
+fZC
aHT
aJq
aOi
@@ -121616,12 +113192,12 @@ aQs
aSy
aTd
aUs
-nLj
+aNC
aXd
-gGG
+aNC
aZT
aMk
-bdc
+bMR
bek
bfV
aYx
@@ -121631,13 +113207,13 @@ abq
aJY
buE
bvr
-bAk
-bAk
-bCc
-bAk
+boE
+boE
+bAj
+boE
bEg
-bFU
-bAk
+boE
+boE
aUi
bJw
bLi
@@ -121665,7 +113241,7 @@ coK
cqg
crK
crN
-cws
+crN
cvs
cxY
cxD
@@ -121681,11 +113257,11 @@ czM
czM
cIx
cJn
-qsd
-nzK
-nzK
-nzK
-pzX
+pkf
+cLo
+cLo
+xqz
+ryN
cOX
cPW
cSs
@@ -121855,12 +113431,12 @@ atL
akD
aAo
aGr
-aKb
-aPc
+alM
+aqJ
aAm
aBu
aAN
-aDW
+aDN
aFp
aGA
aHU
@@ -121869,17 +113445,17 @@ aOh
aMl
aNz
avB
-eSB
+aNA
aNA
aTc
aNq
aVE
-aVE
-veh
+sYp
+aNC
aZU
aYA
-bdd
-bet
+bMR
+bek
bfV
aYx
abq
@@ -121896,20 +113472,20 @@ bhw
bEh
bhw
bhw
-bJx
-bLj
+bJw
+bLe
bOC
bOU
bRw
bTE
bTE
-bTE
+uMj
bXW
bYD
bNh
cay
-cbH
-ccQ
+bek
+bfK
cee
cOm
cgE
@@ -121932,7 +113508,7 @@ cDq
cCR
cEF
cDF
-cFX
+cFY
cID
cHC
cKh
@@ -121940,13 +113516,13 @@ cIx
cJm
pkf
cLr
-cMl
-cNh
-cQw
+cLo
+cLp
+cQv
cOW
cPV
cIx
-cmY
+ebA
iTR
chy
chy
@@ -122107,17 +113683,17 @@ atC
aqV
asn
akD
-avp
+avf
akD
akD
aAn
-aAn
+gKb
aKB
aRP
bfF
-aFz
-amE
-aDX
+hYq
+sxA
+hio
aFq
amx
amx
@@ -122131,8 +113707,8 @@ aRH
bjb
aNq
aVE
-aVE
-aYF
+sYp
+aNC
aZV
aLL
bde
@@ -122153,7 +113729,7 @@ bCm
bEi
bFV
bhw
-bJo
+bJw
bLi
bNh
bQe
@@ -122166,7 +113742,7 @@ bZk
bNh
caz
bek
-xJS
+bfK
cee
cft
cgF
@@ -122189,7 +113765,7 @@ cAG
cBi
cAG
cDF
-qHr
+cFY
cFq
cHK
cKs
@@ -122355,11 +113931,11 @@ aiW
ajY
akQ
akz
-amP
+amQ
aoe
apC
apC
-npj
+apC
atD
aqV
asm
@@ -122370,12 +113946,12 @@ akD
aFg
aGE
aKc
-aQy
-bfA
+aBn
+lgv
aFz
amE
aDY
-aFr
+aDO
aGB
aze
aze
@@ -122383,16 +113959,16 @@ aze
aMk
aNB
aOR
-aNA
+iUs
aRI
aTf
-aNq
-aVE
-aVE
-aNC
+wma
+pAO
+sjx
+erv
aNC
aYA
-bdc
+bMR
bek
bfX
bhw
@@ -122423,11 +113999,11 @@ bYP
bNh
cbb
bek
-xJS
+bfK
cei
cOm
cgG
-cii
+cic
bUy
cld
cks
@@ -122616,7 +114192,7 @@ amQ
aoe
apD
ara
-lhK
+apC
atE
aqV
aqj
@@ -122628,7 +114204,7 @@ akD
akD
akD
azG
-fTe
+lgv
aCl
aCO
aCO
@@ -122645,11 +114221,11 @@ aNA
aWi
aNq
aVG
-aNC
+krK
aNC
aZW
aMk
-bdc
+bMR
bek
bfY
bhw
@@ -122680,7 +114256,7 @@ bNU
bNh
cbi
ben
-ccR
+bfM
bZu
cfw
cgu
@@ -122690,8 +114266,8 @@ clc
clm
cnA
bVj
-bVC
-cti
+rZk
+rZk
csZ
cum
cvw
@@ -122874,8 +114450,8 @@ amB
apE
arb
aoH
-gog
-gog
+apC
+apC
aso
axL
avs
@@ -122885,7 +114461,7 @@ aAp
aGF
aKO
aqJ
-bgl
+lgv
bnu
aCO
aDZ
@@ -122902,17 +114478,17 @@ aRJ
aMk
aMk
aMk
-aXb
+vrH
aYA
aMk
aMk
-bdf
+bUM
ben
bfZ
bhw
bjh
byk
-bmW
+blb
boI
bqp
boI
@@ -122924,7 +114500,7 @@ bCp
bEl
bHC
bhw
-bJo
+bJw
bLi
bHB
bNh
@@ -122935,14 +114511,14 @@ ccl
bWW
bZz
bZX
-caM
-bek
-xJS
+nza
+beo
+acw
bbg
bZU
bZU
bZU
-cyl
+bZU
bZU
bZU
crU
@@ -122962,13 +114538,13 @@ cDJ
cic
cHT
cFs
-cvv
+fvO
cuv
cIy
cJq
-mpt
+cic
cLs
-cjK
+cic
cNj
cOf
cOZ
@@ -123126,13 +114702,13 @@ aiZ
akb
alA
alu
-amQ
-amF
+tBw
+qME
anU
arc
vgP
atG
-aqV
+jKJ
ass
atz
avu
@@ -123144,7 +114720,7 @@ aMo
aPb
bgI
aBw
-aCP
+dKR
aEa
aFt
aGD
@@ -123155,21 +114731,21 @@ aMn
aSD
aOT
aQu
-aRK
+aJX
aWk
aMn
aXZ
-aQC
-aQC
-aQC
+orm
+fOf
+eUz
ayu
-bdc
+rVv
bev
-bfV
+jGr
bhw
bji
blc
-bmX
+blc
bsH
bqq
bsj
@@ -123182,7 +114758,7 @@ bEm
bIy
bhw
bMG
-bLo
+bLi
bOY
bNh
bRP
@@ -123190,11 +114766,11 @@ bSn
bTT
cdB
bWX
-bZz
-bZX
-caM
-bek
-xJS
+tST
+vtR
+pyX
+vNb
+bfK
bbi
bZU
cfE
@@ -123209,27 +114785,27 @@ cmz
cfw
cuo
cvy
-cwN
+bVC
cxP
cyX
-czP
-cAJ
+qnt
+qnt
cBP
cCO
-pdV
-cEw
-cFt
+bVC
+bVC
+bVC
cGC
-cCO
-iNq
-cCO
-qcX
+bVC
+cxP
+bVC
+bVC
cLt
cMp
cNk
cOg
-cPY
-cPY
+bVC
+bVC
cQQ
cRJ
cVJ
@@ -123383,11 +114959,11 @@ aja
ugy
akU
als
-amT
+amQ
amF
apC
apC
-vXU
+apC
apy
aqV
asr
@@ -123396,7 +114972,7 @@ avt
axf
ayZ
aAq
-aAq
+pef
aLv
aWo
aAr
@@ -123416,17 +114992,17 @@ aRL
aUO
con
aVI
+imC
aTn
-aYH
aTn
bby
-bdg
+bde
beu
bjD
bhw
bjj
blb
-bmY
+blb
boK
bqr
boI
@@ -123451,7 +115027,7 @@ bZD
bZX
caM
bek
-xJS
+bfK
bbi
bZU
bVI
@@ -123474,8 +115050,8 @@ cAK
cBQ
cCP
cFb
-cEx
-cFu
+cic
+cwV
cGD
cHx
cIy
@@ -123488,7 +115064,7 @@ cOh
cPb
cic
cfw
-cRI
+dDV
cSW
cTm
cNz
@@ -123650,7 +115226,7 @@ aqX
asw
axL
avZ
-avt
+axf
azd
aAv
aHf
@@ -123670,14 +115246,14 @@ aNF
aOV
aOV
aRM
-aTj
+aNH
aUv
aVJ
aXg
-aYI
-vVo
+aTo
+aTo
bbz
-bdh
+bMR
bek
bfW
bhw
@@ -123695,7 +115271,7 @@ bDl
bhw
bhw
bhw
-bJo
+bJw
bLi
bNh
bNh
@@ -123908,7 +115484,7 @@ ast
atB
avw
axH
-azb
+azx
aAu
aHf
aNo
@@ -123924,18 +115500,18 @@ bNV
aLM
aMn
aNG
-aNH
+pTP
aQw
aVB
aTk
-con
+pXV
aVK
-aTo
+ilf
aYJ
aZY
-ayu
-bdc
-bek
+lDa
+fEr
+vNb
bfV
bhw
bnE
@@ -123949,7 +115525,7 @@ bhw
cgh
cIj
bDk
-cgj
+bTV
bKv
bHK
bJC
@@ -123961,10 +115537,10 @@ bSp
cJT
bWy
bYp
-bZE
+bKv
bZr
-caB
-cbI
+bbr
+bel
cdE
bZu
bZU
@@ -123979,7 +115555,7 @@ cqp
crU
cmz
cvX
-cvz
+ptn
cwQ
bYI
bNN
@@ -123989,7 +115565,7 @@ cBS
cDK
cxU
cGx
-cHz
+cIE
cHL
cIE
cJz
@@ -123997,12 +115573,12 @@ cEK
cKx
cKx
cKx
-cNn
+cOp
cOj
cPd
cPZ
cOp
-cmY
+bgZ
cvY
cmi
aaa
@@ -124187,11 +115763,11 @@ aRO
aWl
aMn
aVL
-aTo
+paZ
aYK
aZZ
bbA
-bdc
+bMR
bek
bfV
brN
@@ -124222,14 +115798,14 @@ bht
deF
bNp
bek
-sQp
+bdb
cek
-chd
-dhd
+ceE
+cuV
cin
-cjU
+chy
dhq
-cBk
+cjl
cOM
bVr
cqq
@@ -124248,18 +115824,18 @@ cxU
cGz
cFx
cGG
-cHA
+doV
cJz
cEK
cfH
cfH
cfH
-cNn
+cOp
cPi
cPe
cQa
cOp
-coe
+tfV
cwt
cmi
aaa
@@ -124276,8 +115852,8 @@ aaa
aaa
cVG
cmD
-cXP
-cYp
+cXR
+dab
cnW
cZr
cZH
@@ -124426,9 +116002,9 @@ atK
avk
atK
atK
-aXC
+aze
vDW
-aBD
+aze
aCS
aCS
aCS
@@ -124444,11 +116020,11 @@ aMn
aMn
aMn
caH
-ayu
+wUE
cdP
aZZ
bbB
-bdc
+bMR
bek
bgb
bfV
@@ -124469,7 +116045,7 @@ bHL
bcN
bLs
bNp
-bNp
+ftd
bQF
bSW
bTW
@@ -124478,7 +116054,7 @@ bXP
bYr
bNp
bNp
-cbA
+bek
ccU
bZu
bZu
@@ -124488,7 +116064,7 @@ bZu
clj
bZO
cqo
-crv
+cfY
csn
ctE
cmz
@@ -124503,7 +116079,7 @@ cBU
cPC
cxU
cGy
-cFy
+cFC
cGH
cKv
cLn
@@ -124511,12 +116087,12 @@ cEK
cNd
chu
chu
-cNn
+cOp
cOl
cPf
dcd
cOp
-cmY
+bgZ
cuV
cmi
aaa
@@ -124534,7 +116110,7 @@ aaa
cVG
dbC
cXQ
-cYq
+dab
dcq
cZr
cZH
@@ -124684,8 +116260,8 @@ avl
awG
axW
aze
-aAw
aBE
+aAw
akD
aEf
ayG
@@ -124700,8 +116276,8 @@ bXQ
bYF
aTm
aWy
-aVK
-aTo
+leu
+wsx
aYK
aZZ
beS
@@ -124714,29 +116290,29 @@ bfI
bnb
boO
bqu
+oJQ
bfI
bfI
-bww
byG
-bbr
-bbr
-bbr
-bbr
+mOc
+mOc
+mOc
+mOc
bHM
bJF
bLt
-bbr
+mOc
bOV
bQG
-bbr
-bbr
-bbr
-bbr
-bbr
-bbr
-bbr
+mOc
+mOc
+mOc
+mOc
+mOc
+mOc
+mOc
ccr
-ccV
+bZt
aYx
cfG
cgM
@@ -124761,19 +116337,19 @@ cEd
cxU
cGQ
cFz
-cGI
+cGH
cIK
cLQ
cEK
cgL
chu
cke
-cNn
+cOp
cJL
cPg
cKN
cOp
-cmY
+bgZ
bZU
bZU
bZU
@@ -124791,7 +116367,7 @@ aaa
cVG
cXt
cXR
-cYr
+kNr
dcl
cZr
cpf
@@ -124923,10 +116499,10 @@ aui
awx
azt
mcY
-xbe
+poJ
xXW
-alJ
-azE
+xbe
+msg
aid
alq
alq
@@ -124956,40 +116532,40 @@ aBI
aQz
aQV
aTo
-aTo
+aTr
cbe
-aTn
+uQj
aYM
aZZ
bbD
-bdj
+bde
bey
bgd
-bhz
-bjo
+bMR
+bUM
blg
bnc
boP
bqv
bsl
-buk
-bwx
-bwx
-bCE
-bhz
-bhz
-bhz
-bhz
-qCG
-bLu
-bNr
-bOW
-bQH
-bNr
-bTX
-bNr
-bNr
-bNr
+bMR
+bMR
+bMR
+bRO
+bMR
+bMR
+bMR
+bMR
+bdc
+bKM
+bdb
+bfS
+bqb
+bdb
+bdb
+bdb
+bdb
+bdb
bZt
caF
cbK
@@ -125018,19 +116594,19 @@ cDP
cxU
cGF
cFA
-cGI
+cGH
cIJ
cLG
cEK
cKB
chE
cKB
-cNn
+cOp
cOn
cPh
cQd
cOp
-cOt
+hLt
bZU
cVe
chy
@@ -125198,8 +116774,8 @@ avm
awG
axW
aze
-aAy
aBG
+aAy
akD
aEg
caj
@@ -125212,8 +116788,8 @@ aSJ
aBI
aQA
aQV
-aTo
-aTp
+udB
+eRU
aVO
aTp
bbe
@@ -125243,14 +116819,14 @@ bHA
bsp
bQI
bQI
-aUJ
+aUX
aUX
aUX
bQI
bZu
cgK
+mhx
cbL
-ccX
aYx
cfB
cgO
@@ -125270,24 +116846,24 @@ cxU
cBh
cBc
cAR
-cAN
+kvG
cCV
cxU
cGU
cFB
-cGJ
+cGH
cHA
cKr
-cJr
+cEK
cYS
cLx
cYT
-cNo
+cOp
cOo
cQq
cQe
cOp
-cmY
+bgZ
bZU
cVj
cuV
@@ -125316,7 +116892,7 @@ dbo
dab
daG
dbz
-dcg
+dbo
dab
dbT
dci
@@ -125456,7 +117032,7 @@ axC
amO
aze
aAz
-aBH
+aze
akD
aEg
alW
@@ -125470,8 +117046,8 @@ aBI
aQB
aQV
aTp
-aTq
-aVO
+ygK
+aTu
aTo
bmL
aoG
@@ -125494,13 +117070,13 @@ bDV
bGc
bID
bHO
-bCy
+hwe
bLw
bCy
bQC
bQI
bTD
-bUa
+bSt
bVt
bYu
bZb
@@ -125517,12 +117093,12 @@ clj
cmz
cny
cnI
-cqt
+cnI
crZ
cOm
cuv
-cvG
-cwU
+cvD
+cwL
cxV
cxV
cxV
@@ -125539,12 +117115,12 @@ cJs
cKB
cLy
cKB
-cNn
cOp
cOp
cOp
cOp
-cmY
+cOp
+bgZ
cPT
cVg
cuV
@@ -125569,11 +117145,11 @@ das
daa
dar
oiv
-oiv
+daa
dbd
-dbn
-ntG
-daH
+dar
+daa
+daa
dbJ
dbU
dez
@@ -125706,7 +117282,7 @@ alq
alq
atF
awp
-aEg
+dFD
amO
amO
amO
@@ -125729,17 +117305,17 @@ aQV
aTq
aUy
aVP
-aXj
+aTo
aYP
aoG
aoG
-bdo
+azy
bez
bgf
bhB
bjq
bkk
-bnf
+bne
boS
bqy
bso
@@ -125749,21 +117325,21 @@ byI
bsm
bCv
bEr
-bGd
-bHO
+jGU
+lfV
bJH
bLx
-bCy
+yaQ
bQE
bQI
bVs
-eIn
-okl
-bXd
+bSt
+bVq
+mAt
bYE
bZv
cbD
-cbN
+lpc
ccZ
cen
cfC
@@ -125774,7 +117350,7 @@ cmZ
cmA
cnI
coU
-skc
+cnI
csa
cfw
cic
@@ -125794,18 +117370,18 @@ cHG
cIG
cJt
cNq
-obL
+cIE
cOr
cEK
cln
clN
chy
chy
-cmY
+bgZ
cPT
cPT
cmy
-cUJ
+cvW
bZU
bZU
aaa
@@ -125824,7 +117400,7 @@ cYR
cZD
daq
dab
-iae
+dbs
dfD
dbr
dab
@@ -125833,7 +117409,7 @@ dbA
dbr
dab
dbV
-cYR
+sOJ
ddX
bMp
bMv
@@ -125983,8 +117559,8 @@ aPS
aOZ
aQD
aQW
-aTr
-aUz
+aTo
+ygK
aVQ
aTo
aYK
@@ -125997,9 +117573,9 @@ bhC
bjr
aOD
vEp
-boR
-bqx
-blC
+qeW
+fhF
+har
buo
bwA
bCk
@@ -126008,19 +117584,19 @@ bEo
bCy
bGe
bHO
-bCy
-bLy
+hwe
+bLw
bCy
bHO
bNn
bSt
-bUb
+bSt
bXc
mAt
bZd
bZv
caQ
-cbO
+mQu
cda
ceo
cbO
@@ -126041,7 +117617,7 @@ cxM
cAH
cBj
cDN
-lfz
+cDN
cEH
cxV
cGV
@@ -126058,10 +117634,10 @@ cQE
cPj
cPj
cRP
-cRN
+clT
cPT
cVo
-cji
+chy
cUK
cZN
bZU
@@ -126072,7 +117648,7 @@ aaa
aaa
cVI
cVG
-deA
+cVG
cVG
cVG
cnv
@@ -126239,21 +117815,21 @@ aBI
aBI
aBI
aRn
-aRT
+aQW
aTs
-aTn
+spj
aVR
aXk
aYK
bab
aoG
-bdn
+bak
bez
bjF
bhD
bjs
bkk
-bng
+bne
boR
bqz
bsm
@@ -126266,20 +117842,20 @@ bEs
bGd
bHP
bJI
-bLy
+bLw
bCy
bHO
bQJ
bSt
-bSt
+wBj
bYt
-mAt
+sLS
bSt
bZv
cbn
-cbN
+iuh
cdb
-cfD
+saH
uzt
cgS
cjf
@@ -126302,7 +117878,7 @@ cEA
cEJ
cDI
cEI
-cFE
+cHF
cGN
cHI
cII
@@ -126333,7 +117909,7 @@ cxT
cVG
cmG
cXV
-cYu
+ueD
dgW
cZr
cpg
@@ -126473,11 +118049,11 @@ abq
anQ
aok
aok
-avq
+bAC
aok
aok
avv
-akh
+qWM
aBr
aok
aKM
@@ -126487,7 +118063,7 @@ aok
aBI
aQd
aRt
-aTe
+aQd
aBI
aGJ
aIe
@@ -126496,35 +118072,35 @@ aMr
aTg
aBI
aQI
-aRT
+aQW
aTt
-aTo
+wsx
aTq
aTp
aYK
bac
aoG
-bdo
+azy
bez
bgi
bhE
bjt
bez
bnh
-boR
-bqx
+iTo
+qIg
bsp
bup
bwB
byK
bAu
-bCy
-bCy
+lUc
+mhq
bGf
-bHO
+rfg
+lFH
+bLw
bCy
-bLz
-bNw
bPa
bQL
bSv
@@ -126534,8 +118110,8 @@ mAt
cba
bZv
cbd
-cbP
-cdc
+cbS
+cdh
cdh
cdh
cgT
@@ -126575,7 +118151,7 @@ cRR
cTa
bZU
cVp
-cji
+chy
cUL
cYw
bZU
@@ -126590,7 +118166,7 @@ aaa
cVG
dbK
cXW
-cYu
+dab
cYU
cZr
bMu
@@ -126738,37 +118314,37 @@ axS
aBs
aSH
biO
-bSH
-axY
-azC
+biO
+biO
+kKz
aBI
aCU
aEk
-aFD
+aJw
aGL
-aIh
+aJw
aJz
aJw
aBI
aBI
aBI
aVp
-aRU
+aQV
aTu
-aTq
+ygK
aVT
aTq
aYK
bad
bbG
-bdY
+baD
bez
bez
bez
bez
bez
bni
-boU
+boR
bqA
bsp
buq
@@ -126777,11 +118353,11 @@ byL
bAv
bCz
bEt
-bGg
+bGd
bHQ
bJJ
bLA
-bCy
+ycU
bHO
bRU
bSw
@@ -126791,8 +118367,8 @@ mAt
bZj
bZv
cbt
-dHm
-cdd
+cbS
+cdh
cdh
cdh
bYA
@@ -126802,7 +118378,7 @@ clj
cmB
cnK
coW
-cnK
+hjH
csc
ctL
cuy
@@ -126825,14 +118401,14 @@ crU
cdN
cjn
chy
-cmY
+jaV
bZU
cQJ
cQU
cTo
bZU
bZU
-cUc
+ckD
bZU
bZU
bZU
@@ -126847,7 +118423,7 @@ aaa
cVG
dbF
cXX
-ueD
+dab
cYV
cZr
bMu
@@ -126991,7 +118567,7 @@ avv
avv
avv
avv
-asv
+qWM
aBr
aOB
aOB
@@ -127010,15 +118586,15 @@ aMs
aNM
aBI
aVm
-aRU
-aTv
-aTq
+aQV
+aTu
+ygK
aVU
aTo
aYK
bae
aoG
-bdo
+azy
aoG
bgj
bhF
@@ -127036,31 +118612,31 @@ bEE
bCy
bIE
bHO
-bCy
+hwe
bLw
bCy
bPb
bQK
bSw
bSt
-bVq
-mAt
-bSt
+keY
+vfe
+hmM
caG
-cbW
-cbO
+njo
+tTh
cde
ces
-lIR
-bYz
+cde
+edg
cjf
bZv
clo
cmB
cnK
+cnK
coX
-cqx
-bIO
+lgr
cto
cuz
cwH
@@ -127082,13 +118658,13 @@ cKG
cLB
chy
cuV
-cmY
+jaV
bZU
cQI
-beV
+chy
cTd
-cuE
-cwF
+cdO
+ceE
cWq
cmi
aaa
@@ -127248,7 +118824,7 @@ afb
cYd
aim
afb
-asv
+qWM
afb
avr
avr
@@ -127268,8 +118844,8 @@ aBI
aBI
aVr
aRV
-aTw
-aTp
+aTu
+jCi
aVV
aTq
aYK
@@ -127278,11 +118854,11 @@ aoG
bec
bmM
bks
-bhG
+asJ
aoG
blm
-dnk
-xla
+bne
+boR
bqx
bsp
bus
@@ -127305,9 +118881,9 @@ bNx
bNz
bZy
cbW
-cbR
-cdf
-oBY
+cbN
+uzt
+uzt
cfD
bYC
cjZ
@@ -127316,16 +118892,16 @@ clj
cmB
cnL
coY
-lFT
+cnK
bIO
cuj
cuA
-cwH
+iyv
cha
cyP
cmB
cfY
-cAX
+cvW
dhw
bZU
cAc
@@ -127334,7 +118910,7 @@ cFG
cGR
cHM
cIL
-cFG
+hLW
ceD
ceN
ceN
@@ -127521,18 +119097,18 @@ aIk
aJC
aLd
aMt
-aNN
+aGM
bVm
aQJ
aVH
aTx
-aTp
-aTq
+eRU
+eQt
aTp
bbu
aZZ
aoG
-bdo
+azy
aoG
buC
buC
@@ -127550,7 +119126,7 @@ bEO
bEv
bEv
bEv
-bEv
+bIL
baN
bHS
bQM
@@ -127559,10 +119135,10 @@ bSy
bUf
bXb
bXX
-bSw
+gMS
bZv
cbv
-cbS
+cbP
cdh
cdh
cdh
@@ -127574,10 +119150,10 @@ cmB
cnM
cnK
lFT
-bIO
+qaB
ctS
cuB
-cwH
+eiF
cha
cyO
cmB
@@ -127585,7 +119161,7 @@ clP
cDX
dhu
bZU
-cmY
+dVK
cuV
bZU
cHQ
@@ -127596,9 +119172,9 @@ cfY
cuV
chy
chy
-cOv
-den
-cQj
+cmY
+chy
+chy
cQW
cRQ
cUd
@@ -127750,12 +119326,12 @@ aaa
aaa
aij
alb
-akk
+wzV
alb
aij
aii
cWS
-akh
+oVM
akh
akh
anc
@@ -127767,7 +119343,7 @@ atO
avr
awO
ayb
-azg
+aAC
aAC
aPW
avr
@@ -127777,13 +119353,13 @@ aGN
aIl
aJD
aLe
-aMu
-aNO
+aLe
+aLe
bWp
aQK
aRX
aTy
-aTo
+vge
aTo
aTp
aYK
@@ -127807,8 +119383,8 @@ bCC
bCH
bCH
bEv
-bEv
-bbR
+bIL
+bCH
bEv
bTZ
bQI
@@ -127819,7 +119395,7 @@ bQI
bNB
bZv
ccs
-cbS
+cbP
cdh
cdh
cdh
@@ -127829,23 +119405,23 @@ bZv
clj
cmB
cnN
-coZ
+cnK
cqM
cmB
cuN
cuC
clS
-cxd
+cha
cyS
cmB
bZU
-cAZ
+cfU
bZU
bZU
-cmY
+dVK
chy
cFH
-cGT
+cFH
cHY
cEy
cFH
@@ -128008,12 +119584,12 @@ aaa
aij
akk
apV
-cyq
+akk
aij
ail
cWS
aki
-aki
+mKy
ama
and
asz
@@ -128023,19 +119599,19 @@ asC
atP
avr
awP
-aya
+wSh
azh
-aAD
+aAB
aBL
avr
aEm
aFG
aGO
aIp
-aJF
+qTK
+aLf
+aLf
aLf
-aNP
-aNP
bVo
aQL
aRY
@@ -128064,9 +119640,9 @@ bCC
bau
bvz
bEv
-bCH
+kry
bbQ
-bDR
+bCH
bEv
bQP
bQI
@@ -128076,18 +119652,18 @@ bXk
bNA
bZv
cbF
-ktI
-imQ
+cbO
+lIR
cet
imQ
-edg
+gaa
cku
bZv
clj
cmB
cnK
-cpa
-cqz
+cnK
+cnK
bIP
cuD
cwh
@@ -128096,8 +119672,8 @@ cyb
cyR
cmB
cAc
-dht
-cmC
+chP
+ceN
ctm
cFc
bZU
@@ -128280,7 +119856,7 @@ asC
atQ
avr
awo
-awo
+nuB
avr
awo
aBN
@@ -128289,7 +119865,7 @@ avv
aHZ
aGP
aIn
-aJF
+qTK
aLg
avv
aNQ
@@ -128297,7 +119873,7 @@ aNQ
aNQ
aRZ
aTA
-aRZ
+lSh
aNQ
aNQ
aNQ
@@ -128320,16 +119896,16 @@ bsp
bEP
bvz
bDS
-bEv
-bEv
-bCH
-bIL
+ljZ
+vyo
+dTK
+soT
bEv
bQQ
bQI
bUh
bVx
-bVx
+hKu
bND
bZv
ccv
@@ -128352,14 +119928,14 @@ csz
cmB
cmB
cmB
-cmY
+dVK
ckD
chy
bZU
bZU
bZU
bGQ
-thz
+cHS
cJu
cBN
cMr
@@ -128521,7 +120097,7 @@ aaa
aij
aiL
akk
-akk
+apV
cyF
cKm
aij
@@ -128530,10 +120106,10 @@ akj
ald
amc
amc
-aoy
-apU
+amc
+apW
arm
-asD
+asC
atR
aBy
gQu
@@ -128546,8 +120122,8 @@ aEo
aFI
aGQ
aJF
-aJE
-nhZ
+fUI
+aLf
aMy
aNQ
aUf
@@ -128578,9 +120154,9 @@ bCF
bEy
bCH
bEv
+bIL
+bEv
bEv
-bLF
-bHT
bEv
bSj
bQI
@@ -128598,26 +120174,26 @@ cgd
bZv
bZv
cnO
-cmC
-cmC
-cmC
-cmC
+ckJ
+ckJ
+ckJ
+ckJ
csg
ctm
-cmC
+ceN
cxe
-cmC
-cmC
-cmC
+ceN
+ceN
+ceN
cAd
-cEa
+cem
cEB
cDa
chy
cEM
cEN
-pkJ
-cJf
+cHS
+cJu
cBN
cLq
cFH
@@ -128796,14 +120372,14 @@ aCm
awS
ayd
azj
-aAG
+azj
aBO
aCX
aEp
aFJ
aGR
aJG
-aJG
+law
aLh
aMy
aNQ
@@ -128811,8 +120387,8 @@ aPq
aQN
aSB
aTC
-aSB
-aVZ
+sbG
+aWa
aXr
aNQ
azy
@@ -128828,16 +120404,16 @@ boY
bqx
aoG
aoG
-bwK
+bbE
aoG
bAz
bCG
bEz
-poN
-dTK
+bEv
+bCH
bJM
-dTK
-vYK
+bCH
+bEv
bEv
bQS
bQI
@@ -128867,13 +120443,13 @@ bZU
bZU
bZU
bZU
-cAZ
+cfU
bZU
bZU
cFe
bZU
cFK
-cHS
+xtA
cJw
cFH
cJA
@@ -129035,32 +120611,32 @@ abq
aij
ajj
akk
-akk
+rDe
akk
cZi
aij
ajn
akl
-erQ
-amd
+ald
+amc
amc
amc
apW
aro
-asF
+mKy
atT
aCe
awT
aye
aAe
aAH
-aye
+oQz
aCY
aEq
aJE
aGS
aJE
-aJE
+vHA
aGS
aMw
aNQ
@@ -129068,7 +120644,7 @@ aPh
aQN
aSA
aTD
-aSA
+wSP
aWa
aXp
aNQ
@@ -129094,7 +120670,7 @@ bGl
bHE
bHI
bIh
-bbR
+bCH
bEv
bQT
bQI
@@ -129124,7 +120700,7 @@ cyc
cxf
bZU
cAe
-cEb
+ceu
bZU
iDw
cDM
@@ -129303,8 +120879,8 @@ ame
ame
ame
apX
-apY
-aki
+ivn
+mKy
auP
avv
avv
@@ -129325,7 +120901,7 @@ aPI
blh
aSB
aQX
-aSB
+sbG
aWa
aXv
aVc
@@ -129342,16 +120918,16 @@ boR
buV
aoG
buz
-aKU
+azy
aoG
aoG
aoG
bEB
bHU
bHU
-bHU
+nhP
bLH
-bJL
+bHU
bPd
bEG
bQI
@@ -129368,7 +120944,7 @@ bZv
caV
ciA
bZv
-cdo
+kUj
asJ
asI
aoG
@@ -129377,7 +120953,7 @@ csj
cwF
cuE
cwG
-cxg
+chy
cyT
cPT
cfY
@@ -129560,8 +121136,8 @@ amf
amj
aoA
apY
-apY
-aki
+ivn
+mKy
auH
avv
axP
@@ -129582,7 +121158,7 @@ aPz
aQO
aSc
aTF
-aSc
+qts
aWc
aXu
aNQ
@@ -129608,7 +121184,7 @@ bHW
bLI
bJO
bTd
-bIN
+bHW
bPe
bEG
bEG
@@ -129624,8 +121200,8 @@ cex
mcn
chD
clq
-cbU
-clt
+mcn
+ceA
asJ
coM
aoG
@@ -129633,8 +121209,8 @@ bZU
bZU
bZU
bZU
+pes
cvV
-cxh
bZU
bZU
bZU
@@ -129817,8 +121393,8 @@ akh
anh
akh
akh
-akh
-aki
+pKv
+mKy
atW
avv
awV
@@ -129852,8 +121428,8 @@ bhM
bjy
bbH
bnf
-bpa
-bqG
+iTo
+qIg
bmB
buI
bwO
@@ -129861,15 +121437,15 @@ bCe
bAB
aoG
bED
-bGo
-xyZ
+bHW
+bHW
gIN
bLJ
bKm
-bHW
+bKm
bQU
bTQ
-bUl
+uBN
bVB
bXp
bEG
@@ -129877,7 +121453,7 @@ bXi
bYy
asJ
asJ
-sfr
+kUj
asJ
asJ
asJ
@@ -129890,8 +121466,8 @@ cqC
csk
ctp
cww
+rHl
ceu
-ctl
cyd
bZU
aaa
@@ -130072,10 +121648,10 @@ ako
ajp
amh
amh
-aki
+mKy
apZ
apZ
-aki
+mKy
avJ
avv
ayp
@@ -130105,7 +121681,7 @@ bbH
bgO
beE
bgq
-bhN
+bhJ
bjz
bbH
bnk
@@ -130120,14 +121696,14 @@ aoG
bGh
bGp
bHX
-bHX
+kZl
bha
bJN
bPg
bEG
bTP
-bUg
-bUm
+bUl
+bUl
bXq
bEG
caI
@@ -130139,7 +121715,7 @@ bxI
asI
aoG
aoG
-clv
+aAL
aoG
aoG
buC
@@ -130147,8 +121723,8 @@ cLV
chy
cdK
cuG
-chy
-cxi
+cji
+cvW
cye
bZU
abq
@@ -130362,15 +121938,15 @@ bbH
bdv
beE
bgr
-bhN
+bhJ
bnJ
bbH
-dnk
-xla
+bne
+boR
bqx
aoG
aoG
-bwK
+bbE
aoG
buy
aoG
@@ -130387,11 +121963,11 @@ bUn
bVD
bXr
bEG
-fFl
+asJ
kUj
arr
asI
-sfr
+kUj
asJ
cis
buC
@@ -130404,7 +121980,7 @@ cqF
chy
chy
chy
-chy
+cji
cuH
cyf
bZU
@@ -130598,7 +122174,7 @@ axR
aAL
aBT
aoG
-dHr
+gip
aoG
aoG
aoG
@@ -130619,11 +122195,11 @@ bbH
bhd
beG
bgs
-bhP
+bgs
bjB
blq
iHk
-boV
+xfn
bqx
aoG
arr
@@ -130648,12 +122224,12 @@ bZF
ofz
bdl
asI
-sfr
+kUj
asJ
cir
buC
clR
-bVK
+avC
asJ
coO
buC
@@ -130661,7 +122237,7 @@ cqE
chy
chy
chy
-chy
+cji
chy
cyg
cmi
@@ -130856,7 +122432,7 @@ aoG
aBU
aCZ
aEw
-aFL
+aGW
aGW
aGW
aGW
@@ -130881,17 +122457,17 @@ bjC
bbH
bnp
bpd
-bqI
-bst
+bqy
+bln
bvj
bwS
-bCI
+aGW
bBq
-bCI
-bEH
-bCI
-bCI
-bCI
+aGW
+aNR
+aGW
+aGW
+aGW
bOy
bNF
bNF
@@ -130901,11 +122477,11 @@ bNF
bWT
bNF
bNF
-oMK
+ofz
caZ
cbX
asI
-sfr
+kUj
asJ
cfK
cfK
@@ -130918,7 +122494,7 @@ cqH
cdK
chy
cuH
-cvW
+uBl
chy
cyg
bZU
@@ -131110,7 +122686,7 @@ asJ
ayk
asI
aoG
-dHr
+gip
asI
cwA
cwA
@@ -131143,7 +122719,7 @@ aoG
aoG
aoG
aoG
-bAF
+bbG
aoG
aoG
aoG
@@ -131162,7 +122738,7 @@ aoG
aoG
asI
asI
-sfr
+kUj
asJ
cfK
ciD
@@ -131364,10 +122940,10 @@ air
afb
avy
aub
-ayl
+avC
asJ
aoG
-dHr
+gip
arr
cwA
aHH
@@ -131393,14 +122969,14 @@ bgu
bmm
bnM
bam
-bno
-bpe
+bne
+boR
bqK
bqx
bwo
bqx
byT
-bAG
+byT
bEQ
bEI
bGr
@@ -131621,9 +123197,9 @@ air
afb
avz
asJ
-aym
+asJ
awL
-ayo
+aAL
aBX
asJ
cwA
@@ -131658,8 +123234,8 @@ buF
bwT
bwT
bwT
-bCK
bwT
+gdd
bJR
bGs
gda
@@ -131675,7 +123251,7 @@ bUr
bZH
aoG
azp
-sfr
+kUj
asJ
asJ
cfK
@@ -131881,7 +123457,7 @@ asI
ayn
asJ
aoG
-dHr
+gip
asI
cwA
aIz
@@ -131909,12 +123485,12 @@ bom
bam
bns
bpg
-bqM
+bnr
bsw
buG
bzb
-byU
-byU
+bGt
+bGt
bFa
bGv
bGt
@@ -131932,14 +123508,14 @@ asJ
bZI
aoG
bef
-sfr
+kUj
asJ
cfK
cfK
chQ
aRQ
cly
-sdQ
+cly
cor
clA
clA
@@ -132138,13 +123714,13 @@ aoG
aoG
aoG
aoG
-dHr
+gip
aDa
cwA
akP
dom
aIw
-aJM
+rNt
aLr
nMC
aNV
@@ -132179,7 +123755,7 @@ bNj
bDT
bNK
bCM
-bPm
+bCM
bCM
axh
bqN
@@ -132196,7 +123772,7 @@ ciu
ciH
bhv
biB
-jmm
+biB
bul
clB
cqr
@@ -132423,7 +123999,7 @@ bjH
aGt
brP
bsY
-bqO
+bxd
bsy
bwH
bwV
@@ -132440,12 +124016,12 @@ bQk
bCM
bSG
asJ
-bVJ
-bXs
-chG
-bYH
+asJ
+aDa
+asJ
+asJ
awL
-ayo
+aAL
cfy
asJ
cfK
@@ -132680,7 +124256,7 @@ bjI
aFP
brb
bpi
-bqP
+bpn
bsz
dqh
bzr
@@ -132697,9 +124273,9 @@ bOD
bCM
cBF
cBG
-bVK
+avC
asJ
-chF
+aub
ckg
bXt
aoG
@@ -132909,7 +124485,7 @@ avz
buC
bZJ
asJ
-aBW
+dHr
aCg
aEA
aGc
@@ -132939,13 +124515,13 @@ bnw
bpi
bqQ
bqR
-bwH
+dqh
bAs
bjN
bxI
bCN
bEM
-bGx
+bGw
bIe
bJT
bLU
@@ -133182,7 +124758,7 @@ ccH
aQY
ccH
aYS
-aQY
+aIB
aJO
bbO
aFR
@@ -133196,7 +124772,7 @@ bnx
bpj
bqR
bpn
-bwH
+dqh
bAr
bjN
asJ
@@ -133420,7 +124996,7 @@ aou
asJ
avC
awL
-ayo
+aAL
ayr
atA
aCa
@@ -133441,9 +125017,9 @@ aPp
aZc
ccz
baw
-bct
-bfe
-bct
+blt
+bmh
+blt
bik
bkw
blt
@@ -133451,8 +125027,8 @@ bmh
bof
bny
bpk
-bpn
-bqS
+foM
+mDj
buJ
bzv
byV
@@ -133686,7 +125262,7 @@ aGb
kxf
bAL
aIF
-aJU
+baB
aLU
aQR
aOg
@@ -133696,7 +125272,7 @@ baB
aWp
aVh
aYW
-lwo
+baB
xHf
bcq
aFR
@@ -133710,7 +125286,7 @@ bnz
bpi
bqS
bsC
-bqS
+gkU
bxm
bjN
buz
@@ -133953,8 +125529,8 @@ aJb
aCg
aCg
aZe
-dMG
-vRY
+aJZ
+rFa
aCg
aFR
aFR
@@ -133967,7 +125543,7 @@ aWw
bpi
bqS
bsC
-bqS
+gkU
bxn
bjN
bjN
@@ -134200,7 +125776,7 @@ aPn
iof
aCg
hAg
-aJV
+len
len
len
len
@@ -134210,7 +125786,7 @@ len
len
len
aZd
-vny
+len
pcW
aCg
ayE
@@ -134222,7 +125798,7 @@ baE
iNu
qHS
dfz
-bqT
+bxd
bsD
buK
bxc
@@ -134236,7 +125812,7 @@ bJX
bLY
bNR
bPu
-bRa
+iEd
bNR
bVv
ied
@@ -134246,7 +125822,7 @@ caf
bNR
cce
cdx
-ceI
+uUE
cfQ
bSP
ciO
@@ -134442,9 +126018,9 @@ abq
amk
ank
aoI
-ank
-art
-asj
+pjn
+pjn
+xxA
aue
avG
axc
@@ -134476,24 +126052,24 @@ aQF
bck
aIu
rDF
-bgE
+bqO
bnC
dfB
dgL
-bpn
+foM
aZo
-bxd
+bqT
byX
bFF
bCO
-bER
+bRa
bGC
bIk
bJY
-bLZ
-bGI
-bPw
+ccf
bGG
+bPw
+uTZ
bSM
bCN
bWU
@@ -134502,8 +126078,8 @@ bWU
bCN
biz
ccf
-nbt
-bPw
+bGG
+nzX
bIn
chi
civ
@@ -134700,7 +126276,7 @@ amk
anl
aoJ
ann
-aru
+ank
asg
avR
avF
@@ -134734,11 +126310,11 @@ hIG
aFR
uaQ
bli
-bli
+sFz
dfA
iZY
bvt
-bpn
+iRu
bqU
bCu
bFD
@@ -134747,10 +126323,10 @@ bGD
bLc
bIl
bJZ
-bMa
+ccf
bGG
bPw
-bGG
+sVC
bUo
bCN
bCN
@@ -134759,8 +126335,8 @@ bCN
bCN
cDd
ccf
-nbt
-bPw
+bGG
+nzX
bGG
bIq
ciQ
@@ -134957,9 +126533,9 @@ amk
apJ
ank
aqh
-kNc
+ank
asQ
-awk
+avV
avI
amk
amk
@@ -134970,8 +126546,8 @@ aEn
aCg
aHi
aCg
-aLw
-aMQ
+ygY
+gid
kWg
kWg
kez
@@ -134990,18 +126566,18 @@ aFR
aFR
uaQ
pSk
-dfg
-dfg
+uDi
+vmY
blj
dgO
bjN
+rPb
bAP
-rrO
bnt
bnt
bCM
bzL
-bzL
+uYO
bzL
bzL
bMb
@@ -135016,8 +126592,8 @@ bZG
bCN
biA
ccf
-qhv
-bPw
+bGG
+nzX
bGG
bIq
ciR
@@ -135214,15 +126790,15 @@ amk
ann
aoJ
anl
-arv
+ank
asj
-avV
+nnI
avH
axM
amk
aAK
cbc
-aCh
+nRh
aEd
plu
aFY
@@ -135248,12 +126824,12 @@ kKa
anq
deW
dfg
-dfg
+eNd
bsZ
anq
bnt
+cZS
bxf
-jdX
bnt
bCL
bCR
@@ -135261,7 +126837,7 @@ bEU
bGE
bIm
bKa
-xhr
+bMc
bMi
bPx
bRd
@@ -135274,7 +126850,7 @@ bZL
bKa
bMc
bGG
-bPw
+nzX
ceI
chj
ciS
@@ -135472,7 +127048,7 @@ ank
aoK
asK
arw
-asg
+dYi
awn
awU
ayz
@@ -135505,7 +127081,7 @@ rYj
anq
avP
dfh
-dft
+eNd
dfI
anq
bvu
@@ -135516,9 +127092,9 @@ bAU
bCM
bEV
uTZ
-jdi
+bIn
bKb
-dvV
+bIo
bNc
bPy
bRe
@@ -135531,7 +127107,7 @@ bGG
cbg
bGG
bGG
-bPw
+nzX
bPw
chk
ciE
@@ -135741,8 +127317,8 @@ pNG
pmh
aFZ
aJb
-aMI
-naP
+aLw
+aDL
kGw
ebV
lJX
@@ -135753,7 +127329,7 @@ kRX
ebV
kGw
tvk
-xHU
+ccu
aCg
aKT
tgE
@@ -135767,12 +127343,12 @@ bta
anq
bsG
bza
-bza
-esj
+fxB
+fxB
bAV
bCT
bEW
-bGG
+sVC
bIo
bKc
bMd
@@ -135998,7 +127574,7 @@ pNG
lcc
vZU
aJb
-aLw
+vIz
aLN
kGw
ebV
@@ -136010,7 +127586,7 @@ flr
ebV
kGw
dea
-ccu
+oCE
aCg
aKT
bfz
@@ -136035,7 +127611,7 @@ bKd
bMe
bNc
bIp
-bIn
+edB
nqA
hnC
bYk
@@ -136045,7 +127621,7 @@ cag
cbT
bGG
bGG
-bGG
+uOL
bSS
bIq
ciV
@@ -136250,7 +127826,7 @@ ans
asI
azy
aCg
-aDf
+nRh
aDi
fmP
aFY
@@ -136287,7 +127863,7 @@ bAX
bCM
bEY
jLP
-pFi
+bIq
bKe
bMf
bNa
@@ -136304,7 +127880,7 @@ bRg
bRg
bRg
bRg
-chl
+bKc
ciW
ckl
cij
@@ -136512,7 +128088,7 @@ aCg
aCg
aHi
aCg
-gsr
+aLw
aJW
pUq
lOU
@@ -136533,7 +128109,7 @@ wxE
gyy
anq
pRy
-dfy
+aoN
btc
anq
bsJ
@@ -136790,8 +128366,8 @@ wxE
qtt
anq
dfk
-deZ
-bkV
+aoN
+aoN
anq
bsJ
bwv
@@ -136808,7 +128384,7 @@ bNe
bPC
bRi
bSU
-xyA
+bPC
bPC
bRi
bSU
@@ -137065,7 +128641,7 @@ bzL
bHG
bzL
bIt
-kkt
+bHG
bHG
bzL
bIt
@@ -137322,7 +128898,7 @@ cmL
nMx
cmL
kto
-ktv
+cmN
bIu
abq
bMj
@@ -137808,7 +129384,7 @@ nRh
nRh
nRh
yaq
-xYW
+aOd
hfb
aCg
aKT
@@ -138593,7 +130169,7 @@ aaa
aaa
abq
bIu
-bwU
+bwL
aaa
abq
aaa
@@ -139106,7 +130682,7 @@ cmL
cmL
cmL
cmL
-ktv
+cmN
bwL
aaa
abq
@@ -142448,7 +134024,7 @@ abq
bpr
aaa
aaa
-bwU
+bwL
aaa
aaa
bpr
@@ -142704,7 +134280,7 @@ aaa
aaa
aaa
abq
-buL
+bqY
bwW
bxk
aaa
@@ -144763,7 +136339,7 @@ bsf
buS
bxv
bBg
-bGS
+bsf
bsf
bsf
bKp
@@ -145008,16 +136584,16 @@ bgM
bcb
moJ
bsf
-nwx
-nEe
-sJj
+bsf
+bsf
+bsf
bsf
blN
bic
beW
beW
bsT
-buP
+qSf
bxu
bBf
bGO
@@ -145266,14 +136842,14 @@ bfc
bic
beW
mcP
-qAm
-nKW
+mcP
+mcP
beW
bfb
beX
-brj
-bsn
-bsU
+beX
+beX
+bvh
buT
bxx
bBi
@@ -145282,9 +136858,9 @@ beX
bvh
bKq
bsf
-nwx
-nEe
-sJj
+bsf
+bsf
+bsf
bsf
bUA
bsf
@@ -145540,13 +137116,13 @@ beX
bfb
beW
mcP
-qAm
-nKW
+mcP
+mcP
bfb
beW
beW
bKk
-bKo
+wri
bsd
abd
aaa
@@ -145803,7 +137379,7 @@ bgN
beX
beX
bvh
-bKo
+wri
bsd
abd
aaa
@@ -146060,7 +137636,7 @@ bgN
beX
beX
bvh
-bKo
+wri
bsd
abd
aaa
@@ -146317,7 +137893,7 @@ aXL
beX
beX
bvh
-bKo
+wri
bPH
abd
abd
@@ -146574,7 +138150,7 @@ aXL
beX
beX
bvh
-bKo
+wri
bNY
aXH
aaa
@@ -146806,12 +138382,12 @@ aXL
aXL
bdI
bif
-bil
+bdL
bil
bjY
-bil
-bil
-bil
+nvN
+kgV
+kgV
bpt
brm
bdI
@@ -147056,7 +138632,7 @@ abd
aUU
aWB
bbW
-say
+rqY
bdN
beX
aXL
@@ -147070,11 +138646,11 @@ bdI
bdI
bmT
hLH
-lYf
+bif
bdI
bvd
buX
-bxC
+bxD
bCX
bri
bDd
@@ -147082,13 +138658,13 @@ bFj
bIA
bHN
dwC
-oOT
+bOa
bOa
bKl
aXL
beX
bvh
-rKu
+fES
cUI
bzh
bsd
@@ -147336,7 +138912,7 @@ bDa
bBk
bDe
bKn
-bPJ
+bDe
bRq
bRs
fZV
@@ -147346,7 +138922,7 @@ aXL
beX
bvh
cQc
-cUM
+bbY
cWj
bsd
abd
@@ -147569,8 +139145,8 @@ aaa
abd
aUU
aWB
-bbW
-bzh
+pkq
+rzT
bdN
beX
aXL
@@ -147583,27 +139159,27 @@ blD
bdI
bdI
bow
-bpu
-brn
+hLH
+bif
bdI
bvg
buZ
-bxE
-bCX
+bxD
+nPe
bri
bDg
bGT
bIB
bHN
xEi
-jsQ
+bOa
bOa
bKl
aXL
beX
bvh
-cLL
-cUI
+ijt
+kXs
bzh
bsd
abd
@@ -147833,12 +139409,12 @@ beX
aXL
aXL
bdI
-bii
+bif
bfN
bhH
biU
-bhH
-bhH
+wul
+fWW
boJ
bph
brQ
@@ -148094,14 +139670,14 @@ bid
bfH
bjS
blG
-bjS
+jNj
bfH
bid
bpq
bra
bdI
brk
-bvb
+brk
bzf
brk
brk
@@ -150157,9 +141733,9 @@ brf
brf
bdM
bdM
-bdM
+dCV
bzo
-bdM
+qbE
bdM
bdM
bdM
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index 1be71d3b8a8..5ac556f1c12 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -132,7 +132,7 @@
/area/ruin/powered/beach)
"ax" = (
/obj/machinery/disco/immobile,
-/turf/simulated/floor/light/colour_cycle,
+/turf/simulated/floor/light,
/area/ruin/powered/beach)
"ay" = (
/obj/machinery/door/airlock/sandstone{
@@ -181,7 +181,7 @@
/obj/item/tank/internals/emergency_oxygen,
/obj/item/trash/candy,
/obj/effect/turf_decal/sand,
-/obj/item/toy/figure/bartender,
+/obj/item/toy/figure/crew/bartender,
/turf/simulated/floor/beach/sand,
/area/ruin/powered/beach)
"aK" = (
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 03fd9835019..45353b16565 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -17,8 +17,8 @@
"ad" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -194,8 +194,8 @@
/obj/item/bodybag,
/obj/item/reagent_containers/food/drinks/bottle/vodka,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -271,8 +271,8 @@
/area/ruin/powered/animal_hospital)
"aJ" = (
/turf/simulated/floor/plasteel/grimy{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -655,24 +655,24 @@
/area/ruin/powered/animal_hospital)
"bL" = (
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"bM" = (
/obj/structure/flora/ausbushes/sunnybush,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"bO" = (
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -743,8 +743,8 @@
dir = 6
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -753,8 +753,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -763,8 +763,8 @@
dir = 10
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -773,16 +773,16 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
"cb" = (
/obj/machinery/atmospherics/binary/valve,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -861,8 +861,8 @@
"cn" = (
/obj/machinery/light,
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -932,8 +932,8 @@
dir = 4
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -964,8 +964,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
@@ -975,8 +975,8 @@
dir = 1
},
/turf/simulated/floor/grass{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 5da86c4d35a..844bfdf09c0 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -269,7 +269,6 @@
/area/ruin/unpowered/ash_walkers)
"aO" = (
/obj/structure/stone_tile/surrounding/cracked{
- icon_state = "cracked_surrounding1";
dir = 1
},
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
@@ -999,7 +998,6 @@
/area/ruin/unpowered/ash_walkers)
"cA" = (
/obj/structure/stone_tile/slab/cracked{
- icon_state = "cracked_slab1";
dir = 4
},
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
index 403ade1e098..052ac940448 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
@@ -4,8 +4,8 @@
/area/template_noop)
"b" = (
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -26,8 +26,8 @@
"g" = (
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -39,8 +39,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -48,8 +48,8 @@
/obj/effect/decal/remains/human,
/obj/item/melee/cultblade,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -58,16 +58,16 @@
/obj/item/clothing/shoes/cult,
/obj/item/clothing/suit/hooded/cultrobes,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"m" = (
/obj/effect/decal/remains/human,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -90,8 +90,8 @@
name = "ohfuck"
},
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -101,8 +101,8 @@
/obj/item/clothing/suit/hooded/cultrobes,
/obj/effect/decal/cleanable/blood/old,
/turf/simulated/floor/engine/cult{
- oxygen = 24;
nitrogen = 23;
+ oxygen = 24;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
index 03959657af8..66a8ba0e158 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm
@@ -16,8 +16,8 @@
"e" = (
/obj/item/stack/tile/brass,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -30,8 +30,8 @@
/area/lavaland/surface/outdoors/unexplored)
"h" = (
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -45,8 +45,8 @@
"k" = (
/obj/item/clockwork/alloy_shards/small,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -68,8 +68,8 @@
"p" = (
/obj/item/clockwork/alloy_shards/medium,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -84,8 +84,8 @@
"s" = (
/obj/item/clockwork/alloy_shards/large,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -96,8 +96,8 @@
"u" = (
/obj/structure/grille/ratvar,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -109,8 +109,8 @@
"w" = (
/obj/structure/grille/ratvar/broken,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -118,48 +118,48 @@
/obj/structure/clockwork/wall_gear,
/obj/item/stack/tile/brass,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"y" = (
/obj/item/clockwork/component/geis_capacitor/fallen_armor,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"z" = (
/obj/structure/clockwork/wall_gear,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"A" = (
/obj/item/clockwork/alloy_shards/clockgolem_remains,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"B" = (
/obj/item/clockwork/weapon/ratvarian_spear,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
"C" = (
/obj/item/clockwork/alloy_shards/medium/gear_bit,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
@@ -174,8 +174,8 @@
"F" = (
/obj/structure/dead_ratvar,
/turf/simulated/floor/clockwork{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/lavaland/surface/outdoors/unexplored)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
index c04e4aaa0f7..9af10e440c2 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
@@ -13,10 +13,10 @@
/area/ruin/unpowered/misc_lavaruin)
"e" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/obj/item/clothing/suit/bloated_human,
/obj/effect/decal/cleanable/blood,
@@ -25,20 +25,20 @@
/area/ruin/unpowered/misc_lavaruin)
"f" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plating/burnt,
/area/ruin/unpowered/misc_lavaruin)
"g" = (
/obj/effect/decal/cleanable/blood/tracks,
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
@@ -55,29 +55,29 @@
/area/ruin/unpowered/misc_lavaruin)
"k" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
+ pixel_y = 28
},
/obj/item/kitchen/knife/envy,
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
"l" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
"m" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating,
/area/ruin/unpowered/misc_lavaruin)
@@ -86,10 +86,10 @@
/area/ruin/unpowered/misc_lavaruin)
"o" = (
/obj/structure/mirror{
+ broken = 1;
desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
icon_state = "mirror_broke";
- pixel_x = -28;
- broken = 1
+ pixel_x = -28
},
/turf/simulated/floor/plating/damaged,
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
index 8e007e8396f..114b513e3a5 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
@@ -28,7 +28,6 @@
/area/shuttle/freegolem)
"h" = (
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -105,8 +104,7 @@
name = "statue of the Liberator"
},
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/mineral/titanium/purple,
/area/shuttle/freegolem)
@@ -153,8 +151,7 @@
/area/shuttle/freegolem)
"C" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/obj/structure/table/wood,
/obj/item/bedsheet/rd/royal_cape{
@@ -172,7 +169,6 @@
"D" = (
/obj/machinery/light,
/obj/structure/chair/comfy/purp{
- icon_state = "comfychair";
dir = 1
},
/turf/simulated/floor/mineral/titanium/purple,
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
index 7bea889e743..0c8b30da008 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
@@ -170,8 +170,8 @@
"J" = (
/obj/effect/spawner/window/shuttle,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/powered)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
index 8cdc6844bfc..51249894e4c 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm
@@ -7,8 +7,8 @@
/area/ruin/unpowered/hierophant)
"c" = (
/obj/effect/light_emitter{
- light_range = 3;
- light_power = 5
+ light_power = 5;
+ light_range = 3
},
/turf/simulated/floor/indestructible/hierophant,
/area/ruin/unpowered/hierophant)
@@ -21,8 +21,8 @@
/area/ruin/unpowered/hierophant)
"f" = (
/obj/effect/light_emitter{
- light_range = 3;
- light_power = 5
+ light_power = 5;
+ light_range = 3
},
/turf/simulated/floor/indestructible/hierophant/two,
/area/ruin/unpowered/hierophant)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
index 90a221bf5fa..65615755ac4 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
@@ -15,8 +15,8 @@
"e" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -24,8 +24,8 @@
/obj/structure/table/wood,
/obj/item/storage/box/cups,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -33,16 +33,16 @@
/obj/structure/reagent_dispensers/water_cooler/pizzaparty,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"h" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -50,8 +50,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -59,8 +59,8 @@
/obj/item/reagent_containers/food/snacks/mushroompizzaslice,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -69,8 +69,8 @@
/obj/effect/spawner/lootdrop/pizzaparty,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -83,8 +83,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -92,8 +92,8 @@
/obj/item/chair/wood/wings,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -101,8 +101,8 @@
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -110,8 +110,8 @@
/obj/item/trash/plate,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -119,8 +119,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -128,8 +128,8 @@
/obj/item/chair/wood/wings,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -141,15 +141,15 @@
name = "party hat"
},
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"s" = (
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -157,16 +157,16 @@
/obj/structure/chair/wood/wings,
/obj/effect/decal/remains/human,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"u" = (
/obj/structure/glowshroom/single,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -179,8 +179,8 @@
/obj/item/kitchen/utensil/fork,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -188,8 +188,8 @@
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/pizzaparty,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -197,8 +197,8 @@
/obj/structure/table/wood,
/obj/item/trash/plate,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -207,8 +207,8 @@
/obj/structure/glowshroom/single,
/obj/item/a_gift,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -217,16 +217,16 @@
/obj/item/trash/plate,
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"B" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -236,8 +236,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -246,8 +246,8 @@
/obj/item/reagent_containers/food/snacks/margheritaslice,
/obj/item/trash/plate,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -255,8 +255,8 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/meatpizzaslice,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -264,24 +264,24 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/sliceable/birthdaycake,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"G" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"H" = (
/obj/item/chair/wood/wings,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -289,8 +289,8 @@
/obj/item/kitchen/utensil/fork,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -298,8 +298,8 @@
/obj/structure/glowshroom/single,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -310,8 +310,8 @@
/obj/effect/decal/remains/human,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -319,8 +319,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -328,8 +328,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/item/a_gift,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -342,8 +342,8 @@
/obj/item/kitchen/knife,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -353,15 +353,15 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"Q" = (
/turf/simulated/floor/plating{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
index 4a556a25f9d..a3dd45e2845 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
@@ -8,13 +8,11 @@
"c" = (
/obj/item/paper/fluff/stations/lavaland/sloth/note,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
"d" = (
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -22,7 +20,6 @@
/obj/machinery/door/airlock/wood,
/obj/structure/fans/tiny/invisible,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -30,7 +27,6 @@
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
@@ -38,14 +34,12 @@
/obj/structure/bed,
/obj/item/bedsheet/brown,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
"h" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/sepia{
- blocks_air = 0;
slowdown = 10
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
index 8a64ada3f7f..4f6912d0bcb 100644
--- a/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
+++ b/_maps/map_files/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
@@ -10,8 +10,8 @@
/area/ruin/unpowered/misc_lavaruin)
"d" = (
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
@@ -24,16 +24,16 @@
"f" = (
/mob/living/simple_animal/hostile/megafauna/swarmer_swarm_beacon,
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
"g" = (
/obj/effect/baseturf_helper/lava_land/surface,
/turf/simulated/floor/mineral/plastitanium/red{
- oxygen = 14;
nitrogen = 23;
+ oxygen = 14;
temperature = 300
},
/area/ruin/unpowered/misc_lavaruin)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
index e189a85dd73..11b243a5745 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/abandonedzoo.dmm
@@ -9,8 +9,8 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -20,8 +20,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -32,8 +31,8 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 2;
@@ -55,8 +54,8 @@
tag = ""
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -93,8 +92,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/ruin/unpowered)
@@ -160,7 +158,6 @@
/obj/item/clothing/mask/surgical,
/obj/item/razor,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -178,8 +175,7 @@
},
/obj/item/storage/box/beakers,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -202,8 +198,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/highsecurity{
name = "Bio Containment";
@@ -220,14 +215,13 @@
power = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
@@ -246,8 +240,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/wall/r_wall,
/area/ruin/unpowered)
@@ -256,8 +249,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/item/gun/energy/floragun,
/turf/simulated/floor/plasteel{
@@ -268,8 +260,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -279,8 +270,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -295,8 +285,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
@@ -325,8 +314,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
/area/ruin/unpowered)
@@ -368,12 +356,11 @@
"aS" = (
/obj/machinery/power/apc/worn_out{
dir = 8;
- pixel_x = -24;
- pixel_y = 0
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/rack,
/obj/item/melee/baton/cattleprod,
@@ -391,8 +378,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/rack,
/obj/item/clothing/suit/space/hardsuit/medical,
@@ -478,8 +464,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -488,8 +473,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -508,8 +492,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -586,8 +569,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -626,8 +608,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -637,8 +618,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
@@ -692,7 +672,6 @@
icon_state = "pipe-c"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
index de2ab18f8ab..8bb75d2e02d 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/blowntcommsat.dmm
@@ -54,15 +54,14 @@
/area/ruin/tcommsat)
"an" = (
/obj/machinery/power/apc{
- cell_type = 2500;
dir = 1;
name = "Worn-out APC";
pixel_x = 1;
pixel_y = 26
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating/airless,
/area/ruin/tcommsat)
@@ -114,8 +113,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating/airless,
/area/ruin/tcommsat)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm b/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
index 853fed945a1..4158ecd585f 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/clownmime.dmm
@@ -7,8 +7,6 @@
/area/space/nearstation)
"c" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/window/reinforced,
@@ -107,8 +105,6 @@
/area/space/nearstation)
"A" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -119,13 +115,11 @@
"B" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
@@ -140,13 +134,12 @@
"E" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
"F" = (
-/obj/structure/computerframe/HONKputer,
+/obj/structure/computerframe,
/turf/simulated/floor/plasteel/airless,
/area/space/nearstation)
"G" = (
@@ -204,13 +197,11 @@
"R" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "propulsion_l";
- tag = "icon-propulsion_l (WEST)"
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/space/nearstation)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
index af01a5bc274..85f4401cb4b 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/debris1.dmm
@@ -101,7 +101,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/burnt,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
index 94f5c923dd9..d8681d55396 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -113,7 +113,6 @@
"aj" = (
/obj/structure/closet/cardboard,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/item/flashlight/flare,
@@ -173,8 +172,7 @@
"ao" = (
/obj/structure/closet/cardboard,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/item/ammo_box/c9mm,
/obj/item/ammo_box/c9mm,
@@ -234,9 +232,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -256,8 +252,7 @@
pixel_y = 6
},
/obj/item/gun/projectile/automatic/wt550{
- pixel_x = 2;
- pixel_y = 0
+ pixel_x = 2
},
/obj/structure/reagent_dispensers/peppertank{
pixel_y = 30
@@ -342,13 +337,11 @@
"aH" = (
/obj/machinery/vending/clothing,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
"aI" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -391,7 +384,6 @@
"aO" = (
/obj/structure/closet/radiation,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -404,15 +396,13 @@
/obj/item/reagent_containers/food/drinks/cans/cola,
/obj/item/reagent_containers/food/drinks/cans/cola,
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
"aQ" = (
/obj/structure/closet/wardrobe/pink,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -422,7 +412,6 @@
"aS" = (
/obj/structure/bed,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
@@ -475,14 +464,12 @@
/area/ruin/unpowered)
"aZ" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/ruin/unpowered)
"ba" = (
/obj/structure/bed,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken2";
icon_state = "wood-broken2"
},
/area/ruin/unpowered)
@@ -519,7 +506,6 @@
/area/ruin/unpowered)
"bf" = (
/obj/structure/closet/fireaxecabinet{
- tag = "icon-fireaxe0130";
icon_state = "fireaxe0130";
pixel_y = 28
},
@@ -527,7 +513,6 @@
/area/ruin/unpowered)
"bg" = (
/obj/machinery/sleeper{
- icon_state = "sleeper-open";
dir = 4
},
/obj/machinery/light/small{
@@ -550,7 +535,6 @@
/area/ruin/unpowered)
"bj" = (
/obj/machinery/sleeper{
- icon_state = "sleeper-open";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -593,8 +577,8 @@
/area/ruin/unpowered)
"br" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/port_gen/pacman,
/turf/simulated/floor/plasteel,
@@ -637,7 +621,6 @@
icon_state = "1-2"
},
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -650,13 +633,11 @@
/obj/structure/table,
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bB" = (
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -664,7 +645,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -672,7 +652,6 @@
/obj/structure/table,
/obj/item/reagent_containers/food/snacks/beans,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -681,7 +660,6 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -692,14 +670,13 @@
"bG" = (
/obj/machinery/power/apc/noalarm{
dir = 8;
- name = "Bunker APC";
keep_preset_name = 1;
- pixel_x = -24;
- pixel_y = 0
+ name = "Bunker APC";
+ pixel_x = -24
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plasteel,
/area/ruin/unpowered)
@@ -708,7 +685,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -730,14 +706,12 @@
/obj/structure/table,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bL" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -745,7 +719,6 @@
/obj/structure/table,
/obj/item/kitchen/utensil/fork,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -759,8 +732,6 @@
/area/ruin/unpowered)
"bP" = (
/obj/structure/chair/office/dark{
- tag = "icon-officechair_dark (EAST)";
- icon_state = "officechair_dark";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -772,14 +743,12 @@
"bR" = (
/obj/machinery/smartfridge,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
"bS" = (
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- tag = "icon-bar";
icon_state = "bar"
},
/area/ruin/unpowered)
@@ -809,7 +778,6 @@
dir = 1;
name = "Bunker Entrance";
network = list("Bunker1");
- pixel_x = 0;
pixel_y = 2
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
index f3b7a74c0b3..4c66eec4809 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict2.dmm
@@ -4,8 +4,6 @@
/area/template_noop)
"b" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/template_noop,
@@ -16,21 +14,15 @@
/area/ruin/powered)
"d" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/turf/template_noop,
/area/space/nearstation)
"e" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/turf/simulated/floor/plating,
@@ -45,8 +37,6 @@
/area/ruin/powered)
"h" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (NORTH)";
- icon_state = "bulb1";
dir = 1
},
/turf/simulated/floor/plasteel,
@@ -56,8 +46,6 @@
/area/ruin/powered)
"j" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -69,16 +57,12 @@
"l" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (NORTH)";
- icon_state = "rwindow";
dir = 1
},
/turf/simulated/floor/plating,
/area/ruin/powered)
"m" = (
/obj/structure/chair{
- tag = "icon-chair (EAST)";
- icon_state = "chair";
dir = 4
},
/obj/effect/decal/remains/human,
@@ -99,8 +83,6 @@
/area/ruin/powered)
"o" = (
/obj/structure/chair{
- tag = "icon-chair (WEST)";
- icon_state = "chair";
dir = 8
},
/obj/effect/decal/remains/human,
@@ -108,16 +90,12 @@
/area/ruin/powered)
"p" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (NORTH)";
- icon_state = "rwindow";
dir = 1
},
/turf/template_noop,
/area/space/nearstation)
"q" = (
/obj/machinery/light/small{
- tag = "icon-bulb1 (WEST)";
- icon_state = "bulb1";
dir = 8
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm b/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
index 019d72b4145..c52eb3477d3 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/derelict4.dmm
@@ -26,8 +26,6 @@
/area/ruin/unpowered)
"i" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/obj/structure/chair/comfy/shuttle,
@@ -43,9 +41,7 @@
/area/ruin/unpowered)
"l" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/ruin/unpowered)
@@ -76,8 +72,6 @@
/area/ruin/unpowered)
"r" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (WEST)";
- icon_state = "rwindow";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
index 334a71acb15..f197aac8d94 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/dj.dmm
@@ -160,8 +160,8 @@
},
/obj/machinery/tcomms/relay/ruskie,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/djstation)
"av" = (
@@ -282,16 +282,16 @@
/area/djstation)
"aG" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/smes/magical{
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
name = "power storage unit"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/djstation)
"aH" = (
@@ -342,8 +342,8 @@
/area/djstation)
"aM" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/apc/noalarm{
dir = 0;
@@ -398,13 +398,10 @@
/turf/simulated/floor/plating,
/area/djstation)
"aR" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/djstation)
"aS" = (
@@ -467,8 +464,8 @@
},
/obj/structure/table,
/obj/item/paper/djstation{
- name = "communications update";
- info = "Station has stopped responding to my reports for about the past month. I assume Vostok just has his knickers in a twist.
Hell, not my problem. Got all the vodka and cigarettes I need to last me a year."
+ info = "Station has stopped responding to my reports for about the past month. I assume Vostok just has his knickers in a twist.
Hell, not my problem. Got all the vodka and cigarettes I need to last me a year.";
+ name = "communications update"
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
@@ -661,20 +658,19 @@
/obj/structure/table,
/obj/item/radio/intercom/pirate,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/djstation)
"by" = (
/obj/structure/table,
/obj/item/paper/djstation{
+ info = "Welcome new owner!
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio fequencies. Here is a step by step guide to start listening in on those saucy radio channels:
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms, located on the front desk. Here is a list of frequencies for you to listen on.
You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio fequencies. Here is a step by step guide to start listening in on those saucy radio channels:
Simple as that. Now to listen to the private channels, you'll have to configure the intercoms, located on the front desk. Here is a list of frequencies for you to listen on.
I will never forget those nights we spent on Cygni, or all the times you took me around in your 2452 Vincent. The way you looked at me that one night, that was the night I knew that you and I were of the same soul.
I know they made you sell your Vincent when you were reassigned, but I could not let such a beautiful thing go to rust. I have made arrangements and it is here, waiting for you.
I have enclosed the keys. Please, let them serve as a reminder always of our love and a reason to return. I beg of you, do not let our love go softly into the night.";
+ layer = 2.9;
name = "love letter";
pixel_x = -5;
- pixel_y = -3;
- layer = 2.9;
- info = "To my darling Sergei,
I will never forget those nights we spent on Cygni, or all the times you took me around in your 2452 Vincent. The way you looked at me that one night, that was the night I knew that you and I were of the same soul.
I know they made you sell your Vincent when you were reassigned, but I could not let such a beautiful thing go to rust. I have made arrangements and it is here, waiting for you.
I have enclosed the keys. Please, let them serve as a reminder always of our love and a reason to return. I beg of you, do not let our love go softly into the night."
+ pixel_y = -3
},
/obj/item/key{
- name = "Vincent '52 Key";
- pixel_x = 0;
- pixel_y = 0
+ name = "Vincent '52 Key"
},
/obj/item/trash/tapetrash{
desc = "A bundle of severely yellowed and highly pretentious looking documents. Unfortunately they appear to be written in cyrillic and encrypted with a cypher.";
@@ -267,8 +263,6 @@
/area/derelict/bridge)
"aI" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -338,7 +332,6 @@
/obj/effect/landmark/damageturf,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -347,8 +340,6 @@
/area/derelict/bridge)
"aR" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -376,8 +367,6 @@
"aU" = (
/obj/machinery/photocopier,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -459,7 +448,6 @@
/area/derelict/bridge)
"bf" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -478,8 +466,7 @@
"bi" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bj" = (
@@ -516,7 +503,6 @@
"bl" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/dirt,
@@ -662,16 +648,14 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bA" = (
/obj/structure/table/wood,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bB" = (
@@ -680,8 +664,7 @@
/obj/item/pen,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bC" = (
@@ -690,8 +673,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/bridge)
"bD" = (
@@ -721,12 +703,9 @@
/area/derelict/arrival)
"bF" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
@@ -743,8 +722,6 @@
/area/derelict/arrival)
"bH" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -839,7 +816,6 @@
/area/derelict/crew_quarters)
"bS" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
@@ -861,7 +837,6 @@
/area/derelict/arrival)
"bV" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/bridge)
@@ -876,7 +851,6 @@
/obj/structure/table/reinforced,
/obj/item/storage/box/cups,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -884,21 +858,18 @@
/obj/structure/table/reinforced,
/obj/item/ashtray/bronze,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"bZ" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"ca" = (
/obj/structure/coatrack,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -906,14 +877,12 @@
/obj/structure/table/reinforced,
/obj/item/folder,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"cc" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -951,8 +920,6 @@
/area/derelict/bridge)
"ch" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -977,8 +944,6 @@
/area/derelict/crew_quarters)
"ck" = (
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/obj/structure/curtain/open/shower,
@@ -995,13 +960,11 @@
name = "armoured helmet"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkredcorners"
},
/area/derelict/arrival)
"cm" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1021,8 +984,7 @@
},
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "dark";
- tag = "icon-vault (NORTHEAST)"
+ icon_state = "dark"
},
/area/derelict/arrival)
"cp" = (
@@ -1086,14 +1048,12 @@
"cx" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
"cy" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12
},
/obj/structure/mirror{
@@ -1246,9 +1206,7 @@
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- pixel_x = 5;
- tag = "icon-shower (EAST)"
+ pixel_x = 5
},
/obj/structure/window/reinforced{
dir = 1
@@ -1258,7 +1216,6 @@
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/dirt,
@@ -1319,7 +1276,6 @@
/obj/item/reagent_containers/food/drinks/bottle/vodka,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/bridge)
@@ -1369,8 +1325,8 @@
/obj/item/bedsheet/blue,
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 4
+ dir = 4;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dd" = (
@@ -1426,8 +1382,6 @@
icon_state = "1-2"
},
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel/airless{
@@ -1440,8 +1394,8 @@
/obj/item/bedsheet/blue,
/obj/structure/bed,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 8
+ dir = 8;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dl" = (
@@ -1488,7 +1442,6 @@
"dr" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -1501,15 +1454,12 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
"dt" = (
/obj/structure/table/reinforced,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1534,8 +1484,8 @@
/obj/structure/bed,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 10
+ dir = 10;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dw" = (
@@ -1556,8 +1506,8 @@
/obj/item/bedsheet/blue,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "blue";
- dir = 6
+ dir = 6;
+ icon_state = "blue"
},
/area/derelict/crew_quarters)
"dz" = (
@@ -1597,7 +1547,6 @@
name = "recommendation for commendation"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1609,7 +1558,6 @@
name = "Bridge Lockdown"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1692,8 +1640,6 @@
"dN" = (
/obj/structure/closet,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/item/clothing/head/ushanka,
@@ -1722,8 +1668,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -1738,8 +1683,6 @@
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -1876,8 +1819,6 @@
})
"eh" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -1902,8 +1843,6 @@
})
"ej" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/effect/decal/cleanable/dirt,
@@ -1925,9 +1864,9 @@
/area/derelict/crew_quarters)
"el" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/piano,
/obj/machinery/power/apc/noalarm{
@@ -1942,7 +1881,6 @@
/obj/structure/chair/stool,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood,
@@ -1963,7 +1901,6 @@
"eo" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1977,7 +1914,6 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -1996,7 +1932,6 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/machinery/light/spot{
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -2023,9 +1958,7 @@
})
"eu" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2037,9 +1970,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2047,9 +1978,7 @@
"ew" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2081,8 +2010,8 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2110,7 +2039,6 @@
"eC" = (
/obj/structure/chair/wood,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/crew_quarters)
@@ -2128,8 +2056,6 @@
"eF" = (
/obj/structure/chair/sofa/left,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/obj/structure/sign/poster/contraband/rebels_unite{
@@ -2147,7 +2073,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/derelict/crew_quarters)
@@ -2304,13 +2229,12 @@
})
"eV" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/derelict/eva{
@@ -2346,8 +2270,8 @@
/obj/structure/engineeringcart,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2418,7 +2342,6 @@
"fg" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2473,7 +2396,6 @@
name = "Science Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -2534,7 +2456,6 @@
name = "Engineering Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -2600,8 +2521,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2611,7 +2532,6 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2623,7 +2543,6 @@
dir = 4
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/derelict/crew_quarters)
@@ -2649,7 +2568,6 @@
"fz" = (
/obj/structure/mopbucket,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/derelict/crew_quarters)
@@ -2702,7 +2620,6 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -2799,8 +2716,6 @@
})
"fP" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2833,8 +2748,8 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -2872,7 +2787,6 @@
/obj/structure/chair/stool/bar,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/effect/decal/cleanable/blood,
@@ -2913,7 +2827,6 @@
"ga" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "gnawed bones"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -2981,7 +2894,6 @@
/obj/structure/table/wood,
/obj/item/ashtray/plastic,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkblue"
},
/area/derelict/eva{
@@ -3016,13 +2928,13 @@
track = 2
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3049,7 +2961,6 @@
"gn" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/derelict/crew_quarters)
@@ -3106,7 +3017,6 @@
"gu" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3127,7 +3037,6 @@
})
"gw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3138,8 +3047,6 @@
dir = 1
},
/obj/machinery/shower{
- tag = "icon-shower (WEST)";
- icon_state = "shower";
dir = 8
},
/obj/structure/curtain/open/shower,
@@ -3167,7 +3074,6 @@
})
"gA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -3190,9 +3096,9 @@
})
"gC" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -3211,13 +3117,11 @@
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3358,8 +3262,8 @@
/obj/item/clothing/under/retro/engineering,
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3378,7 +3282,6 @@
},
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -3389,8 +3292,6 @@
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -3410,9 +3311,9 @@
id = "russolar"
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
@@ -3435,7 +3336,6 @@
/obj/item/storage/box/cups,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "darkred"
},
/area/derelict/arrival)
@@ -3523,8 +3423,8 @@
})
"hl" = (
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3608,9 +3508,7 @@
name = "Security Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/derelict/arrival)
"hv" = (
@@ -3623,14 +3521,11 @@
name = "Security Wing"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "ramptop";
- tag = "icon-stage_stairs"
+ icon_state = "ramptop"
},
/area/derelict/arrival)
"hw" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3645,7 +3540,6 @@
"hx" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -3684,7 +3578,6 @@
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -3697,10 +3590,10 @@
name = "Derelict Annex"
})
"hD" = (
-/obj/machinery/computer/monitor,
+/obj/machinery/computer/monitor/secret,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3715,7 +3608,6 @@
name = "Eastern Annex"
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs";
icon_state = "stage_stairs"
},
/area/derelict/crew_quarters)
@@ -3728,7 +3620,6 @@
name = "Eastern Annex"
},
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs";
icon_state = "stage_stairs"
},
/area/derelict/crew_quarters)
@@ -3786,7 +3677,6 @@
/area/derelict/arrival)
"hN" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3839,8 +3729,8 @@
"hR" = (
/obj/machinery/computer/atmos_alert,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -3917,8 +3807,6 @@
/area/derelict/arrival)
"ib" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/obj/structure/closet/l3closet/scientist,
@@ -3999,8 +3887,8 @@
name = "Cosmonaut Engineering Suit"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4083,8 +3971,6 @@
/area/derelict/arrival)
"iz" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -4114,7 +4000,6 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "purple"
},
/area/derelict/eva{
@@ -4227,7 +4112,6 @@
"iQ" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/chair/comfy/shuttle{
@@ -4322,7 +4206,6 @@
/obj/effect/landmark/damageturf,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plating/airless,
@@ -4356,8 +4239,8 @@
name = "Engineering Wing"
},
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 4
+ dir = 4;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4391,8 +4274,6 @@
/area/derelict/crew_quarters)
"jg" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden,
@@ -4434,11 +4315,9 @@
/area/derelict/arrival)
"jm" = (
/obj/machinery/door/airlock/external{
- name = "Docking Port";
- req_access_txt = "0"
+ name = "Docking Port"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -4488,8 +4367,7 @@
/obj/item/trash/spentcasing,
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4601,8 +4479,8 @@
})
"jF" = (
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4611,8 +4489,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4620,8 +4497,8 @@
"jH" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "caution";
- dir = 5
+ dir = 5;
+ icon_state = "caution"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4649,8 +4526,7 @@
/obj/machinery/door/airlock/external{
frequency = 1502;
id_tag = "rus_inner_2";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -4658,8 +4534,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -4687,8 +4562,7 @@
frequency = 1502;
id_tag = "rus_outer_2";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -4913,8 +4787,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -4932,7 +4805,6 @@
/obj/effect/decal/cleanable/blood,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel{
@@ -4954,8 +4826,7 @@
})
"kl" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plasteel,
/area/derelict/eva{
@@ -4973,8 +4844,7 @@
})
"kn" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/engine,
/area/derelict/eva{
@@ -5013,8 +4883,7 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/engine,
/area/derelict/eva{
@@ -5037,8 +4906,7 @@
})
"kt" = (
/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -5097,8 +4965,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5251,8 +5118,7 @@
frequency = 1502;
master_tag = "rus_airlock_2";
name = "exterior access button";
- pixel_x = -25;
- req_access_txt = "0"
+ pixel_x = -25
},
/turf/template_noop,
/area/derelict/crew_quarters)
@@ -5338,8 +5204,7 @@
"kV" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5443,7 +5308,6 @@
"lf" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -5456,7 +5320,6 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "caution"
},
/area/derelict/eva{
@@ -5474,8 +5337,7 @@
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5519,8 +5381,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
@@ -5534,14 +5395,12 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/door/airlock/external{
frequency = 1502;
id_tag = "rus_inner_2";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/crew_quarters)
@@ -5563,7 +5422,6 @@
frequency = 1502;
id_tag = "rus_airlock_2";
pixel_y = -25;
- req_access_txt = "0";
tag_airpump = "rus_pump_2";
tag_chamber_sensor = "rus_sensor_2";
tag_exterior_door = "rus_outer_2";
@@ -5581,8 +5439,7 @@
frequency = 1502;
id_tag = "rus_outer_2";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 4;
@@ -5629,8 +5486,7 @@
/area/derelict/arrival)
"lu" = (
/obj/machinery/door/airlock/external{
- name = "Docking Port";
- req_access_txt = "0"
+ name = "Docking Port"
},
/turf/simulated/floor/plasteel,
/area/derelict/arrival)
@@ -5638,7 +5494,6 @@
/obj/effect/decal/cleanable/blood/splatter,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel,
@@ -5671,8 +5526,8 @@
welded = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5683,8 +5538,8 @@
welded = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -5745,8 +5600,6 @@
})
"lG" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/machinery/access_button{
@@ -5754,8 +5607,7 @@
frequency = 1502;
master_tag = "rus_airlock_2";
name = "interior access button";
- pixel_x = 25;
- req_access_txt = "0"
+ pixel_x = 25
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
@@ -5799,7 +5651,6 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -5890,8 +5741,6 @@
/obj/structure/closet/crate/can,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/item/trash/tastybread,
@@ -5961,8 +5810,6 @@
/area/derelict/solar_control)
"mc" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (NORTH)";
- icon_state = "heater";
dir = 1
},
/obj/structure/shuttle/engine/propulsion,
@@ -6097,13 +5944,11 @@
"mv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
"mw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "brown"
},
/area/derelict/arrival)
@@ -6182,8 +6027,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/arrival)
"mI" = (
@@ -6202,8 +6046,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/arrival)
"mK" = (
@@ -6268,8 +6111,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"mR" = (
@@ -6395,8 +6237,6 @@
})
"ne" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/structure/curtain/open/shower,
@@ -6506,8 +6346,6 @@
})
"ns" = (
/obj/machinery/shower{
- tag = "icon-shower (EAST)";
- icon_state = "shower";
dir = 4
},
/obj/structure/curtain/open/shower,
@@ -6593,7 +6431,6 @@
"nC" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 2
},
@@ -6615,8 +6452,6 @@
/obj/structure/rack,
/obj/item/beach_ball/holoball,
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -6661,7 +6496,6 @@
"nJ" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel/airless{
@@ -6776,7 +6610,6 @@
/area/derelict/crew_quarters)
"nV" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/derelict/crew_quarters)
@@ -6923,7 +6756,6 @@
"op" = (
/obj/item/stack/ore/iron,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -6934,7 +6766,6 @@
icon_state = "medium"
},
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -6950,7 +6781,6 @@
"os" = (
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/turf/simulated/floor/plasteel/airless,
@@ -7122,7 +6952,6 @@
})
"oL" = (
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -7180,7 +7009,6 @@
"oR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
@@ -7196,7 +7024,6 @@
/obj/item/hatchet,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "green"
},
/area/derelict/eva{
@@ -7220,8 +7047,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7234,8 +7060,7 @@
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7243,8 +7068,7 @@
"oX" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/eva{
name = "Derelict Annex"
@@ -7298,7 +7122,6 @@
"pd" = (
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_ussp";
name = "USSP"
},
@@ -7314,8 +7137,6 @@
/obj/structure/table,
/obj/item/storage/box/cups,
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -7327,7 +7148,6 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orangefull"
},
/area/derelict/crew_quarters)
@@ -7337,13 +7157,11 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
"pi" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "orange"
},
/area/derelict/crew_quarters)
@@ -7414,14 +7232,11 @@
"pt" = (
/obj/structure/closet/jcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pu" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/rack,
@@ -7432,8 +7247,8 @@
/obj/item/storage/bag/trash,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pv" = (
@@ -7451,7 +7266,6 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/remains/human{
desc = "This guy seemed to have died in terrible way! Half his remains are dust.";
- icon_state = "remains";
name = "Human remains"
},
/obj/structure/spider/cocoon,
@@ -7467,8 +7281,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"pA" = (
@@ -7493,21 +7306,18 @@
})
"pC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pD" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/rack,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pE" = (
@@ -7523,8 +7333,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"pH" = (
@@ -7537,8 +7346,6 @@
"pI" = (
/obj/effect/landmark/burnturf,
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel/airless{
@@ -7556,34 +7363,29 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/derelict/crew_quarters)
"pL" = (
/obj/structure/window/reinforced,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pM" = (
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
"pN" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- tag = "icon-dark";
icon_state = "dark"
},
/area/derelict/crew_quarters)
@@ -7661,8 +7463,6 @@
/area/derelict/crew_quarters)
"pX" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
@@ -7678,15 +7478,13 @@
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"pZ" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "rampbottom";
- tag = "icon-stage_stairs"
+ icon_state = "rampbottom"
},
/area/derelict/crew_quarters)
"qa" = (
@@ -7703,8 +7501,6 @@
icon_state = "1-2"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -7726,8 +7522,6 @@
/area/derelict/crew_quarters)
"qe" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -7755,17 +7549,13 @@
"qi" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qj" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qk" = (
@@ -7779,17 +7569,13 @@
slogan_list = list("Just remember! No capitalist.","Best enjoyed with Vodka!.","Smoke!","Nine out of ten USSP scientists agree, smoking reduces stress!","There's no cigarette like a Russian cigarette!","Cigarettes! Now with 100% less capitalism.")
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qm" = (
/obj/machinery/vending/sovietsoda,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qn" = (
@@ -7805,8 +7591,6 @@
"qo" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/kitchenspike,
@@ -7824,9 +7608,9 @@
/area/derelict/arrival)
"qr" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel/airless{
icon_state = "floorscorched2"
@@ -7838,29 +7622,27 @@
/area/derelict/arrival)
"qt" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/derelict/arrival)
"qu" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/derelict/arrival)
"qv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qw" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qx" = (
@@ -7876,15 +7658,11 @@
/area/derelict/arrival)
"qy" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qz" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (EAST)";
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -7894,8 +7672,8 @@
pixel_x = 27
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qA" = (
@@ -7946,16 +7724,14 @@
/area/derelict/arrival)
"qF" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"qG" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qH" = (
@@ -7965,9 +7741,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qI" = (
@@ -7979,9 +7753,7 @@
list_reagents = list("charcoal" = 13, "salmonella" = 2)
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qJ" = (
@@ -8011,14 +7783,10 @@
/area/derelict/arrival)
"qN" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (NORTH)";
- icon_state = "tube1";
dir = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"qO" = (
@@ -8037,8 +7805,6 @@
"qQ" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/fullgrass,
@@ -8048,14 +7814,14 @@
/area/derelict/arrival)
"qR" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/derelict/arrival)
"qS" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/derelict/arrival)
"qT" = (
@@ -8075,8 +7841,6 @@
"qV" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/ywflowers,
@@ -8113,8 +7877,6 @@
/area/derelict/arrival)
"ra" = (
/obj/machinery/light/spot{
- tag = "icon-tube1 (WEST)";
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -8167,8 +7929,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/derelict/arrival)
"rg" = (
@@ -8178,9 +7940,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rh" = (
@@ -8190,8 +7950,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/derelict/arrival)
"ri" = (
@@ -8238,8 +7998,7 @@
/obj/structure/closet/crate/secure/loot,
/obj/structure/spider/stickyweb,
/turf/simulated/floor/plasteel{
- icon_state = "delivery";
- name = "floor"
+ icon_state = "delivery"
},
/area/derelict/crew_quarters)
"rn" = (
@@ -8256,8 +8015,8 @@
/area/derelict/arrival)
"rq" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/derelict/arrival)
"rr" = (
@@ -8302,16 +8061,14 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/grass,
/area/derelict/arrival)
"ru" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/derelict/arrival)
"rv" = (
@@ -8319,17 +8076,13 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rw" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rx" = (
@@ -8383,8 +8136,6 @@
pixel_y = 5
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/effect/decal/warning_stripes/south,
@@ -8405,9 +8156,7 @@
/obj/structure/table,
/obj/item/flashlight/lamp,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rE" = (
@@ -8417,8 +8166,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/derelict/arrival)
"rF" = (
@@ -8432,18 +8181,14 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rH" = (
/obj/structure/table/wood/poker,
/obj/item/deck/cards,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rI" = (
@@ -8451,9 +8196,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rJ" = (
@@ -8469,9 +8212,7 @@
name = "worn paper"
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rK" = (
@@ -8500,8 +8241,6 @@
layer = 2.9
},
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/flora/ausbushes/ppflowers,
@@ -8517,16 +8256,13 @@
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rO" = (
/obj/machinery/light/spot,
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel{
@@ -8560,16 +8296,14 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1501;
master_tag = "rus_airlock_1";
name = "interior access button";
- pixel_y = -25;
- req_access_txt = "0"
+ pixel_y = -25
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
@@ -8607,9 +8341,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rU" = (
@@ -8634,8 +8366,6 @@
/area/derelict/arrival)
"rW" = (
/obj/structure/window/reinforced{
- tag = "icon-rwindow (EAST)";
- icon_state = "rwindow";
dir = 4
},
/obj/structure/window/reinforced{
@@ -8649,9 +8379,7 @@
/obj/structure/table,
/obj/machinery/computer/library/public,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "redfull";
- tag = "icon-redfull (NORTHWEST)"
+ icon_state = "redfull"
},
/area/derelict/arrival)
"rY" = (
@@ -8666,8 +8394,7 @@
/obj/machinery/door/airlock/external{
frequency = 1501;
id_tag = "rus_inner_1";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 1;
@@ -8687,8 +8414,7 @@
/obj/machinery/door/airlock/external{
frequency = 1501;
id_tag = "rus_inner_1";
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/arrival)
@@ -8699,8 +8425,6 @@
icon_state = "1-2"
},
/obj/machinery/light/small{
- tag = "icon-bulb1 (EAST)";
- icon_state = "bulb1";
dir = 4
},
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -8718,7 +8442,6 @@
frequency = 1501;
id_tag = "rus_airlock_1";
pixel_x = -25;
- req_access_txt = "0";
tag_airpump = "rus_pump_1";
tag_chamber_sensor = "rus_sensor_1";
tag_exterior_door = "rus_outer_1";
@@ -8752,8 +8475,7 @@
frequency = 1501;
id_tag = "rus_outer_1";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/turf/simulated/floor/plating,
/area/derelict/arrival)
@@ -8762,8 +8484,7 @@
frequency = 1501;
id_tag = "rus_outer_1";
locked = 1;
- name = "External Airlock";
- req_access_txt = "0"
+ name = "External Airlock"
},
/obj/structure/cable{
d1 = 1;
@@ -8774,8 +8495,7 @@
/area/derelict/arrival)
"sg" = (
/obj/item/stack/cable_coil{
- amount = 1;
- max_amount = 30
+ amount = 1
},
/turf/template_noop,
/area/space/nearstation)
@@ -8788,8 +8508,7 @@
frequency = 1501;
master_tag = "rus_airlock_1";
name = "exterior access button";
- pixel_y = 25;
- req_access_txt = "0"
+ pixel_y = 25
},
/turf/template_noop,
/area/derelict/arrival)
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
index 96af170f3c2..23cab65cbb6 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/whiteship.dmm
@@ -9,9 +9,7 @@
/turf/simulated/floor/mineral/titanium,
/area/shuttle/abandoned)
"af" = (
-/obj/machinery/sleeper{
- dir = 8
- },
+/obj/machinery/sleeper,
/obj/machinery/light{
dir = 1
},
@@ -21,8 +19,7 @@
"ak" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -40,8 +37,6 @@
/area/shuttle/abandoned)
"aq" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -51,9 +46,7 @@
/area/shuttle/abandoned)
"ar" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -114,8 +107,7 @@
"aJ" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/shuttle/abandoned)
@@ -132,7 +124,6 @@
},
/obj/docking_port/stationary/whiteship{
dir = 8;
- icon_state = "pinonfar";
id = "whiteship_away";
name = "Deep Space"
},
diff --git a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
index 228f1580e51..162f4bfb179 100644
--- a/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
+++ b/_maps/map_files/RandomRuins/SpaceRuins/wizardcrash.dmm
@@ -17,7 +17,6 @@
icon_state = "small"
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -27,13 +26,11 @@
"af" = (
/obj/structure/computerframe,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
"ag" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken7";
icon_state = "wood-broken7"
},
/area/ruin/unpowered)
@@ -44,7 +41,6 @@
},
/obj/item/shard,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -105,7 +101,6 @@
in_use = 1
},
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -140,7 +135,6 @@
/area/ruin/unpowered)
"ax" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken3";
icon_state = "wood-broken3"
},
/area/ruin/unpowered)
@@ -156,7 +150,6 @@
/area/ruin/unpowered)
"aA" = (
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -185,7 +178,6 @@
"aF" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -261,7 +253,6 @@
/area/ruin/unpowered)
"aT" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/reagent_dispensers/oil,
@@ -280,7 +271,6 @@
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/turf/simulated/floor/wood{
- tag = "icon-wood-broken6";
icon_state = "wood-broken6"
},
/area/ruin/unpowered)
@@ -502,8 +492,7 @@
/area/ruin/unpowered)
"bJ" = (
/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
+ dir = 4
},
/turf/simulated/floor/mineral/plasma,
/area/ruin/unpowered)
diff --git a/_maps/map_files/RandomZLevels/academy.dmm b/_maps/map_files/RandomZLevels/academy.dmm
index a98fe0ef8f3..6e777650165 100644
--- a/_maps/map_files/RandomZLevels/academy.dmm
+++ b/_maps/map_files/RandomZLevels/academy.dmm
@@ -43,13 +43,12 @@
/area/awaymission/academy/headmaster)
"aj" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
environ = 0;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -192,7 +191,6 @@
/area/awaymission/academy/headmaster)
"aD" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/carpet,
@@ -215,7 +213,6 @@
icon_state = "1-2"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -476,7 +473,6 @@
"bz" = (
/mob/living/simple_animal/hostile/mimic/crate,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -526,7 +522,6 @@
/area/awaymission/academy/headmaster)
"bL" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -536,9 +531,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bN" = (
@@ -552,9 +546,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bP" = (
@@ -575,9 +568,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"bR" = (
@@ -606,8 +598,8 @@
"bU" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
d2 = 8;
@@ -655,8 +647,8 @@
"ce" = (
/obj/machinery/autolathe,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
@@ -667,9 +659,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cg" = (
@@ -690,8 +681,8 @@
"ci" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -709,9 +700,8 @@
/area/awaymission/academy/headmaster)
"cl" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cm" = (
@@ -727,9 +717,8 @@
"cn" = (
/obj/machinery/computer/area_atmos/area,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"co" = (
@@ -754,7 +743,6 @@
/area/awaymission/academy/headmaster)
"cr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel,
@@ -794,9 +782,7 @@
},
/area/awaymission/academy/headmaster)
"cz" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -806,8 +792,8 @@
/area/awaymission/academy/headmaster)
"cA" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cB" = (
@@ -816,8 +802,8 @@
/area/awaymission/academy/classrooms)
"cC" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cD" = (
@@ -907,8 +893,8 @@
/area/awaymission/academy/classrooms)
"cP" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"cQ" = (
@@ -918,26 +904,18 @@
/area/awaymission/academy/classrooms)
"cR" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
-"cS" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/headmaster)
"cT" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/portable_atmospherics/pump,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cU" = (
@@ -952,9 +930,8 @@
/obj/structure/closet/crate,
/obj/item/crowbar/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/headmaster)
"cW" = (
@@ -1005,7 +982,6 @@
/area/awaymission/academy/classrooms)
"dd" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -1025,9 +1001,8 @@
},
/obj/item/gun/projectile/shotgun/toy/tommygun,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"dh" = (
@@ -1091,14 +1066,13 @@
"dq" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/classrooms)
"dr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -1112,8 +1086,8 @@
/area/awaymission/academy/classrooms)
"dt" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"du" = (
@@ -1125,15 +1099,15 @@
/area/awaymission/academy/classrooms)
"dw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"dx" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/greengrid,
/area/awaymission/academy/classrooms)
@@ -1273,8 +1247,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"dQ" = (
@@ -1410,13 +1384,11 @@
/area/awaymission/academy/classrooms)
"ej" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -1440,14 +1412,12 @@
/area/awaymission/academy/classrooms)
"em" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHWEST)";
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"en" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/academy/classrooms)
@@ -1460,8 +1430,8 @@
"ep" = (
/obj/machinery/vending/hydronutrients,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/academy/classrooms)
"eq" = (
@@ -1495,8 +1465,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/academy/classrooms)
"ev" = (
@@ -1549,15 +1519,15 @@
/area/awaymission/academy/headmaster)
"eC" = (
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eD" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eE" = (
@@ -1633,7 +1603,6 @@
/area/awaymission/academy/classrooms)
"eO" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1643,8 +1612,8 @@
"eP" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eQ" = (
@@ -1696,14 +1665,13 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"eY" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1740,8 +1708,8 @@
"fc" = (
/obj/structure/mineral_door/wood,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fd" = (
@@ -1803,8 +1771,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fk" = (
@@ -1815,8 +1783,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fl" = (
@@ -1850,16 +1818,16 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fp" = (
/obj/structure/table,
/obj/item/trash/semki,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fq" = (
@@ -1867,8 +1835,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fr" = (
@@ -1881,8 +1849,8 @@
/area/awaymission/academy/classrooms)
"fs" = (
/turf/simulated/floor/plasteel{
- icon_state = "cautioncorner";
- dir = 4
+ dir = 4;
+ icon_state = "cautioncorner"
},
/area/awaymission/academy/classrooms)
"ft" = (
@@ -1908,8 +1876,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fw" = (
@@ -1965,8 +1933,8 @@
"fA" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"fB" = (
@@ -2039,8 +2007,8 @@
/area/awaymission/academy/academyaft)
"fI" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fJ" = (
@@ -2066,19 +2034,18 @@
/area/awaymission/academy/academyaft)
"fN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"fO" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2088,7 +2055,6 @@
"fP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -2099,8 +2065,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fR" = (
@@ -2142,17 +2108,16 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 1
+ dir = 1;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"fX" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/academy/classrooms)
@@ -2170,8 +2135,8 @@
/obj/structure/table,
/obj/item/lazarus_injector,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gb" = (
@@ -2191,8 +2156,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2208,20 +2173,19 @@
/area/awaymission/academy/classrooms)
"gg" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gh" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2232,17 +2196,15 @@
/obj/structure/table/reinforced,
/obj/item/pen/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gj" = (
/obj/structure/filingcabinet/filingcabinet,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gk" = (
@@ -2273,8 +2235,8 @@
/area/awaymission/academy/classrooms)
"go" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gp" = (
@@ -2286,15 +2248,12 @@
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gq" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
@@ -2304,21 +2263,13 @@
/area/awaymission/academy/classrooms)
"gs" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 4
+ dir = 4;
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
-"gt" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/awaymission/academy/classrooms)
"gu" = (
/obj/structure/bookcase,
/obj/item/book/manual/medical_cloning,
@@ -2326,7 +2277,6 @@
/area/awaymission/academy/classrooms)
"gv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2335,19 +2285,15 @@
/area/awaymission/academy/academyaft)
"gw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gx" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/machinery/door/window{
dir = 8
},
@@ -2376,8 +2322,8 @@
"gB" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -2388,8 +2334,8 @@
"gC" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -2404,9 +2350,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gE" = (
@@ -2417,9 +2362,8 @@
},
/obj/item/gun/projectile/shotgun/toy/tommygun,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gF" = (
@@ -2433,9 +2377,8 @@
"gG" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gH" = (
@@ -2463,15 +2406,12 @@
"gL" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gM" = (
-/obj/machinery/door/window{
- dir = 4
- },
+/obj/machinery/door/window,
/obj/item/ammo_casing,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -2521,9 +2461,8 @@
name = "Summoning Midterm Exam"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"gU" = (
@@ -2537,8 +2476,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -2560,15 +2499,13 @@
/area/awaymission/academy/academyaft)
"gX" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gY" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/academy/classrooms)
"gZ" = (
@@ -2600,14 +2537,6 @@
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
-"he" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/awaymission/academy/academyaft)
"hf" = (
/obj/structure/cable{
d1 = 2;
@@ -2630,9 +2559,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"hh" = (
@@ -2642,20 +2570,17 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/classrooms)
"hi" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
@@ -2668,15 +2593,14 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/academy/classrooms)
"hk" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"hl" = (
@@ -2690,17 +2614,15 @@
/area/awaymission/academy/academyaft)
"hn" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"ho" = (
/obj/item/crowbar/red,
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"hp" = (
@@ -2728,16 +2650,6 @@
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academyaft)
-"hs" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "hydrofloor"
- },
-/area/awaymission/academy/academyaft)
"ht" = (
/obj/structure/cable{
d1 = 2;
@@ -2759,8 +2671,8 @@
/obj/machinery/power/smes/magical,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2769,8 +2681,8 @@
dir = 8
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2814,8 +2726,8 @@
"hD" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -2857,15 +2769,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaymission/academy/classrooms)
-"hJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/academy/academyaft)
"hK" = (
/obj/machinery/constructable_frame/machine_frame,
/turf/simulated/floor/plating,
@@ -2882,8 +2785,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -2891,7 +2793,6 @@
/area/awaymission/academy/academyaft)
"hN" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -2973,7 +2874,6 @@
/area/awaymission/academy/academyaft)
"ia" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -2988,8 +2888,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academyaft)
@@ -3033,8 +2932,7 @@
/area/awaymission/academy/academyaft)
"ii" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ij" = (
@@ -3042,15 +2940,13 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ik" = (
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"im" = (
@@ -3066,8 +2962,7 @@
"io" = (
/obj/structure/mineral_door/iron,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ir" = (
@@ -3077,48 +2972,40 @@
/area/awaymission/academy/academyaft)
"is" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"it" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iu" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/academy/academyaft)
"iv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
/area/awaymission/academy/academyaft)
"iw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"ix" = (
@@ -3150,8 +3037,7 @@
name = "awaystart"
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iA" = (
@@ -3162,8 +3048,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iB" = (
@@ -3184,8 +3069,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iE" = (
@@ -3222,8 +3106,7 @@
},
/obj/effect/decal/cleanable/vomit,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"iL" = (
@@ -3257,8 +3140,8 @@
/obj/structure/table,
/obj/item/beach_ball/holoball,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"iP" = (
@@ -3304,8 +3187,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"iS" = (
@@ -3329,9 +3212,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"iU" = (
@@ -3341,14 +3223,12 @@
/obj/structure/table,
/obj/item/soulstone,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"iV" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_l";
icon_state = "propulsion_l"
},
/turf/space,
@@ -3359,7 +3239,6 @@
/area/awaymission/academy/academyaft)
"iX" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion_r";
icon_state = "propulsion_r"
},
/turf/space,
@@ -3367,8 +3246,8 @@
"iY" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/window/reinforced{
dir = 5
@@ -3438,9 +3317,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/academy/academyaft)
"je" = (
@@ -3499,7 +3377,6 @@
/area/awaymission/academy/academyaft)
"jj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3520,9 +3397,8 @@
"jl" = (
/obj/structure/table,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"jm" = (
@@ -3578,15 +3454,15 @@
"js" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"jt" = (
/obj/structure/cult/pylon,
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/academy/academyaft)
"ju" = (
@@ -3604,9 +3480,8 @@
"jw" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"jx" = (
@@ -3614,9 +3489,8 @@
/obj/structure/window/reinforced,
/obj/item/batterer,
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"jy" = (
@@ -3674,12 +3548,10 @@
"jG" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/academy/academyaft)
"jH" = (
@@ -3749,8 +3621,8 @@
icon_state = "4-8"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -3784,8 +3656,8 @@
icon_state = "2-4"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"jX" = (
@@ -3844,22 +3716,19 @@
icon_state = "2-8"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"ke" = (
/obj/machinery/power/apc/noalarm{
dir = 1;
- environ = 3;
- equipment = 3;
locked = 0;
req_access = ""
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academygate)
@@ -3891,8 +3760,8 @@
"ki" = (
/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/window/reinforced{
@@ -3912,8 +3781,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kk" = (
@@ -3928,9 +3797,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kl" = (
@@ -3989,8 +3857,8 @@
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/window/reinforced{
dir = 5
@@ -4000,8 +3868,8 @@
"kv" = (
/mob/living/simple_animal/hostile/mimic/crate,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/academy/classrooms)
"kw" = (
@@ -4025,9 +3893,8 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-whitered (EAST)";
- icon_state = "whitered";
- dir = 4
+ dir = 4;
+ icon_state = "whitered"
},
/area/awaymission/academy/academyaft)
"kA" = (
@@ -4068,8 +3935,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kH" = (
@@ -4089,7 +3956,6 @@
icon_state = "1-2"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/carpet,
@@ -4103,8 +3969,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kM" = (
@@ -4121,8 +3987,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kO" = (
@@ -4131,8 +3997,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kP" = (
@@ -4142,8 +4008,8 @@
on = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "escape";
- dir = 6
+ dir = 6;
+ icon_state = "escape"
},
/area/awaymission/academy/classrooms)
"kQ" = (
@@ -4166,9 +4032,8 @@
icon_state = "1-2"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kT" = (
@@ -4191,8 +4056,8 @@
icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/academy/academyaft)
"kW" = (
@@ -4212,9 +4077,8 @@
icon_state = "1-4"
},
/turf/simulated/floor/plasteel/airless{
- tag = "icon-white (EAST)";
- icon_state = "white";
- dir = 4
+ dir = 4;
+ icon_state = "white"
},
/area/awaymission/academy/academyaft)
"kZ" = (
@@ -4277,8 +4141,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academygate)
@@ -4299,8 +4162,7 @@
/obj/structure/cable{
d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
@@ -4315,8 +4177,8 @@
/area/awaymission/academy/academygate)
"lj" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/academy/academygate)
@@ -4401,8 +4263,7 @@
/area/awaymission/academy/academyaft)
"lv" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
+ dir = 5
},
/turf/simulated/floor/plasteel{
icon_state = "hydrofloor"
@@ -4437,8 +4298,7 @@
"lA" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/carpet,
/area/awaymission/academy/academyaft)
@@ -10657,7 +10517,7 @@ bB
bB
gI
gZ
-he
+ic
hw
hc
hw
@@ -10787,12 +10647,12 @@ gx
ge
gV
gZ
-he
-he
+ic
+ic
hc
-he
+ic
hc
-he
+ic
hc
id
hp
@@ -11047,7 +10907,7 @@ dv
dv
gX
gZ
-hs
+hM
kX
hp
id
@@ -11821,7 +11681,7 @@ bE
fK
dc
dc
-gt
+db
dc
dc
dc
@@ -12711,7 +12571,7 @@ br
br
br
br
-cS
+bI
br
br
aF
@@ -15467,7 +15327,7 @@ aa
aa
aa
gZ
-hJ
+kh
lo
lq
lr
diff --git a/_maps/map_files/RandomZLevels/beach.dmm b/_maps/map_files/RandomZLevels/beach.dmm
index 3001121184a..701813bced0 100644
--- a/_maps/map_files/RandomZLevels/beach.dmm
+++ b/_maps/map_files/RandomZLevels/beach.dmm
@@ -18,10 +18,6 @@
},
/turf/simulated/floor/beach/away/water/deep/sand_floor,
/area/awaymission/undersea)
-"af" = (
-/obj/structure/constructshell,
-/turf/simulated/floor/beach/away/water/deep/wood_floor,
-/area/awaymission/undersea)
"ag" = (
/obj/structure/chair/wood/wings,
/turf/simulated/floor/beach/away/water/deep/wood_floor,
@@ -112,10 +108,7 @@
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aC" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aD" = (
@@ -144,16 +137,12 @@
/area/awaymission/undersea)
"aI" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (EAST)";
- icon_state = "wooden_chair_wings";
dir = 4
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aJ" = (
/obj/structure/chair/wood/wings{
- tag = "icon-wooden_chair_wings (WEST)";
- icon_state = "wooden_chair_wings";
dir = 8
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
@@ -169,15 +158,12 @@
"aM" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/beach/away/water/deep/wood_floor,
/area/awaymission/undersea)
"aN" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -233,10 +219,7 @@
/turf/simulated/floor/beach/away/water/deep/sand_floor,
/area/awaymission/undersea)
"aY" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/water/deep/sand_floor,
/area/awaymission/undersea)
"aZ" = (
@@ -256,10 +239,8 @@
"bc" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -269,10 +250,8 @@
/area/awaymission/beach)
"be" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -282,20 +261,16 @@
/area/awaymission/beach)
"bg" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bh" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -310,28 +285,22 @@
/area/awaymission/beach)
"bk" = (
/obj/effect/decal/snow/sand/surround{
- tag = "icon-gravsnow_surround (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_surround";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bl" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bm" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -343,10 +312,8 @@
/area/awaymission/beach)
"bo" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/grass,
/area/awaymission/beach)
@@ -358,28 +325,22 @@
/area/awaymission/beach)
"bq" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/grass,
/area/awaymission/beach)
"br" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bs" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -390,19 +351,15 @@
"bu" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
"bv" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
@@ -413,19 +370,15 @@
"bx" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 9
+ dir = 9;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"by" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -436,30 +389,24 @@
"bA" = (
/obj/structure/flora/ausbushes/genericbush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bB" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bC" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -483,29 +430,23 @@
"bH" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"bI" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand/dense,
/area/awaymission/beach)
"bJ" = (
/obj/effect/overlay/palmtree_l,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -521,10 +462,8 @@
"bM" = (
/obj/structure/flora/ausbushes/sunnybush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -627,10 +566,8 @@
/obj/effect/overlay/palmtree_r,
/obj/effect/overlay/coconut,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -695,10 +632,8 @@
"cs" = (
/obj/structure/flora/ausbushes/reedbush,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 5
+ dir = 5;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -737,10 +672,8 @@
/area/awaymission/beach)
"cB" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/effect/overlay/palmtree_r,
/turf/simulated/floor/beach/away/sand,
@@ -755,46 +688,35 @@
"cG" = (
/obj/structure/flora/ausbushes/ppflowers,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cJ" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/structure/closet/athletic_mixed,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cK" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/obj/effect/overlay/palmtree_l,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cL" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"cN" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (EAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 4
+ dir = 4;
+ name = "rough sand"
},
/obj/item/clothing/shoes/sandal,
/obj/item/clothing/shoes/sandal,
@@ -811,8 +733,6 @@
/area/awaymission/beach)
"cS" = (
/obj/structure/closet/gmcloset{
- icon_closed = "black";
- icon_state = "black";
name = "formal wardrobe"
},
/turf/simulated/floor/wood,
@@ -909,10 +829,8 @@
/area/awaymission/beach)
"do" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/obj/structure/flora/ausbushes/sunnybush,
/turf/simulated/floor/beach/away/sand,
@@ -948,18 +866,13 @@
"dz" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHWEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 10
+ dir = 10;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
"dA" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/turf/simulated/floor/wood,
/area/awaymission/beach)
"dB" = (
@@ -990,10 +903,8 @@
/area/awaymission/beach)
"dH" = (
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (NORTH)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 1
+ dir = 1;
+ name = "rough sand"
},
/obj/structure/chair/stool/bar,
/turf/simulated/floor/beach/away/sand,
@@ -1041,10 +952,8 @@
"dP" = (
/obj/effect/overlay/palmtree_r,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (SOUTHEAST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 6
+ dir = 6;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -1057,7 +966,6 @@
/area/awaymission/beach)
"dR" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/chair/comfy/shuttle{
@@ -1067,8 +975,7 @@
/area/awaymission/beach)
"dS" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/obj/structure/chair/comfy/shuttle{
dir = 8
@@ -1078,10 +985,8 @@
"dT" = (
/obj/effect/overlay/palmtree_l,
/obj/effect/decal/snow/sand/edge{
- tag = "icon-gravsnow_corner (WEST)";
- name = "rough sand";
- icon_state = "gravsnow_corner";
- dir = 8
+ dir = 8;
+ name = "rough sand"
},
/turf/simulated/floor/beach/away/sand,
/area/awaymission/beach)
@@ -46312,7 +46217,7 @@ ad
ad
ad
ah
-af
+ah
ah
ah
ar
@@ -46823,7 +46728,7 @@ av
av
ad
ad
-af
+ah
ah
ah
ah
@@ -48108,7 +48013,7 @@ av
av
ad
ad
-af
+ah
ah
ah
ah
@@ -48625,7 +48530,7 @@ ad
ad
ad
ah
-af
+ah
ah
ah
ah
diff --git a/_maps/map_files/RandomZLevels/blackmarketpackers.dmm b/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
index d4015627b27..0d9df07e897 100644
--- a/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
+++ b/_maps/map_files/RandomZLevels/blackmarketpackers.dmm
@@ -122,7 +122,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -198,9 +197,9 @@
/area/awaymission/BMPship/Gate)
"br" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -208,7 +207,6 @@
equipment = 0;
lighting = 0;
locked = 0;
- operating = 1;
req_access = ""
},
/obj/effect/decal/warning_stripes/north,
@@ -287,7 +285,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/west,
@@ -311,22 +308,12 @@
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Gate)
-"bO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plating,
-/area/awaymission/BMPship/Aft)
"bQ" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Fore)
"bR" = (
/turf/simulated/floor/plasteel{
- tag = "icon-wood-broken";
icon_state = "wood-broken"
},
/area/awaymission/BMPship/Fore)
@@ -386,7 +373,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated,
@@ -411,17 +397,15 @@
"cg" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTH)";
- icon_state = "carpetside";
- dir = 1
+ dir = 1;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ci" = (
/obj/machinery/door/airlock/silver,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTH)";
- icon_state = "carpetside";
- dir = 1
+ dir = 1;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"cl" = (
@@ -432,8 +416,8 @@
calibrated = 0
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Gate)
@@ -455,7 +439,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/machinery/gateway{
@@ -494,14 +477,13 @@
/area/awaymission/BMPship/Gate)
"cB" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"cC" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -513,7 +495,6 @@
req_access = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -532,9 +513,8 @@
/area/awaymission/BMPship/Midship)
"cF" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (WEST)";
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"cG" = (
@@ -555,9 +535,7 @@
},
/area/awaymission/BMPship/Midship)
"cI" = (
-/obj/structure/sink{
- dir = 2
- },
+/obj/structure/sink,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -572,9 +550,8 @@
/area/awaymission/BMPship/Midship)
"cK" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (EAST)";
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"cM" = (
@@ -586,7 +563,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -595,7 +571,6 @@
/obj/item/kitchen/knife/butcher,
/obj/item/reagent_containers/food/snacks/meat,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -608,7 +583,6 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -616,7 +590,6 @@
/obj/structure/table,
/obj/machinery/kitchen_machine/microwave,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -655,16 +628,14 @@
/area/awaymission/BMPship/Midship)
"cW" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-13 (EAST)";
- icon_state = "carpet15-13";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-13"
},
/area/awaymission/BMPship/Fore)
"cX" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"cY" = (
@@ -672,13 +643,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"cZ" = (
@@ -689,7 +658,6 @@
/area/awaymission/BMPship/Midship)
"db" = (
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -701,19 +669,9 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
-"de" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"dg" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
@@ -722,9 +680,8 @@
/area/awaymission/BMPship/Midship)
"dh" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-14 (EAST)";
- icon_state = "carpet15-14";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-14"
},
/area/awaymission/BMPship/Fore)
"di" = (
@@ -770,9 +727,8 @@
/area/awaymission/BMPship/Aft)
"dp" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"dq" = (
@@ -786,7 +742,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -798,9 +753,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"dt" = (
@@ -810,19 +764,17 @@
"du" = (
/obj/structure/window/reinforced,
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
"dv" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -832,7 +784,6 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
@@ -845,15 +796,14 @@
"dy" = (
/obj/machinery/door/window,
/turf/simulated/floor/plasteel{
- tag = "icon-barber";
icon_state = "barber"
},
/area/awaymission/BMPship/Midship)
"dz" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
@@ -888,14 +838,13 @@
/area/awaymission/BMPship/Aft)
"dE" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/power/apc/noalarm{
dir = 1;
environ = 0;
- equipment = 3;
locked = 0;
operating = 0;
req_access = ""
@@ -922,9 +871,8 @@
name = "Captain's log entry"
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet6-0 (EAST)";
- icon_state = "carpet6-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet6-0"
},
/area/awaymission/BMPship/Fore)
"dI" = (
@@ -932,17 +880,15 @@
anchored = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet14-8 (EAST)";
- icon_state = "carpet14-8";
- dir = 4
+ dir = 4;
+ icon_state = "carpet14-8"
},
/area/awaymission/BMPship/Fore)
"dJ" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet14-2 (EAST)";
- icon_state = "carpet14-2";
- dir = 4
+ dir = 4;
+ icon_state = "carpet14-2"
},
/area/awaymission/BMPship/Fore)
"dK" = (
@@ -953,27 +899,23 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"dL" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet10-0 (EAST)";
- icon_state = "carpet10-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet10-0"
},
/area/awaymission/BMPship/Fore)
"dM" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHWEST)";
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/BMPship/Midship)
@@ -981,15 +923,13 @@
/obj/machinery/seed_extractor,
/obj/item/seeds/plump/walkingmushroom,
/turf/simulated/floor/plasteel{
- tag = "icon-green";
icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dP" = (
/turf/simulated/floor/plasteel{
- tag = "icon-green (SOUTHEAST)";
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/BMPship/Midship)
"dR" = (
@@ -1009,18 +949,6 @@
icon_state = "bar"
},
/area/awaymission/BMPship/Midship)
-"dS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "bar"
- },
-/area/awaymission/BMPship/Midship)
"dT" = (
/obj/structure/cable{
d1 = 2;
@@ -1054,7 +982,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -1076,7 +1003,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1086,7 +1012,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -1102,7 +1027,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/cable{
@@ -1126,8 +1050,6 @@
/area/awaymission/BMPship/Aft)
"eb" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -1137,9 +1059,7 @@
/area/awaymission/BMPship/Aft)
"ec" = (
/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion";
- tag = "icon-propulsion (WEST)"
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/awaymission/BMPship/Aft)
@@ -1149,38 +1069,33 @@
/area/awaymission/BMPship/Aft)
"ee" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"ef" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet5-0 (EAST)";
- icon_state = "carpet5-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet5-0"
},
/area/awaymission/BMPship/Fore)
"eg" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet13-4 (EAST)";
- icon_state = "carpet13-4";
- dir = 4
+ dir = 4;
+ icon_state = "carpet13-4"
},
/area/awaymission/BMPship/Fore)
"eh" = (
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet13-1 (EAST)";
- icon_state = "carpet13-1";
- dir = 4
+ dir = 4;
+ icon_state = "carpet13-1"
},
/area/awaymission/BMPship/Fore)
"ei" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
@@ -1190,16 +1105,14 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet (EAST)";
- icon_state = "carpet";
- dir = 4
+ dir = 4;
+ icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"ej" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpet9-0 (EAST)";
- icon_state = "carpet9-0";
- dir = 4
+ dir = 4;
+ icon_state = "carpet9-0"
},
/area/awaymission/BMPship/Fore)
"ek" = (
@@ -1207,7 +1120,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1276,7 +1188,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -1294,7 +1205,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -1302,9 +1212,8 @@
"ev" = (
/obj/item/shard,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTHEAST)";
- icon_state = "carpetside";
- dir = 5
+ dir = 5;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ew" = (
@@ -1312,9 +1221,8 @@
anchored = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (NORTHWEST)";
- icon_state = "carpetside";
- dir = 9
+ dir = 9;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"ex" = (
@@ -1331,7 +1239,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet";
icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
@@ -1352,13 +1259,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (EAST)";
- icon_state = "carpetside";
- dir = 4
+ dir = 4;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Midship)
"eC" = (
@@ -1392,15 +1297,15 @@
"eE" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Midship)
"eF" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
dir = 1;
@@ -1484,7 +1389,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1493,8 +1397,8 @@
/area/awaymission/BMPship/Aft)
"eP" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/machinery/power/terminal{
dir = 8
@@ -1535,13 +1439,13 @@
outputting = 0
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/BMPship/Aft)
@@ -1563,17 +1467,15 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet11-12 (EAST)";
- icon_state = "carpet11-12";
- dir = 4
+ dir = 4;
+ icon_state = "carpet11-12"
},
/area/awaymission/BMPship/Fore)
"eW" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet7-3 (EAST)";
- icon_state = "carpet7-3";
- dir = 4
+ dir = 4;
+ icon_state = "carpet7-3"
},
/area/awaymission/BMPship/Fore)
"eX" = (
@@ -1581,22 +1483,8 @@
icon_state = "medium"
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-14 (EAST)";
- icon_state = "carpet15-14";
- dir = 4
- },
-/area/awaymission/BMPship/Fore)
-"eZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-14"
},
/area/awaymission/BMPship/Fore)
"fa" = (
@@ -1701,7 +1589,6 @@
"fq" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right"
},
/turf/simulated/floor/plating,
@@ -1711,13 +1598,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-13 (EAST)";
- icon_state = "carpet15-13";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-13"
},
/area/awaymission/BMPship/Fore)
"fs" = (
@@ -1734,9 +1619,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"fu" = (
@@ -1747,9 +1631,8 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"fv" = (
@@ -1757,13 +1640,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-7 (EAST)";
- icon_state = "carpet15-7";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-7"
},
/area/awaymission/BMPship/Fore)
"fw" = (
@@ -1788,7 +1669,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -1850,16 +1730,14 @@
/area/awaymission/BMPship/Aft)
"fE" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (SOUTHEAST)";
- icon_state = "carpetside";
- dir = 6
+ dir = 6;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"fF" = (
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (SOUTHWEST)";
- icon_state = "carpetside";
- dir = 10
+ dir = 10;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
"fG" = (
@@ -1873,27 +1751,23 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-11 (EAST)";
- icon_state = "carpet15-11";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-11"
},
/area/awaymission/BMPship/Fore)
"fJ" = (
/obj/machinery/door/airlock/silver,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside (EAST)";
- icon_state = "carpetside";
- dir = 4
+ dir = 4;
+ icon_state = "carpetside"
},
/area/awaymission/BMPship/Midship)
"fK" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
icon_state = "right"
},
/turf/simulated/floor/plating,
@@ -1927,7 +1801,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -1963,18 +1836,6 @@
icon_state = "showroomfloor"
},
/area/awaymission/BMPship/Aft)
-"fR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- icon_state = "showroomfloor"
- },
-/area/awaymission/BMPship/Aft)
"fS" = (
/obj/machinery/power/smes/magical{
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
@@ -2005,13 +1866,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"fW" = (
@@ -2028,22 +1887,19 @@
/area/awaymission/BMPship/Aft)
"fY" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet (EAST)";
- icon_state = "carpet";
- dir = 4
+ dir = 4;
+ icon_state = "carpet"
},
/area/awaymission/BMPship/Fore)
"fZ" = (
/obj/structure/closet,
/turf/simulated/floor/plasteel{
- tag = "icon-carpet15-15 (EAST)";
- icon_state = "carpet15-15";
- dir = 4
+ dir = 4;
+ icon_state = "carpet15-15"
},
/area/awaymission/BMPship/Fore)
"ga" = (
@@ -2085,7 +1941,6 @@
"gh" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside";
icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
@@ -2094,12 +1949,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- tag = "icon-carpetside";
icon_state = "carpetside"
},
/area/awaymission/BMPship/Fore)
@@ -2184,7 +2037,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -2221,7 +2073,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2283,7 +2134,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -2336,7 +2186,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2432,7 +2281,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2533,10 +2381,10 @@
/area/awaymission)
"hG" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/computer/monitor,
+/obj/machinery/computer/monitor/secret,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/awaymission/BMPship/Aft)
@@ -2597,16 +2445,6 @@
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel,
/area/awaymission/BMPship/Aft)
-"hQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0;
- tag = ""
- },
-/turf/simulated/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"hR" = (
/obj/structure/cable{
d2 = 8;
@@ -2717,8 +2555,8 @@
/area/awaymission)
"ij" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating/airless,
/area/awaymission)
@@ -2728,7 +2566,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2738,7 +2575,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -2748,7 +2584,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -2785,8 +2620,7 @@
"iu" = (
/obj/machinery/door/airlock/titanium,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iv" = (
@@ -2797,8 +2631,7 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iw" = (
@@ -2806,8 +2639,7 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"ix" = (
@@ -2824,12 +2656,9 @@
/turf/simulated/floor/plasteel,
/area/awaymission/BMPship/Aft)
"iB" = (
-/obj/structure/sink{
- dir = 2
- },
+/obj/structure/sink,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/BMPship/Aft)
"iD" = (
@@ -2983,7 +2812,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2993,7 +2821,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/item/hand_labeler,
@@ -3004,7 +2831,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_y = 0;
tag = ""
},
/obj/item/storage/box,
@@ -10147,7 +9973,7 @@ dr
dK
ei
ex
-eZ
+fV
fu
cB
fY
@@ -12094,7 +11920,7 @@ am
cQ
db
dy
-dS
+ek
cM
hV
cM
@@ -12224,7 +12050,7 @@ am
cP
dd
dw
-dS
+ek
eq
eG
fi
@@ -12354,7 +12180,7 @@ am
cM
cM
cM
-dS
+ek
er
eI
er
@@ -12484,7 +12310,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12614,7 +12440,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12744,7 +12570,7 @@ jq
cM
cM
cM
-dS
+ek
er
eG
er
@@ -12874,7 +12700,7 @@ am
cS
dg
cM
-dS
+ek
er
eG
er
@@ -12883,7 +12709,7 @@ cM
er
go
er
-dS
+ek
cM
cl
gY
@@ -13004,7 +12830,7 @@ am
cR
dg
cM
-dS
+ek
er
eM
er
@@ -13013,7 +12839,7 @@ cM
er
eM
er
-dS
+ek
cM
cl
hL
@@ -13134,7 +12960,7 @@ am
cU
cM
cM
-dS
+ek
er
eN
er
@@ -13143,7 +12969,7 @@ cM
er
eN
er
-dS
+ek
hd
cl
hM
@@ -13399,7 +13225,7 @@ cM
eK
fb
cM
-dS
+ek
gc
gq
cM
@@ -13659,7 +13485,7 @@ dj
dj
fl
dj
-fR
+gI
fl
dj
dj
@@ -14315,7 +14141,7 @@ gr
gJ
eo
he
-de
+es
hK
ic
in
@@ -14446,7 +14272,7 @@ dj
gV
ai
hu
-hQ
+im
dq
dq
dq
@@ -14576,7 +14402,7 @@ gK
gX
ai
hr
-hQ
+im
ie
dq
ie
@@ -14706,7 +14532,7 @@ ai
ai
ai
hs
-hQ
+im
dq
dq
dq
@@ -14836,7 +14662,7 @@ hh
js
ai
ht
-hQ
+im
dq
ai
iu
@@ -14952,8 +14778,8 @@ cs
jo
gn
jB
-de
-de
+es
+es
dX
es
eO
@@ -15475,7 +15301,7 @@ aa
ai
hw
ea
-bO
+eu
eU
eu
fj
diff --git a/_maps/map_files/RandomZLevels/centcomAway.dmm b/_maps/map_files/RandomZLevels/centcomAway.dmm
index 640d9c18651..7da7dc567ee 100644
--- a/_maps/map_files/RandomZLevels/centcomAway.dmm
+++ b/_maps/map_files/RandomZLevels/centcomAway.dmm
@@ -46,21 +46,18 @@
req_access_txt = "101"
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/maint)
"ai" = (
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aj" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"ak" = (
@@ -69,26 +66,23 @@
"al" = (
/obj/structure/closet/chefcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"am" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"an" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ao" = (
@@ -96,18 +90,16 @@
/obj/item/reagent_containers/food/condiment/peppermill,
/obj/item/reagent_containers/food/condiment/saltshaker,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ap" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aq" = (
@@ -117,9 +109,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ar" = (
@@ -127,9 +118,8 @@
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"as" = (
@@ -140,9 +130,8 @@
},
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"at" = (
@@ -172,12 +161,10 @@
/area/awaymission/centcomAway/cafe)
"aw" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"ax" = (
@@ -187,9 +174,8 @@
/area/awaymission/centcomAway/cafe)
"ay" = (
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"az" = (
@@ -218,9 +204,8 @@
"aC" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aD" = (
@@ -252,12 +237,10 @@
/area/awaymission/centcomAway/cafe)
"aJ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aK" = (
@@ -277,7 +260,6 @@
"aL" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -286,8 +268,7 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"aN" = (
@@ -304,9 +285,8 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"aP" = (
@@ -315,8 +295,8 @@
/area/awaymission/centcomAway/maint)
"aQ" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"aR" = (
@@ -325,8 +305,8 @@
/area/awaymission/centcomAway/cafe)
"aS" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"aT" = (
@@ -365,7 +345,6 @@
"aX" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -376,7 +355,6 @@
/obj/structure/bed,
/obj/item/bedsheet,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -384,14 +362,12 @@
"aZ" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"ba" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plating,
@@ -420,45 +396,39 @@
"be" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bf" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bg" = (
/obj/structure/sink,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bh" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bi" = (
/obj/structure/table,
/obj/machinery/processor{
- pixel_x = 0;
pixel_y = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bj" = (
@@ -467,8 +437,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bk" = (
@@ -486,50 +456,45 @@
/area/space/nearstation)
"bn" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bo" = (
/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bp" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"bq" = (
/obj/machinery/door/airlock/freezer,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"br" = (
/obj/machinery/chem_dispenser,
/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bs" = (
/obj/machinery/chem_master,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bt" = (
@@ -544,9 +509,8 @@
/area/awaymission/centcomAway/hangar)
"bu" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHWEST)";
- icon_state = "vault";
- dir = 9
+ dir = 9;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bv" = (
@@ -557,8 +521,8 @@
/area/awaymission/centcomAway/cafe)
"bw" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -567,8 +531,8 @@
/area/awaymission/centcomAway/hangar)
"by" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -588,7 +552,6 @@
/area/awaymission/centcomAway/cafe)
"bC" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating,
@@ -596,15 +559,14 @@
"bE" = (
/obj/structure/closet/crate,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"bF" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bG" = (
@@ -612,12 +574,10 @@
name = "CondiMaster Neo"
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bH" = (
@@ -628,8 +588,7 @@
/area/awaymission/centcomAway/hangar)
"bI" = (
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bJ" = (
@@ -642,7 +601,6 @@
"bK" = (
/obj/structure/window/reinforced,
/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
dir = 1
},
/turf/simulated/floor/plating,
@@ -655,31 +613,27 @@
"bS" = (
/obj/structure/chair/comfy/brown,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"bT" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bV" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"bW" = (
/obj/structure/kitchenspike,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"bX" = (
@@ -692,26 +646,24 @@
"bZ" = (
/obj/machinery/gibber,
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"ca" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"cb" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/cafe)
"cc" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/solar{
id = "centcomawaysolar";
@@ -733,8 +685,7 @@
"cg" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 0
+ pixel_x = 2
},
/obj/item/storage/firstaid/regular{
pixel_x = -2;
@@ -795,7 +746,6 @@
/obj/item/paper_bin,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -803,7 +753,6 @@
/obj/item/clipboard,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -814,9 +763,8 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/window/southright,
/turf/simulated/floor/plasteel{
- tag = "icon-greenfull (NORTH)";
- icon_state = "greenfull";
- dir = 1
+ dir = 1;
+ icon_state = "greenfull"
},
/area/awaymission/centcomAway/cafe)
"cs" = (
@@ -826,8 +774,8 @@
/area/awaymission/centcomAway/cafe)
"ct" = (
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"cu" = (
@@ -841,7 +789,6 @@
"cv" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 0;
pixel_y = 3
},
/turf/simulated/floor/plasteel{
@@ -873,7 +820,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -949,7 +895,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating/airless,
@@ -959,7 +904,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -969,7 +913,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -992,7 +935,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1004,7 +946,6 @@
/area/awaymission/centcomAway/hangar)
"cQ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plating,
@@ -1017,7 +958,6 @@
/area/awaymission/centcomAway/hangar)
"cT" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plating,
@@ -1029,7 +969,6 @@
/obj/item/pen,
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1064,8 +1003,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"da" = (
@@ -1087,8 +1026,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
@@ -1119,12 +1057,11 @@
/area/awaymission/centcomAway/hangar)
"dj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dk" = (
@@ -1137,8 +1074,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
@@ -1151,7 +1087,6 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/yellow,
@@ -1162,15 +1097,11 @@
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaymission/centcomAway/hangar)
"dp" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
+/obj/machinery/sleeper,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaymission/centcomAway/hangar)
"dr" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/chair/comfy/shuttle{
@@ -1188,8 +1119,7 @@
"dt" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/maint)
"du" = (
@@ -1224,19 +1154,17 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/cafe)
"dz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHWEST)";
- icon_state = "vault";
- dir = 9
+ dir = 9;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dA" = (
@@ -1249,15 +1177,14 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/window/northright,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dC" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dD" = (
@@ -1274,35 +1201,30 @@
/area/awaymission/centcomAway/hangar)
"dG" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"dH" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dI" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dJ" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"dK" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1323,32 +1245,29 @@
"dN" = (
/obj/machinery/gibber,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"dO" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"dP" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"dQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -1361,8 +1280,7 @@
"dR" = (
/obj/structure/chair/stool/bar,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"dS" = (
@@ -1372,9 +1290,7 @@
/area/awaymission/centcomAway/hangar)
"dT" = (
/obj/machinery/door/window/northright{
- base_state = "right";
dir = 4;
- icon_state = "right";
name = "Security Desk";
req_access_txt = "103"
},
@@ -1391,7 +1307,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1450,20 +1365,18 @@
name = "CondiMaster Neo"
},
/turf/simulated/floor/plasteel{
- icon_state = "freezerfloor";
- dir = 2
+ icon_state = "freezerfloor"
},
/area/awaymission/centcomAway/cafe)
"ed" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"ee" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -1480,7 +1393,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/lattice/catwalk,
@@ -1494,11 +1406,9 @@
"ej" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1506,20 +1416,18 @@
/obj/machinery/chem_dispenser,
/obj/item/storage/box/beakers,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"el" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 8
+ dir = 8;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"em" = (
/obj/machinery/chem_master,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1538,24 +1446,20 @@
/obj/structure/table,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull";
icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/cafe)
"eq" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"er" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1578,18 +1482,15 @@
pixel_y = 28
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"eu" = (
/obj/structure/table,
/obj/machinery/processor{
- pixel_x = 0;
pixel_y = 10
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1604,14 +1505,12 @@
"ew" = (
/obj/structure/bed,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium,
/area/awaymission/centcomAway/hangar)
"ex" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium,
@@ -1623,7 +1522,6 @@
pixel_y = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1655,16 +1553,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/maint)
"eD" = (
/obj/machinery/door/airlock/hatch{
- name = "Rest Room";
- req_access_txt = "0"
+ name = "Rest Room"
},
/turf/simulated/floor/mineral/titanium,
/area/awaymission/centcomAway/hangar)
@@ -1714,9 +1610,7 @@
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
"eO" = (
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"eR" = (
/obj/machinery/power/apc/noalarm{
@@ -1729,26 +1623,24 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"eS" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"eT" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"eU" = (
@@ -1758,8 +1650,8 @@
/area/awaymission/centcomAway/general)
"eV" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/cafe)
"eW" = (
@@ -1771,7 +1663,6 @@
"eX" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/effect/decal/warning_stripes/west,
@@ -1808,17 +1699,15 @@
"fe" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid11";
- name = "plating";
- icon_state = "asteroid11"
+ icon_state = "asteroid11";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"ff" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid2";
- name = "plating";
- icon_state = "asteroid2"
+ icon_state = "asteroid2";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fg" = (
@@ -1846,9 +1735,8 @@
"fi" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fj" = (
@@ -1857,9 +1745,8 @@
"fk" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid3";
- name = "plating";
- icon_state = "asteroid3"
+ icon_state = "asteroid3";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fl" = (
@@ -1873,24 +1760,21 @@
"fn" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid10";
- name = "plating";
- icon_state = "asteroid10"
+ icon_state = "asteroid10";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fo" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid9";
- name = "plating";
- icon_state = "asteroid9"
+ icon_state = "asteroid9";
+ name = "plating"
},
/area/awaymission/centcomAway/cafe)
"fp" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"fq" = (
@@ -1898,19 +1782,16 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "bar";
- dir = 2
+ icon_state = "bar"
},
/area/awaymission/centcomAway/cafe)
"fr" = (
/obj/structure/table,
/obj/item/radio/off,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -1918,14 +1799,12 @@
"fs" = (
/obj/structure/closet/chefcloset,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
"ft" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1935,7 +1814,6 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1944,7 +1822,6 @@
/obj/item/reagent_containers/food/condiment/peppermill,
/obj/item/reagent_containers/food/condiment/saltshaker,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1952,7 +1829,6 @@
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1969,7 +1845,6 @@
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -1981,7 +1856,6 @@
/obj/item/reagent_containers/glass/beaker,
/obj/item/reagent_containers/food/condiment/enzyme,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -2038,7 +1912,6 @@
},
/obj/item/kitchen/rollingpin,
/turf/simulated/floor/plasteel{
- tag = "icon-redfull";
icon_state = "redfull"
},
/area/awaymission/centcomAway/cafe)
@@ -2049,9 +1922,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"fQ" = (
/turf/simulated/floor/carpet,
@@ -2102,37 +1973,31 @@
/area/awaymission/centcomAway/courtroom)
"fY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"fZ" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"ga" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"gc" = (
@@ -2146,9 +2011,7 @@
dir = 1;
in_use = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ge" = (
/turf/simulated/floor/plasteel{
@@ -2173,9 +2036,7 @@
/area/awaymission/centcomAway/general)
"gh" = (
/obj/machinery/door/window/eastright,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gi" = (
/obj/machinery/door/window/northleft,
@@ -2257,13 +2118,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"gv" = (
@@ -2317,10 +2176,7 @@
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
"gA" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
- },
+/obj/machinery/sleeper,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -2397,9 +2253,7 @@
/area/awaymission/centcomAway/general)
"gL" = (
/obj/machinery/pdapainter,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gM" = (
/obj/machinery/clonepod,
@@ -2417,9 +2271,7 @@
/obj/machinery/recharger{
pixel_y = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gO" = (
/obj/machinery/dna_scannernew,
@@ -2444,15 +2296,11 @@
/area/awaymission/centcomAway/maint)
"gQ" = (
/obj/structure/filingcabinet,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gR" = (
/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"gS" = (
/obj/machinery/light,
@@ -2460,7 +2308,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2504,7 +2351,6 @@
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/mineral/titanium/blue,
@@ -2535,7 +2381,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -2556,9 +2401,7 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hi" = (
/obj/structure/cable{
@@ -2567,16 +2410,13 @@
icon_state = "2-8";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hj" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"hk" = (
@@ -2594,44 +2434,34 @@
/area/awaymission/centcomAway/general)
"hl" = (
/obj/machinery/computer/robotics,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hm" = (
/obj/structure/chair/office/dark{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hn" = (
/obj/structure/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ho" = (
/obj/machinery/computer/med_data,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hp" = (
/obj/machinery/door/airlock/centcom,
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"hq" = (
@@ -2660,8 +2490,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall,
/area/awaymission/centcomAway/courtroom)
@@ -2694,21 +2523,15 @@
/area/awaymission/centcomAway/general)
"hz" = (
/obj/machinery/computer/card,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hA" = (
/obj/structure/chair/office/dark,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hB" = (
/obj/machinery/computer/crew,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hC" = (
/obj/machinery/vending/cigarette,
@@ -2767,41 +2590,33 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hN" = (
/obj/machinery/computer/secure_data,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hO" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/computer/monitor,
+/obj/machinery/computer/monitor/secret,
/turf/simulated/floor/plasteel{
icon_state = "yellow"
},
/area/awaymission/centcomAway/general)
"hP" = (
/obj/machinery/computer/security,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
@@ -2810,16 +2625,14 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/centcomAway/general)
"hR" = (
/obj/structure/table/reinforced,
/obj/item/taperecorder,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"hS" = (
/obj/structure/grille,
@@ -2871,22 +2684,19 @@
/area/awaymission/centcomAway/courtroom)
"hY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (NORTH)";
- icon_state = "blackcorner";
- dir = 1
+ dir = 1;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"hZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (EAST)";
- icon_state = "blackcorner";
- dir = 4
+ dir = 4;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"ia" = (
@@ -2965,12 +2775,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"il" = (
/obj/machinery/power/terminal,
@@ -2978,9 +2785,7 @@
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"im" = (
/obj/machinery/door/airlock/centcom,
@@ -3009,9 +2814,7 @@
icon_state = "1-2";
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ip" = (
/obj/structure/reagent_dispensers/watertank,
@@ -3027,12 +2830,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ir" = (
/obj/machinery/power/apc/noalarm{
@@ -3045,19 +2845,16 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
+ icon_state = "1-2"
},
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"is" = (
/obj/structure/closet,
@@ -3082,9 +2879,7 @@
dir = 1
},
/obj/item/storage/box/monkeycubes,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iw" = (
/obj/machinery/computer/scan_consolenew,
@@ -3108,7 +2903,6 @@
/area/awaymission/centcomAway/courtroom)
"iz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3133,14 +2927,12 @@
/area/awaymission/centcomAway/courtroom)
"iD" = (
/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iE" = (
/turf/simulated/floor/plasteel{
- icon_state = "yellow";
- dir = 10
+ dir = 10;
+ icon_state = "yellow"
},
/area/awaymission/centcomAway/general)
"iF" = (
@@ -3191,16 +2983,13 @@
charge = 5e+006;
input_level = 200000;
inputting = 0;
- output_level = 100000;
- outputting = 1
+ output_level = 100000
},
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iM" = (
/turf/simulated/floor/mech_bay_recharge_floor,
@@ -3232,7 +3021,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3269,9 +3057,7 @@
icon_state = "1-4";
tag = "90Curve"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"iV" = (
/obj/machinery/light{
@@ -3282,7 +3068,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3302,7 +3087,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -3315,13 +3099,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purplecorner (EAST)";
- icon_state = "purplecorner";
- dir = 4
+ dir = 4;
+ icon_state = "purplecorner"
},
/area/awaymission/centcomAway/general)
"ja" = (
@@ -3354,12 +3136,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jd" = (
/obj/structure/sign/lifestar,
@@ -3374,13 +3153,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
+ dir = 1;
+ icon_state = "purple"
},
/area/awaymission/centcomAway/general)
"jf" = (
@@ -3388,18 +3165,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-purple (NORTH)";
- icon_state = "purple";
- dir = 1
+ dir = 1;
+ icon_state = "purple"
},
/area/awaymission/centcomAway/general)
"jg" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3422,7 +3196,6 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -3449,39 +3222,31 @@
start_charge = 100
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
-"jm" = (
-/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 8
- },
-/area/awaymission/centcomAway/general)
"jn" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/wood,
/area/awaymission/centcomAway/courtroom)
"jo" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jp" = (
@@ -3489,8 +3254,8 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jq" = (
@@ -3501,8 +3266,8 @@
tag = "90Curve"
},
/turf/simulated/floor/plasteel{
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"jr" = (
@@ -3510,7 +3275,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/wall/r_wall,
@@ -3523,7 +3287,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -3532,37 +3295,31 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/southwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ju" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"jv" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"jw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/southeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jx" = (
/obj/structure/table/reinforced,
@@ -3575,7 +3332,6 @@
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/carpet,
@@ -3593,9 +3349,7 @@
icon_state = "1-8"
},
/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jB" = (
/obj/structure/cable{
@@ -3611,41 +3365,33 @@
tag = ""
},
/obj/effect/decal/warning_stripes/east,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jC" = (
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 4
+ dir = 4;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"jD" = (
/obj/machinery/photocopier,
/obj/item/paper/ccaMemo,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jE" = (
/obj/structure/table/reinforced,
/obj/item/hand_labeler,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jF" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"jG" = (
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 1
+ dir = 1;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"jH" = (
@@ -3699,7 +3445,6 @@
/area/awaymission/centcomAway/courtroom)
"jO" = (
/obj/machinery/crema_switch{
- pixel_x = 0;
pixel_y = 25
},
/turf/simulated/floor/plasteel{
@@ -3730,13 +3475,11 @@
/area/awaymission/centcomAway/general)
"jS" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (WEST)";
- icon_state = "blackcorner";
- dir = 8
+ dir = 8;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"jT" = (
@@ -3756,17 +3499,14 @@
/area/awaymission/centcomAway/cafe)
"jV" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner";
icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
@@ -3778,7 +3518,6 @@
/area/awaymission/centcomAway/general)
"jX" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/wood,
@@ -3786,7 +3525,6 @@
"jY" = (
/obj/structure/table,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/effect/decal/warning_stripes/north,
@@ -3833,13 +3571,10 @@
"kf" = (
/obj/machinery/door/window/northright,
/obj/machinery/door/window/southleft,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kg" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -3849,23 +3584,17 @@
"kh" = (
/obj/structure/table/reinforced,
/obj/item/folder/red,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ki" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/PDAs,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kj" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kk" = (
/obj/machinery/door/airlock/centcom{
@@ -3879,9 +3608,7 @@
/area/awaymission/centcomAway/courtroom)
"kl" = (
/obj/effect/decal/warning_stripes/northwestcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kn" = (
/obj/structure/table,
@@ -3893,7 +3620,6 @@
/area/awaymission/centcomAway/hangar)
"ko" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -3959,9 +3685,7 @@
/area/awaymission/centcomAway/hangar)
"ku" = (
/obj/structure/chair,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kv" = (
/obj/structure/table/reinforced,
@@ -3972,8 +3696,8 @@
/area/awaymission/centcomAway/general)
"kw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 1
+ dir = 1;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"kx" = (
@@ -3984,13 +3708,10 @@
/area/awaymission/centcomAway/general)
"ky" = (
/obj/machinery/door/airlock/centcom,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"kz" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -4001,13 +3722,10 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/northeastcorner,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kB" = (
/obj/structure/rack,
@@ -4044,23 +3762,13 @@
/obj/structure/chair/comfy/beige{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
-/area/awaymission/centcomAway/general)
-"kG" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "greencorner"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kH" = (
/obj/structure/chair{
dir = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"kI" = (
/obj/machinery/gateway{
@@ -4107,12 +3815,6 @@
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
-"kP" = (
-/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "green"
- },
-/area/awaymission/centcomAway/general)
"kQ" = (
/obj/machinery/gateway{
dir = 10
@@ -4134,7 +3836,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
@@ -4186,7 +3887,6 @@
/obj/item/flash,
/obj/item/flash,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4194,7 +3894,6 @@
/obj/structure/table,
/obj/item/mmi,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4206,7 +3905,6 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/general)
@@ -4216,11 +3914,9 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner";
icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
@@ -4229,13 +3925,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
- tag = "icon-blackcorner (WEST)";
- icon_state = "blackcorner";
- dir = 8
+ dir = 8;
+ icon_state = "blackcorner"
},
/area/awaymission/centcomAway/general)
"lc" = (
@@ -4252,15 +3946,11 @@
d2 = 8;
icon_state = "1-8"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"le" = (
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lf" = (
/obj/structure/table/wood,
@@ -4281,17 +3971,15 @@
"lh" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"li" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/wall/r_wall,
/area/awaymission/centcomAway/general)
@@ -4309,17 +3997,13 @@
/obj/structure/chair{
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ll" = (
/obj/structure/chair{
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lm" = (
/mob/living/simple_animal/hostile/russian/ranged{
@@ -4330,8 +4014,8 @@
"ln" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/hangar)
@@ -4341,17 +4025,15 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lp" = (
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lq" = (
@@ -4384,8 +4066,7 @@
},
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"lv" = (
@@ -4432,9 +4113,8 @@
/area/awaymission/centcomAway/general)
"lA" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lB" = (
@@ -4456,24 +4136,20 @@
name = "XCC Main Access Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"lF" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lG" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lH" = (
@@ -4500,8 +4176,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -4520,17 +4195,15 @@
/area/awaymission/centcomAway/hangar)
"lL" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lM" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand3 (WEST)";
- icon_state = "ironsand3";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand3"
},
/area/awaymission/centcomAway/general)
"lN" = (
@@ -4538,9 +4211,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lO" = (
@@ -4548,9 +4220,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lP" = (
@@ -4567,8 +4238,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 9
+ dir = 9;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"lR" = (
@@ -4591,20 +4262,19 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 5
+ dir = 5;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"lT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "greencorner";
- dir = 4
+ dir = 4;
+ icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
"lU" = (
@@ -4613,33 +4283,29 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lV" = (
/obj/structure/closet/wardrobe/red,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lW" = (
/obj/structure/mecha_wreckage/seraph,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lX" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"lY" = (
@@ -4647,45 +4313,41 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"lZ" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand11 (WEST)";
- icon_state = "ironsand11";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand11"
},
/area/awaymission/centcomAway/general)
"ma" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 9
+ dir = 9;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mb" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 5
+ dir = 5;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mc" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"md" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand9 (WEST)";
- icon_state = "ironsand9";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand9"
},
/area/awaymission/centcomAway/general)
"me" = (
@@ -4765,9 +4427,8 @@
/area/awaymission/centcomAway/general)
"mm" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mn" = (
@@ -4777,35 +4438,31 @@
pixel_x = 25
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mo" = (
/turf/simulated/floor/plasteel{
- tag = "icon-ironsand4 (WEST)";
- icon_state = "ironsand4";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "ironsand4"
},
/area/awaymission/centcomAway/general)
"mp" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 10
+ dir = 10;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mq" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mr" = (
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"ms" = (
/obj/structure/table/reinforced,
@@ -4817,9 +4474,8 @@
"mt" = (
/obj/structure/closet/secure_closet/personal,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mu" = (
@@ -4827,9 +4483,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mv" = (
@@ -4842,11 +4497,9 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/centcomAway/general)
@@ -4886,23 +4539,19 @@
/obj/item/stamp/granted,
/obj/structure/table/reinforced,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"mE" = (
/obj/machinery/igniter/on,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"mF" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (WEST)";
- icon_state = "vault";
- dir = 8
+ dir = 8;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
"mG" = (
@@ -4925,7 +4574,6 @@
/obj/structure/table,
/obj/item/firstaid_arm_assembly,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4946,7 +4594,6 @@
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4954,7 +4601,6 @@
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- tag = "icon-vault";
icon_state = "vault"
},
/area/awaymission/centcomAway/hangar)
@@ -4970,8 +4616,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -4979,32 +4624,28 @@
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"mP" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid10";
- name = "plating";
- icon_state = "asteroid10"
+ icon_state = "asteroid10";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mQ" = (
/obj/structure/sink/puddle,
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"mR" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid4";
- name = "plating";
- icon_state = "asteroid4"
+ icon_state = "asteroid4";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mS" = (
@@ -5012,8 +4653,8 @@
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mT" = (
@@ -5021,8 +4662,8 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"mU" = (
@@ -5044,17 +4685,15 @@
"mW" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mX" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid9";
- name = "plating";
- icon_state = "asteroid9"
+ icon_state = "asteroid9";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"mY" = (
@@ -5068,17 +4707,15 @@
"mZ" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid11";
- name = "plating";
- icon_state = "asteroid11"
+ icon_state = "asteroid11";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"na" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid8";
- name = "plating";
- icon_state = "asteroid8"
+ icon_state = "asteroid8";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nb" = (
@@ -5097,42 +4734,35 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nd" = (
/obj/machinery/vending/coffee,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"ne" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nf" = (
/obj/structure/table,
/obj/item/paper/pamphlet/ccaInfo,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ng" = (
/obj/machinery/door/poddoor{
@@ -5148,7 +4778,6 @@
/area/awaymission/centcomAway/hangar)
"ni" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -5160,71 +4789,58 @@
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "asteroid8";
- name = "sand";
- tag = "icon-asteroid8 (SOUTHEAST)"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"nk" = (
/obj/structure/flora/ausbushes,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "asteroid6";
- name = "sand";
- tag = "icon-asteroid6"
+ name = "sand"
},
/area/awaymission/centcomAway/general)
"nl" = (
/obj/structure/flora/ausbushes,
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid";
- name = "plating";
- icon_state = "asteroid"
+ icon_state = "asteroid";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nm" = (
/obj/structure/flora/ausbushes,
/turf/simulated/floor/plasteel{
- tag = "icon-asteroid5";
- name = "plating";
- icon_state = "asteroid5"
+ icon_state = "asteroid5";
+ name = "plating"
},
/area/awaymission/centcomAway/general)
"nn" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"no" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"np" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nq" = (
@@ -5232,12 +4848,11 @@
dir = 8
},
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nr" = (
@@ -5262,8 +4877,7 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
icon_state = "green"
@@ -5273,9 +4887,8 @@
/obj/structure/table/reinforced,
/obj/item/paper/pamphlet/ccaInfo,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nv" = (
@@ -5291,9 +4904,8 @@
"nw" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nx" = (
@@ -5303,40 +4915,34 @@
dir = 1;
in_use = 1
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ny" = (
/obj/structure/chair/comfy/teal,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"nz" = (
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 8
+ dir = 8;
+ icon_state = "neutral"
},
/area/awaymission/centcomAway/general)
"nA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "neutral";
- dir = 4
+ dir = 4;
+ icon_state = "neutral"
},
/area/awaymission/centcomAway/general)
"nB" = (
/obj/machinery/computer/card,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nC" = (
@@ -5346,13 +4952,11 @@
"nD" = (
/obj/machinery/photocopier,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nE" = (
@@ -5363,12 +4967,9 @@
/area/awaymission/centcomAway/hangar)
"nF" = (
/obj/machinery/door/window/northright{
- icon_state = "right";
dir = 2
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nG" = (
/obj/structure/table/reinforced,
@@ -5382,9 +4983,8 @@
/area/awaymission/centcomAway/general)
"nH" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nI" = (
@@ -5395,21 +4995,19 @@
/area/awaymission/centcomAway/general)
"nJ" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nK" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 2
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nL" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 2
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nM" = (
@@ -5421,9 +5019,8 @@
"nN" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nO" = (
@@ -5431,16 +5028,15 @@
/obj/item/storage/box/handcuffs,
/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nP" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/general)
"nQ" = (
@@ -5448,12 +5044,11 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/general)
"nR" = (
@@ -5464,9 +5059,8 @@
"nS" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"nT" = (
@@ -5474,15 +5068,14 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
"nU" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_r"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
@@ -5494,23 +5087,20 @@
/area/awaymission/centcomAway/courtroom)
"nW" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 1
+ dir = 1;
+ icon_state = "propulsion_l"
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
"nX" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
dir = 1
},
/turf/simulated/floor/plating/airless,
/area/awaymission/centcomAway/thunderdome)
"nY" = (
/obj/structure/computerframe,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"nZ" = (
/obj/machinery/light,
@@ -5522,16 +5112,13 @@
/mob/living/simple_animal/hostile/russian/ranged{
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ob" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/general)
@@ -5551,9 +5138,7 @@
/area/awaymission/centcomAway/hangar)
"oe" = (
/obj/machinery/light,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"of" = (
/obj/item/clipboard,
@@ -5561,9 +5146,8 @@
/obj/item/taperecorder,
/obj/item/stamp/granted,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/general)
"og" = (
@@ -5576,9 +5160,8 @@
/obj/structure/table,
/obj/item/paicard,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oi" = (
@@ -5586,40 +5169,35 @@
/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/awaymission/centcomAway/thunderdome)
"oj" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ok" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ol" = (
/obj/structure/table,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"om" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"on" = (
@@ -5634,9 +5212,8 @@
},
/obj/structure/cable,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oo" = (
@@ -5645,9 +5222,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"op" = (
@@ -5680,50 +5256,44 @@
"ot" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ou" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ov" = (
/obj/machinery/door/airlock/centcom,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"ow" = (
/obj/machinery/door/window/southleft,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"ox" = (
/obj/machinery/door/window/southright,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oy" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oz" = (
@@ -5732,35 +5302,31 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oA" = (
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oB" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/snacks/popcorn,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oD" = (
@@ -5769,9 +5335,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oE" = (
@@ -5781,17 +5346,15 @@
"oF" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oG" = (
/obj/structure/closet/crate/trashcart,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oH" = (
@@ -5801,9 +5364,8 @@
in_use = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oI" = (
@@ -5815,9 +5377,8 @@
"oJ" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oK" = (
@@ -5825,18 +5386,16 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oL" = (
/obj/structure/table,
/obj/item/lipstick,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oM" = (
@@ -5845,19 +5404,17 @@
/obj/item/reagent_containers/food/condiment/milk,
/obj/item/reagent_containers/food/drinks/ice,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oN" = (
/obj/machinery/icemachine,
/turf/simulated/floor/plasteel{
- tag = "icon-barber (WEST)";
- icon_state = "barber";
dir = 8;
- heat_capacity = 1
+ heat_capacity = 1;
+ icon_state = "barber"
},
/area/awaymission/centcomAway/thunderdome)
"oO" = (
@@ -5865,17 +5422,15 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oP" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-redbluefull (WEST)";
- icon_state = "redbluefull";
- dir = 8
+ dir = 8;
+ icon_state = "redbluefull"
},
/area/awaymission/centcomAway/thunderdome)
"oQ" = (
@@ -5905,19 +5460,17 @@
/area/awaymission/centcomAway/thunderdome)
"oT" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 4
+ dir = 4;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"oU" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"oV" = (
@@ -5931,27 +5484,27 @@
/area/awaymission/centcomAway/hangar)
"oW" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 1
+ dir = 1;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oX" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 9
+ dir = 9;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oY" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 5
+ dir = 5;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"oZ" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 1
+ dir = 1;
+ icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
"pa" = (
@@ -5993,7 +5546,6 @@
/area/awaymission/centcomAway/thunderdome)
"pg" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -6027,9 +5579,8 @@
/obj/structure/table,
/obj/item/camera,
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pk" = (
@@ -6053,18 +5604,15 @@
/area/awaymission/centcomAway/thunderdome)
"pm" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTHEAST)";
- icon_state = "vault";
- dir = 5
+ dir = 5;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pn" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -6073,7 +5621,6 @@
/area/awaymission/centcomAway/thunderdome)
"po" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -6082,7 +5629,6 @@
/area/awaymission/centcomAway/thunderdome)
"pp" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6098,9 +5644,7 @@
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -6108,38 +5652,31 @@
/area/awaymission/centcomAway/thunderdome)
"ps" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 4
+ dir = 4;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pt" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"pu" = (
/turf/simulated/floor/plasteel{
- tag = "icon-plaque";
icon_state = "plaque"
},
/area/awaymission/centcomAway/thunderdome)
"pv" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"pw" = (
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 8
+ dir = 8;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"px" = (
@@ -6150,8 +5687,8 @@
/area/awaymission/centcomAway/thunderdome)
"py" = (
/turf/simulated/floor/plasteel{
- icon_state = "redcorner";
- dir = 4
+ dir = 4;
+ icon_state = "redcorner"
},
/area/awaymission/centcomAway/thunderdome)
"pz" = (
@@ -6162,7 +5699,6 @@
/area/awaymission/centcomAway/thunderdome)
"pA" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "greencorner"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6180,16 +5716,14 @@
/area/awaymission/centcomAway/thunderdome)
"pD" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (EAST)";
- icon_state = "vault";
- dir = 4
+ dir = 4;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pE" = (
/turf/simulated/floor/plasteel{
- tag = "icon-vault (NORTH)";
- icon_state = "vault";
- dir = 1
+ dir = 1;
+ icon_state = "vault"
},
/area/awaymission/centcomAway/thunderdome)
"pF" = (
@@ -6208,26 +5742,23 @@
name = "XCC Checkpoint 1 Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"pH" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 10
+ dir = 10;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pI" = (
/turf/simulated/floor/plasteel{
- icon_state = "red";
- dir = 6
+ dir = 6;
+ icon_state = "red"
},
/area/awaymission/centcomAway/thunderdome)
"pJ" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
@@ -6240,8 +5771,8 @@
"pL" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/turf/simulated/floor/plasteel{
- icon_state = "green";
- dir = 6
+ dir = 6;
+ icon_state = "green"
},
/area/awaymission/centcomAway/thunderdome)
"pM" = (
@@ -6252,9 +5783,8 @@
/area/awaymission/centcomAway/thunderdome)
"pN" = (
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pO" = (
@@ -6262,18 +5792,16 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pP" = (
/obj/structure/table/wood,
/obj/item/radio/off,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pQ" = (
@@ -6281,9 +5809,8 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pR" = (
@@ -6293,9 +5820,8 @@
req_access_txt = "102"
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pS" = (
@@ -6303,9 +5829,8 @@
pixel_y = 8
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pT" = (
@@ -6319,18 +5844,16 @@
loot = list(/obj/effect/mob_spawn/human/corpse/russian/ranged)
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pV" = (
/obj/structure/table,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pW" = (
@@ -6339,33 +5862,29 @@
pixel_y = 4
},
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pX" = (
/obj/structure/computerframe,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pY" = (
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"pZ" = (
/obj/machinery/computer/area_atmos,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qa" = (
@@ -6378,26 +5897,23 @@
/obj/structure/table,
/obj/item/storage/box/handcuffs,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qc" = (
/obj/structure/closet/secure_closet/bar,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qd" = (
/obj/structure/table,
/obj/item/storage/toolbox/electrical,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qe" = (
@@ -6405,18 +5921,16 @@
/obj/item/reagent_containers/food/snacks/popcorn,
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qf" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/turf/simulated/floor/plasteel{
- tag = "icon-redyellowfull (NORTHEAST)";
- icon_state = "redyellowfull";
- dir = 5
+ dir = 5;
+ icon_state = "redyellowfull"
},
/area/awaymission/centcomAway/thunderdome)
"qg" = (
@@ -6425,9 +5939,7 @@
name = "XCC Thunderdome Melee!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qh" = (
/obj/machinery/door_control{
@@ -6435,9 +5947,7 @@
name = "XCC Thunderdome Guns!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qi" = (
/obj/machinery/door_control{
@@ -6445,9 +5955,7 @@
name = "XCC Thunderdome Go!"
},
/obj/structure/table/reinforced,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"qj" = (
/obj/structure/rack,
@@ -6462,9 +5970,7 @@
name = "XCC Checkpoint 2 Shutters"
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"ql" = (
/obj/machinery/door_control{
@@ -6479,9 +5985,7 @@
/area/awaymission/centcomAway/hangar)
"qm" = (
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
"qn" = (
/obj/machinery/door/poddoor{
@@ -6530,9 +6034,7 @@
/obj/machinery/tcomms/relay/ruskie{
network_id = "XCC-P5831-RELAY"
},
-/turf/simulated/floor/plasteel{
- icon_state = "floor"
- },
+/turf/simulated/floor/plasteel,
/area/awaymission/centcomAway/general)
(1,1,1) = {"
@@ -15178,7 +14680,7 @@ eO
kh
fH
kw
-kG
+gn
eF
eF
eF
@@ -15308,7 +14810,7 @@ hA
hN
fH
kw
-kP
+go
eF
lE
fg
@@ -16079,11 +15581,11 @@ eU
eU
fJ
jf
-jm
+mv
jv
jG
eO
-jm
+mv
jv
jv
jv
diff --git a/_maps/map_files/RandomZLevels/evil_santa.dmm b/_maps/map_files/RandomZLevels/evil_santa.dmm
index 62b84545ee0..69008f30d1a 100644
--- a/_maps/map_files/RandomZLevels/evil_santa.dmm
+++ b/_maps/map_files/RandomZLevels/evil_santa.dmm
@@ -99,10 +99,7 @@
},
/area/awaymission/challenge/main)
"aq" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/obj/structure/fans/tiny,
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/main)
@@ -250,8 +247,6 @@
"aN" = (
/obj/structure/inflatable/door,
/obj/effect/decal/snow/clean/edge{
- tag = "icon-snow_corner (NORTH)";
- icon_state = "snow_corner";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -296,8 +291,7 @@
/area/awaymission/challenge/main)
"aY" = (
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"aZ" = (
@@ -341,8 +335,7 @@
"bf" = (
/mob/living/simple_animal/hostile/winter/santa/stage_1,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"bj" = (
@@ -385,10 +378,7 @@
/turf/simulated/floor/wood,
/area/awaymission/challenge/main)
"bq" = (
-/obj/structure/mineral_door/wood{
- tag = "icon-wood";
- icon_state = "wood"
- },
+/obj/structure/mineral_door/wood,
/obj/structure/fans/tiny,
/turf/simulated/floor/wood,
/area/awaymission/challenge/main)
@@ -421,7 +411,6 @@
/area/awaymission/challenge/main)
"bx" = (
/obj/machinery/porta_turret/syndicate/interior{
- density = 0;
desc = "Winterized interior defense turret chambered for .45 rounds and mounted on a wall. Designed to down intruders without damaging the hull.";
faction = "winter";
name = "wall mounted machine gun turret (.45)";
@@ -471,8 +460,7 @@
/obj/structure/fans/tiny,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- icon_state = "cafeteria";
- dir = 2
+ icon_state = "cafeteria"
},
/area/awaymission/challenge/main)
"bF" = (
@@ -505,8 +493,7 @@
id = "challenge";
name = "Gateway Lockdown";
pixel_x = -4;
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel,
@@ -587,8 +574,8 @@
"bX" = (
/obj/machinery/power/smes/magical,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -606,8 +593,7 @@
/obj/machinery/power/apc/noalarm{
dir = 4;
name = "Worn-out APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -624,8 +610,7 @@
"cb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/start)
@@ -656,12 +641,11 @@
/area/awaymission/challenge/main)
"ch" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/main)
@@ -679,8 +663,7 @@
/obj/machinery/power/apc/noalarm{
dir = 4;
name = "Worn-out APC";
- pixel_x = 24;
- pixel_y = 0
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/awaymission/challenge/start)
@@ -690,8 +673,7 @@
/area/awaymission/challenge/start)
"ck" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/challenge/start)
@@ -787,8 +769,7 @@
id = "challenge";
name = "Gateway Lockdown";
pixel_x = -4;
- pixel_y = 26;
- req_access_txt = "0"
+ pixel_y = 26
},
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomZLevels/example.dmm b/_maps/map_files/RandomZLevels/example.dmm
index 695005bada4..8d0f25d91cc 100644
--- a/_maps/map_files/RandomZLevels/example.dmm
+++ b/_maps/map_files/RandomZLevels/example.dmm
@@ -19,9 +19,9 @@
charge = 5e+006
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -30,23 +30,21 @@
dir = 8
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
"ag" = (
/obj/machinery/power/apc/noalarm{
dir = 1;
- name = "area power controller";
- pixel_x = 0;
pixel_y = 24
},
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -100,7 +98,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -122,9 +119,9 @@
/area/awaymission/example)
"ao" = (
/obj/structure/cable{
+ d2 = 2;
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1
},
/obj/machinery/gateway/centeraway,
/turf/simulated/floor/plasteel,
@@ -173,7 +170,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -190,8 +186,8 @@
/area/awaymission/example)
"ax" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/awaymission/example)
@@ -201,7 +197,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -211,7 +206,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
@@ -228,7 +222,6 @@
/area/awaymission/example)
"aB" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/obj/structure/table,
@@ -237,8 +230,7 @@
/area/awaymission/example)
"aC" = (
/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -309,15 +301,13 @@
/area/awaymission/example)
"aQ" = (
/turf/simulated/floor/plasteel{
- tag = "icon-yellowfull (WEST)";
- icon_state = "yellowfull";
- dir = 8
+ dir = 8;
+ icon_state = "yellowfull"
},
/area/awaymission/example)
"aR" = (
/turf/simulated/floor/plasteel{
- icon_state = "whitehall";
- dir = 2
+ icon_state = "whitehall"
},
/area/awaymission/example)
"aS" = (
@@ -462,7 +452,6 @@
/area/awaymission/example)
"bj" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -501,9 +490,8 @@
/area/awaymission/example)
"bo" = (
/turf/simulated/floor/plasteel{
- tag = "icon-stage_stairs (WEST)";
- icon_state = "stage_stairs";
- dir = 8
+ dir = 8;
+ icon_state = "stage_stairs"
},
/area/awaymission/example)
"bp" = (
@@ -612,7 +600,6 @@
/area/awaymission/example)
"bC" = (
/obj/structure/sink{
- icon_state = "sink";
dir = 8;
pixel_x = -12;
pixel_y = 2
@@ -636,8 +623,7 @@
/area/awaymission/example)
"bF" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel,
/area/awaymission/example)
@@ -671,8 +657,6 @@
/area/awaymission/example)
"bJ" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (EAST)";
- icon_state = "wooden_chair";
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -681,8 +665,6 @@
/area/awaymission/example)
"bK" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (WEST)";
- icon_state = "wooden_chair";
dir = 8
},
/turf/simulated/floor/plasteel{
@@ -707,8 +689,6 @@
/area/awaymission/example)
"bN" = (
/obj/structure/chair/wood{
- tag = "icon-wooden_chair (NORTH)";
- icon_state = "wooden_chair";
dir = 1
},
/turf/simulated/floor/plasteel{
@@ -810,7 +790,6 @@
/obj/item/screwdriver,
/obj/item/hand_labeler,
/obj/machinery/light{
- icon_state = "tube1";
dir = 8
},
/turf/simulated/floor/plasteel,
@@ -886,8 +865,6 @@
name = "awaystart"
},
/obj/machinery/light_construct/small{
- tag = "icon-bulb-construct-stage1 (WEST)";
- icon_state = "bulb-construct-stage1";
dir = 8
},
/turf/simulated/floor/plasteel,
diff --git a/_maps/map_files/RandomZLevels/moonoutpost19.dmm b/_maps/map_files/RandomZLevels/moonoutpost19.dmm
index cfe208e1557..80ddcf91249 100644
--- a/_maps/map_files/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/map_files/RandomZLevels/moonoutpost19.dmm
@@ -4,7 +4,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -16,7 +15,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -29,7 +27,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -44,7 +41,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -61,7 +57,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -76,7 +71,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -95,7 +89,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -107,7 +100,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -122,7 +114,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -135,7 +126,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -154,7 +144,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -169,7 +158,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -181,7 +169,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -196,7 +183,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -210,7 +196,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -233,7 +218,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -247,7 +231,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -263,7 +246,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -273,7 +255,6 @@
"as" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"at" = (
@@ -287,7 +268,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -302,7 +282,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -318,7 +297,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -333,7 +311,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -343,11 +320,9 @@
"ax" = (
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "darkred";
- tag = "icon-darkred (NORTHWEST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ay" = (
@@ -355,38 +330,31 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"az" = (
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (NORTH)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "darkred";
- tag = "icon-darkred (NORTHEAST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aB" = (
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (EAST)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aC" = (
@@ -395,7 +363,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -423,7 +390,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -434,11 +400,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (NORTH)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aF" = (
@@ -450,7 +414,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aG" = (
@@ -462,7 +425,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aH" = (
@@ -474,7 +436,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aI" = (
@@ -493,7 +454,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -511,7 +471,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -531,7 +490,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -546,7 +504,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -561,7 +518,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aN" = (
@@ -572,7 +528,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aO" = (
@@ -584,19 +539,16 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aP" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aQ" = (
@@ -608,7 +560,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aR" = (
@@ -620,7 +571,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -638,7 +588,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -648,31 +597,27 @@
"aT" = (
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aU" = (
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners (WEST)"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aV" = (
/obj/machinery/gateway,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aW" = (
@@ -684,17 +629,13 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aX" = (
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aY" = (
@@ -707,7 +648,6 @@
icon_state = "vault"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"aZ" = (
@@ -715,7 +655,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -732,7 +671,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -747,7 +685,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -760,7 +697,6 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bd" = (
@@ -772,18 +708,15 @@
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"be" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
- icon_state = "darkred";
- tag = "icon-darkred (SOUTHWEST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bf" = (
@@ -791,35 +724,28 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bg" = (
/turf/simulated/floor/plasteel{
dir = 6;
- icon_state = "darkred";
- tag = "icon-darkred (SOUTHEAST)"
+ icon_state = "darkred"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bh" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
- icon_state = "darkredcorners";
- tag = "icon-darkredcorners"
+ icon_state = "darkredcorners"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bi" = (
@@ -838,7 +764,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -851,7 +776,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -869,7 +793,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -880,7 +803,6 @@
/turf/simulated/mineral/random/high_chance,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -893,7 +815,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bn" = (
@@ -908,7 +829,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bo" = (
@@ -924,13 +844,10 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bp" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = "150"
},
@@ -938,7 +855,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bq" = (
@@ -956,7 +872,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"br" = (
@@ -976,7 +891,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bs" = (
@@ -989,13 +903,11 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bt" = (
@@ -1008,7 +920,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bu" = (
@@ -1023,19 +934,16 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bv" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bw" = (
@@ -1050,7 +958,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bx" = (
@@ -1058,14 +965,12 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"by" = (
/obj/structure/table,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/trash/plate,
/obj/item/cigbutt,
@@ -1073,7 +978,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bz" = (
@@ -1083,7 +987,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bA" = (
@@ -1093,7 +996,6 @@
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bB" = (
@@ -1101,45 +1003,36 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bC" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bD" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bE" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bF" = (
@@ -1150,7 +1043,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bG" = (
@@ -1159,7 +1051,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bH" = (
@@ -1170,7 +1061,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bI" = (
@@ -1180,7 +1070,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bJ" = (
@@ -1189,7 +1078,6 @@
icon_state = "bar"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bK" = (
@@ -1197,7 +1085,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bL" = (
@@ -1206,7 +1093,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bM" = (
@@ -1215,7 +1101,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bN" = (
@@ -1227,7 +1112,6 @@
icon_state = "red"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bO" = (
@@ -1236,7 +1120,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bP" = (
@@ -1244,7 +1127,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bQ" = (
@@ -1252,7 +1134,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/door/airlock/highsecurity{
@@ -1263,7 +1144,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bR" = (
@@ -1283,12 +1163,10 @@
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bS" = (
/obj/machinery/power/smes{
- charge = 0;
input_level = 10000;
inputting = 0;
output_level = 15000;
@@ -1300,40 +1178,34 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bT" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 4;
+ icon_state = "0-4"
},
-/obj/machinery/computer/monitor,
+/obj/machinery/computer/monitor/secret,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bU" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/alarm/monitor{
- frequency = 1439;
- locked = 1;
pixel_y = 23;
req_access = "150"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bV" = (
@@ -1341,7 +1213,6 @@
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bW" = (
@@ -1350,7 +1221,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -1371,18 +1241,15 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bY" = (
/obj/machinery/conveyor{
- dir = 2;
id = "awaysyndie"
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"bZ" = (
@@ -1402,7 +1269,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ca" = (
@@ -1411,7 +1277,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cb" = (
@@ -1425,12 +1290,10 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cc" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = "150"
@@ -1440,7 +1303,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cd" = (
@@ -1451,7 +1313,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ce" = (
@@ -1464,7 +1325,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cf" = (
@@ -1472,7 +1332,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -1481,7 +1340,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cg" = (
@@ -1498,12 +1356,10 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ch" = (
/obj/structure/sign/securearea{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -1511,7 +1367,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ci" = (
@@ -1519,7 +1374,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/table,
@@ -1535,22 +1389,19 @@
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cj" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 1
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ck" = (
@@ -1558,7 +1409,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cl" = (
@@ -1566,7 +1416,6 @@
/obj/effect/decal/warning_stripes/northwestcorner,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cm" = (
@@ -1579,7 +1428,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cn" = (
@@ -1587,7 +1435,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"co" = (
@@ -1595,7 +1442,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cp" = (
@@ -1604,7 +1450,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cq" = (
@@ -1620,13 +1465,11 @@
icon_state = "small"
},
/turf/simulated/floor/plasteel{
- carbon_dioxide = 0;
nitrogen = 0;
oxygen = 0;
temperature = 2.7
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cr" = (
@@ -1636,7 +1479,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cs" = (
@@ -1646,7 +1488,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ct" = (
@@ -1660,14 +1501,12 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless{
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cu" = (
@@ -1675,7 +1514,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel/airless{
@@ -1684,7 +1522,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cv" = (
@@ -1692,7 +1529,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -1700,7 +1536,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cw" = (
@@ -1712,7 +1547,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cx" = (
@@ -1720,7 +1554,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/engineering{
@@ -1729,7 +1562,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cy" = (
@@ -1737,7 +1569,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -1755,7 +1586,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cz" = (
@@ -1767,7 +1597,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cA" = (
@@ -1776,7 +1605,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cB" = (
@@ -1789,18 +1617,15 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cC" = (
/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
+ dir = 1
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cD" = (
@@ -1809,7 +1634,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cE" = (
@@ -1819,7 +1643,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cF" = (
@@ -1834,7 +1657,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cG" = (
@@ -1845,18 +1667,15 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cH" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cI" = (
@@ -1866,38 +1685,30 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cJ" = (
/obj/structure/cable,
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
- dir = 2;
- locked = 1;
name = "Worn-out APC";
- pixel_x = 0;
pixel_y = -25;
req_access = "150";
start_charge = 0
},
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cK" = (
/turf/simulated/floor/plasteel/airless{
- dir = 2;
icon_state = "red";
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cL" = (
@@ -1910,7 +1721,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cM" = (
@@ -1919,7 +1729,6 @@
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cN" = (
@@ -1931,7 +1740,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cO" = (
@@ -1944,7 +1752,6 @@
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cP" = (
@@ -1952,7 +1759,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cQ" = (
@@ -1966,7 +1772,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cR" = (
@@ -1976,16 +1781,12 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cS" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/obj/machinery/light{
@@ -2000,7 +1801,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cT" = (
@@ -2017,11 +1817,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cU" = (
@@ -2031,7 +1829,6 @@
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cV" = (
@@ -2042,7 +1839,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cW" = (
@@ -2052,7 +1848,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cX" = (
@@ -2069,7 +1864,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cY" = (
@@ -2082,7 +1876,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"cZ" = (
@@ -2090,9 +1883,7 @@
id = "awaydorm4";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/bed,
@@ -2100,11 +1891,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"da" = (
@@ -2112,11 +1901,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"db" = (
@@ -2124,22 +1911,18 @@
id = "awaydorm5";
name = "Door Bolt Control";
normaldoorcontrol = 1;
- pixel_x = 0;
pixel_y = 25;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/structure/dresser,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dc" = (
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dd" = (
@@ -2150,7 +1933,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2166,7 +1948,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plating,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"df" = (
@@ -2175,7 +1956,6 @@
},
/turf/simulated/wall,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dg" = (
@@ -2188,28 +1968,22 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dh" = (
/obj/structure/chair/wood,
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
- locked = 1;
pixel_x = -23;
- pixel_y = 0;
req_access = "150"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"di" = (
@@ -2219,25 +1993,19 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dj" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
- locked = 1;
pixel_x = 23;
- pixel_y = 0;
req_access = "150"
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dk" = (
@@ -2246,7 +2014,6 @@
},
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dl" = (
@@ -2260,7 +2027,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dm" = (
@@ -2275,7 +2041,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dn" = (
@@ -2285,7 +2050,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"do" = (
@@ -2294,7 +2058,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dp" = (
@@ -2303,8 +2066,8 @@
name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
@@ -2322,11 +2085,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dr" = (
@@ -2338,7 +2099,6 @@
icon_off = "cabinetdetective_broken";
icon_opened = "cabinetdetective_open";
icon_state = "cabinetdetective_locked";
- locked = 1;
name = "personal closet";
req_access_txt = "150"
},
@@ -2348,11 +2108,9 @@
/turf/simulated/floor/plasteel/airless{
dir = 8;
icon_state = "wood";
- name = "floor";
- tag = "icon-warningcorner (NORTH)"
+ name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ds" = (
@@ -2371,7 +2129,6 @@
/obj/item/stack/spacecash/c50,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dt" = (
@@ -2380,7 +2137,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"du" = (
@@ -2389,7 +2145,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dv" = (
@@ -2402,7 +2157,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2415,7 +2169,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dx" = (
@@ -2424,7 +2177,6 @@
name = "floor"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dy" = (
@@ -2442,7 +2194,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dz" = (
@@ -2454,7 +2205,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2466,7 +2216,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2478,7 +2227,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -2495,14 +2243,12 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dD" = (
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/portable_atmospherics/canister/oxygen,
@@ -2511,7 +2257,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dE" = (
@@ -2526,7 +2271,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2543,7 +2287,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2563,7 +2306,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2578,7 +2320,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dI" = (
@@ -2587,7 +2328,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2600,7 +2340,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2616,7 +2355,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2633,7 +2371,6 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"dM" = (
@@ -2645,7 +2382,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2676,7 +2412,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2697,7 +2432,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2710,7 +2444,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2724,7 +2457,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2740,7 +2472,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2760,7 +2491,6 @@
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a5{
always_unpowered = 1;
- has_gravity = 1;
name = "The Hive";
power_environ = 0;
power_equip = 0;
@@ -2773,7 +2503,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2787,7 +2516,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2802,7 +2530,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2818,7 +2545,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2833,7 +2559,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -2844,19 +2569,16 @@
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"dZ" = (
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ea" = (
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eb" = (
@@ -2867,14 +2589,12 @@
name = "plating"
},
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"ec" = (
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ed" = (
@@ -2883,14 +2603,12 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ee" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ef" = (
@@ -2899,7 +2617,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eg" = (
@@ -2911,7 +2628,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eh" = (
@@ -2922,7 +2638,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ei" = (
@@ -2942,7 +2657,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ej" = (
@@ -2950,7 +2664,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/alien/weeds{
@@ -2961,7 +2674,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ek" = (
@@ -2974,12 +2686,11 @@
req_access = null
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"el" = (
@@ -2996,7 +2707,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"em" = (
@@ -3012,14 +2722,12 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"en" = (
/obj/structure/alien/weeds,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eo" = (
@@ -3041,7 +2749,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ep" = (
@@ -3049,7 +2756,6 @@
desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating.";
id = "awayxenobio";
name = "Acid-Proof mounted igniter";
- pixel_x = 0;
pixel_y = 25
},
/obj/structure/alien/weeds{
@@ -3058,7 +2764,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eq" = (
@@ -3066,7 +2771,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"er" = (
@@ -3079,7 +2783,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"es" = (
@@ -3096,7 +2799,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"et" = (
@@ -3105,13 +2807,11 @@
icon_state = "dark"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eu" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ev" = (
@@ -3124,7 +2824,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ew" = (
@@ -3137,7 +2836,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ex" = (
@@ -3145,19 +2843,16 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4;
- initialize_directions = 11;
- level = 2
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ey" = (
@@ -3174,13 +2869,12 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ez" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating.";
@@ -3192,7 +2886,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eA" = (
@@ -3203,7 +2896,6 @@
},
/turf/simulated/wall/r_wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eB" = (
@@ -3220,14 +2912,12 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eC" = (
/obj/structure/alien/weeds/node,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eD" = (
@@ -3236,7 +2926,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eE" = (
@@ -3246,7 +2935,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eF" = (
@@ -3256,7 +2944,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eG" = (
@@ -3264,7 +2951,6 @@
/obj/structure/bed/nest,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eH" = (
@@ -3279,7 +2965,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eI" = (
@@ -3291,28 +2976,23 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eJ" = (
/turf/simulated/wall,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eK" = (
/turf/simulated/wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eL" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eM" = (
@@ -3325,7 +3005,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eN" = (
@@ -3345,7 +3024,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eO" = (
@@ -3353,7 +3031,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible,
@@ -3364,7 +3041,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eP" = (
@@ -3389,7 +3065,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eQ" = (
@@ -3403,7 +3078,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eR" = (
@@ -3415,7 +3089,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eS" = (
@@ -3424,7 +3097,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eT" = (
@@ -3443,11 +3115,9 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eX" = (
@@ -3458,11 +3128,9 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"eY" = (
@@ -3471,8 +3139,8 @@
name = "P.A.C.M.A.N.-type portable generator"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/awaycontent/a7)
@@ -3491,7 +3159,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/landmark/damageturf,
@@ -3499,8 +3166,8 @@
/area/awaycontent/a7)
"fb" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/smes{
charge = 1.5e+006;
@@ -3516,11 +3183,10 @@
dir = 4
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -3532,7 +3198,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/tracks{
@@ -3545,7 +3210,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fe" = (
@@ -3566,7 +3230,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/newspaper,
@@ -3581,7 +3244,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fi" = (
@@ -3598,12 +3260,10 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fj" = (
/obj/machinery/firealarm/no_alarm{
- dir = 2;
pixel_y = 24
},
/obj/structure/table,
@@ -3615,7 +3275,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fk" = (
@@ -3624,7 +3283,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fl" = (
@@ -3632,7 +3290,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fm" = (
@@ -3640,7 +3297,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/visible,
@@ -3648,7 +3304,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fn" = (
@@ -3662,14 +3317,13 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fo" = (
/obj/structure/cable,
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
desc = "A heavy duty blast door that opens mechanically. This one has been applied with an acid-proof coating.";
@@ -3680,7 +3334,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fp" = (
@@ -3694,7 +3347,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fq" = (
@@ -3709,7 +3361,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fr" = (
@@ -3717,7 +3368,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -3735,12 +3385,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/effect/decal/cleanable/blood/tracks{
desc = "Your instincts say you shouldn't be following these.";
@@ -3764,11 +3412,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fv" = (
@@ -3784,7 +3430,6 @@
status = 2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -3794,7 +3439,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fw" = (
@@ -3813,7 +3457,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fx" = (
@@ -3836,7 +3479,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -3848,13 +3490,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fA" = (
@@ -3862,12 +3502,10 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fB" = (
@@ -3875,14 +3513,12 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fC" = (
@@ -3890,7 +3526,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/structure/alien/weeds/node,
@@ -3898,7 +3533,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fD" = (
@@ -3915,7 +3549,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fE" = (
@@ -3936,7 +3569,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fF" = (
@@ -3961,12 +3593,10 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fG" = (
@@ -3980,7 +3610,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fH" = (
@@ -3997,7 +3626,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fI" = (
@@ -4012,7 +3640,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fJ" = (
@@ -4025,7 +3652,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fK" = (
@@ -4039,7 +3665,6 @@
/obj/structure/alien/weeds,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fL" = (
@@ -4059,7 +3684,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fM" = (
@@ -4086,7 +3710,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4099,7 +3722,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor,
@@ -4114,7 +3736,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fR" = (
@@ -4122,7 +3743,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -4134,11 +3754,9 @@
/obj/structure/alien/weeds,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fS" = (
@@ -4157,7 +3775,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fU" = (
@@ -4173,7 +3790,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fV" = (
@@ -4189,7 +3805,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fX" = (
@@ -4197,7 +3812,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"fY" = (
@@ -4215,7 +3829,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4225,19 +3838,17 @@
/area/awaycontent/a7)
"gb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gc" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
@@ -4252,7 +3863,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gd" = (
@@ -4268,7 +3878,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ge" = (
@@ -4284,7 +3893,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gf" = (
@@ -4299,7 +3907,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gg" = (
@@ -4316,7 +3923,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gh" = (
@@ -4324,7 +3930,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/cable{
@@ -4339,15 +3944,11 @@
/turf/simulated/floor/plating,
/area/awaycontent/a7)
"gi" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plating,
@@ -4360,7 +3961,6 @@
icon_off = "secoff";
icon_opened = "secopen";
icon_state = "sec1";
- locked = 1;
name = "security officer's locker";
req_access_txt = "271"
},
@@ -4373,7 +3973,6 @@
pixel_y = -2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -4383,20 +3982,17 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gk" = (
/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gl" = (
@@ -4405,7 +4001,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gm" = (
@@ -4420,17 +4015,14 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/wall/r_wall/rust,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"go" = (
@@ -4441,7 +4033,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/structure/alien/weeds{
@@ -4449,31 +4040,25 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8;
- initialize_directions = 11;
- level = 1
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gp" = (
/obj/machinery/door/firedoor,
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = -29
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gq" = (
@@ -4487,7 +4072,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gr" = (
@@ -4507,7 +4091,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gs" = (
@@ -4517,13 +4100,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gt" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -4531,7 +4112,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gu" = (
@@ -4540,13 +4120,12 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gv" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
desc = "An underfloor disposal pipe. This one has been applied with an acid-proof coating.";
@@ -4563,7 +4142,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gw" = (
@@ -4576,7 +4154,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gx" = (
@@ -4591,23 +4168,19 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gz" = (
/turf/simulated/mineral/random/labormineral,
/area/awaycontent/a4{
- has_gravity = 1;
name = "Syndicate Outpost"
})
"gA" = (
@@ -4621,30 +4194,25 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gD" = (
@@ -4660,7 +4228,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gE" = (
@@ -4668,15 +4235,13 @@
dir = 4
},
/obj/machinery/newscaster/security_unit{
- pixel_x = -30;
- pixel_y = 0
+ pixel_x = -30
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gF" = (
@@ -4694,7 +4259,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gG" = (
@@ -4703,7 +4267,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gH" = (
@@ -4713,7 +4276,6 @@
/obj/item/shard,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gI" = (
@@ -4725,7 +4287,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gJ" = (
@@ -4743,7 +4304,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gK" = (
@@ -4781,7 +4341,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gL" = (
@@ -4804,7 +4363,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gN" = (
@@ -4817,7 +4375,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gO" = (
@@ -4828,14 +4385,13 @@
name = "Acid-Proof containment chamber blast door"
},
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/structure/grille,
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gP" = (
@@ -4846,7 +4402,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/power/apc/noalarm{
@@ -4866,7 +4421,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/item/stack/rods,
@@ -4883,14 +4437,12 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gS" = (
/obj/structure/chair/office/dark,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gT" = (
@@ -4899,7 +4451,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gU" = (
@@ -4911,7 +4462,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gV" = (
@@ -4924,7 +4474,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gW" = (
@@ -4939,7 +4488,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gX" = (
@@ -4965,7 +4513,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gY" = (
@@ -4976,7 +4523,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"gZ" = (
@@ -4987,7 +4533,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ha" = (
@@ -5000,7 +4545,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hb" = (
@@ -5019,13 +4563,11 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hc" = (
/obj/machinery/light{
active_power_usage = 0;
- dir = 2;
icon_state = "tube-broken";
status = 2
},
@@ -5039,7 +4581,6 @@
},
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hd" = (
@@ -5047,7 +4588,6 @@
desc = "A wall-mounted ignition device. This one has been applied with an acid-proof coating.";
id = "awayxenobio";
name = "Acid-Proof mounted igniter";
- pixel_x = 0;
pixel_y = -25
},
/obj/structure/alien/weeds{
@@ -5056,7 +4596,6 @@
/obj/structure/alien/resin/wall,
/turf/simulated/floor/engine,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"he" = (
@@ -5067,7 +4606,6 @@
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hf" = (
@@ -5075,7 +4613,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/machinery/firealarm/no_alarm{
@@ -5085,11 +4622,9 @@
/obj/structure/alien/weeds,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hg" = (
@@ -5109,15 +4644,13 @@
/obj/structure/table,
/obj/item/book/manual/security_space_law,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hj" = (
@@ -5132,7 +4665,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hk" = (
@@ -5142,7 +4674,6 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hl" = (
@@ -5150,7 +4681,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/oil{
@@ -5160,7 +4690,7 @@
/turf/simulated/floor/plating,
/area/awaycontent/a7)
"hm" = (
-/obj/machinery/computer/monitor,
+/obj/machinery/computer/monitor/secret,
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/awaycontent/a7)
@@ -5180,25 +4710,19 @@
status = 2
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hp" = (
/obj/structure/table,
-/obj/item/storage/box/gloves{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/box/gloves,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hq" = (
@@ -5214,11 +4738,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hr" = (
@@ -5231,7 +4753,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hs" = (
@@ -5242,16 +4763,13 @@
pixel_y = 2
},
/obj/machinery/firealarm/no_alarm{
- dir = 2;
pixel_y = 24
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ht" = (
@@ -5263,7 +4781,6 @@
status = 2
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
@@ -5273,12 +4790,10 @@
name = "Personal Log — Gerald Rosswell"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hu" = (
@@ -5293,7 +4808,6 @@
id = "Awaybiohazard";
name = "Biohazard Shutter Control";
pixel_x = -25;
- pixel_y = 0;
req_access_txt = "271"
},
/obj/machinery/light/small{
@@ -5308,16 +4822,13 @@
icon_state = "red"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hx" = (
@@ -5329,7 +4840,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hy" = (
@@ -5341,7 +4851,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hz" = (
@@ -5365,7 +4874,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hA" = (
@@ -5377,15 +4885,11 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hB" = (
/obj/structure/table,
-/obj/item/storage/firstaid/fire{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/firstaid/fire,
/obj/machinery/firealarm/no_alarm{
dir = 4;
pixel_x = 28
@@ -5395,28 +4899,23 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hC" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hD" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hE" = (
@@ -5428,19 +4927,15 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hF" = (
@@ -5450,7 +4945,6 @@
},
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -5468,7 +4962,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hG" = (
@@ -5477,7 +4970,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hH" = (
@@ -5492,17 +4984,12 @@
/area/awaycontent/a7)
"hI" = (
/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/item/storage/firstaid/regular,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
@@ -5510,19 +4997,16 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hJ" = (
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hK" = (
/turf/simulated/wall,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hL" = (
@@ -5530,7 +5014,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -5549,12 +5032,10 @@
"hN" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hO" = (
@@ -5570,7 +5051,6 @@
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hP" = (
@@ -5580,7 +5060,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hQ" = (
@@ -5595,7 +5074,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hR" = (
@@ -5606,7 +5084,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hS" = (
@@ -5617,15 +5094,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hT" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/urinal{
pixel_y = 29
@@ -5638,7 +5112,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hU" = (
@@ -5650,7 +5123,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hV" = (
@@ -5661,14 +5133,12 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hW" = (
/obj/machinery/light/small,
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"hX" = (
@@ -5686,7 +5156,6 @@
/obj/item/clothing/suit/storage/labcoat,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hY" = (
@@ -5703,12 +5172,10 @@
pixel_y = -2
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"hZ" = (
@@ -5718,12 +5185,10 @@
pixel_y = 9
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ia" = (
@@ -5737,12 +5202,10 @@
network = list("MO19X","MO19R")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ib" = (
@@ -5751,12 +5214,10 @@
dir = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ic" = (
@@ -5772,7 +5233,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"id" = (
@@ -5784,11 +5244,9 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ie" = (
@@ -5802,7 +5260,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"if" = (
@@ -5811,7 +5268,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ig" = (
@@ -5822,7 +5278,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ih" = (
@@ -5830,7 +5285,6 @@
/obj/item/clothing/glasses/hud/health,
/obj/item/clothing/glasses/hud/health,
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
@@ -5838,14 +5292,12 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ii" = (
/obj/structure/closet/l3closet/general,
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -5854,7 +5306,6 @@
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ij" = (
@@ -5864,16 +5315,13 @@
icon_state = "whitecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ik" = (
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/obj/machinery/light/small{
@@ -5883,27 +5331,23 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"il" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ pixel_x = 11
},
/obj/structure/mirror{
+ broken = 1;
desc = "Oh no, seven years of bad luck!";
icon_state = "mirror_broke";
- pixel_x = 28;
- broken = 1
+ pixel_x = 28
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"im" = (
@@ -5911,7 +5355,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"in" = (
@@ -5923,7 +5366,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"io" = (
@@ -5934,7 +5376,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ip" = (
@@ -5947,7 +5388,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iq" = (
@@ -5959,7 +5399,6 @@
icon_off = "secureresoff";
icon_opened = "secureresopen";
icon_state = "secureres1";
- locked = 1;
name = "scientist's locker";
req_access_txt = "271"
},
@@ -5969,7 +5408,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ir" = (
@@ -5978,12 +5416,10 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"is" = (
@@ -5991,7 +5427,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"it" = (
@@ -6001,7 +5436,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iu" = (
@@ -6012,7 +5446,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iv" = (
@@ -6021,13 +5454,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iw" = (
/obj/item/storage/secure/safe{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/effect/decal/cleanable/blood/splatter,
/obj/item/pen,
@@ -6040,7 +5471,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ix" = (
@@ -6054,7 +5484,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iy" = (
@@ -6065,7 +5494,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iz" = (
@@ -6076,7 +5504,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iA" = (
@@ -6085,7 +5512,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iB" = (
@@ -6097,7 +5523,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iC" = (
@@ -6107,7 +5532,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iD" = (
@@ -6117,7 +5541,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iE" = (
@@ -6127,7 +5550,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iF" = (
@@ -6138,7 +5560,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iG" = (
@@ -6146,11 +5567,9 @@
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitehall"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iH" = (
@@ -6164,17 +5583,14 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iI" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/light/small{
active_power_usage = 0;
- dir = 2;
icon_state = "bulb-broken";
status = 2
},
@@ -6184,26 +5600,21 @@
network = list("MO19","MO19R")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iJ" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iK" = (
@@ -6211,12 +5622,10 @@
/obj/item/radio/off,
/obj/item/laser_pointer,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iL" = (
@@ -6224,7 +5633,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/landmark/burnturf,
@@ -6236,16 +5644,13 @@
},
/obj/machinery/shower{
dir = 4;
- icon_state = "shower";
- name = "emergency shower";
- tag = "icon-shower (EAST)"
+ name = "emergency shower"
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iN" = (
@@ -6255,7 +5660,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iO" = (
@@ -6269,7 +5673,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iP" = (
@@ -6279,19 +5682,16 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"iQ" = (
/obj/machinery/shower{
- dir = 1;
- pixel_y = 0
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iR" = (
@@ -6303,7 +5703,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iS" = (
@@ -6314,7 +5713,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iT" = (
@@ -6328,30 +5726,21 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iU" = (
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = 0
- },
+/obj/machinery/computer/security/telescreen/entertainment,
/turf/simulated/wall/rust,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iV" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
+/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iW" = (
@@ -6362,7 +5751,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iX" = (
@@ -6374,29 +5762,24 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iY" = (
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"iZ" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ja" = (
@@ -6407,7 +5790,6 @@
icon_state = "freezerfloor"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jb" = (
@@ -6417,7 +5799,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6435,13 +5816,11 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jd" = (
/obj/structure/sink{
dir = 8;
- icon_state = "sink";
pixel_x = -12;
pixel_y = 2
},
@@ -6451,7 +5830,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"je" = (
@@ -6461,19 +5839,16 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jf" = (
/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+ name = "Unisex Restrooms"
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jg" = (
@@ -6482,7 +5857,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jh" = (
@@ -6491,7 +5865,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ji" = (
@@ -6500,7 +5873,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jj" = (
@@ -6514,7 +5886,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jk" = (
@@ -6523,7 +5894,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jl" = (
@@ -6531,14 +5901,12 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jm" = (
/obj/structure/chair/stool,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jn" = (
@@ -6549,18 +5917,15 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jo" = (
/obj/effect/decal/cleanable/flour,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jp" = (
@@ -6571,12 +5936,10 @@
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jq" = (
@@ -6586,8 +5949,7 @@
pixel_x = 3
},
/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
+ pixel_x = -3
},
/obj/machinery/door/poddoor/shutters{
dir = 8;
@@ -6596,7 +5958,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jr" = (
@@ -6607,19 +5968,16 @@
icon_off = "rdsecureoff";
icon_opened = "rdsecureopen";
icon_state = "rdsecure1";
- locked = 1;
name = "research director's locker";
req_access_txt = "271"
},
/obj/item/storage/backpack/satchel_tox,
/obj/item/clothing/gloves/color/latex,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"js" = (
@@ -6629,7 +5987,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jt" = (
@@ -6638,12 +5995,10 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ju" = (
@@ -6651,16 +6006,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jv" = (
@@ -6668,14 +6020,12 @@
/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jw" = (
/obj/structure/chair,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jx" = (
@@ -6684,45 +6034,37 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jy" = (
/obj/structure/sign/science{
- pixel_x = 0;
pixel_y = 32
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 9;
- icon_state = "purple";
- tag = "icon-purple (NORTHWEST)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jz" = (
/turf/simulated/floor/plasteel{
dir = 5;
- icon_state = "purple";
- tag = "icon-purple (NORTHEAST)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jB" = (
@@ -6736,7 +6078,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6752,7 +6093,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6768,7 +6108,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -6785,14 +6124,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jF" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jG" = (
@@ -6801,13 +6138,11 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jH" = (
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jI" = (
@@ -6815,7 +6150,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jJ" = (
@@ -6824,11 +6158,9 @@
on = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "whitepurplecorner"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jK" = (
@@ -6842,19 +6174,16 @@
/obj/effect/landmark/burnturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jL" = (
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jM" = (
@@ -6867,7 +6196,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jN" = (
@@ -6876,7 +6204,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jO" = (
@@ -6884,7 +6211,6 @@
/obj/structure/window/full/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jP" = (
@@ -6893,7 +6219,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jQ" = (
@@ -6903,12 +6228,10 @@
},
/obj/item/reagent_containers/food/drinks/shaker,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jR" = (
@@ -6918,23 +6241,19 @@
pixel_y = 3
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jS" = (
/obj/machinery/vending/dinnerware,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jT" = (
@@ -6947,30 +6266,25 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jU" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jV" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
pixel_y = 30
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jW" = (
@@ -6978,24 +6292,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"jX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jY" = (
@@ -7007,16 +6317,13 @@
locked = 1;
name = "Research Director's Office";
opacity = 0;
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"jZ" = (
@@ -7026,7 +6333,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"ka" = (
@@ -7038,7 +6344,6 @@
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kb" = (
@@ -7062,7 +6367,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ke" = (
@@ -7071,22 +6375,18 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kf" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kg" = (
@@ -7096,7 +6396,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kh" = (
@@ -7104,7 +6403,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/light/small{
@@ -7113,22 +6411,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ki" = (
/obj/machinery/door/airlock/research{
id_tag = "";
name = "Research Division";
- req_access_txt = "271";
- req_one_access_txt = "0"
+ req_access_txt = "271"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kj" = (
@@ -7139,24 +6434,20 @@
/obj/machinery/door_control{
id = "Awaybiohazard";
name = "Biohazard Shutter Control";
- pixel_x = 0;
pixel_y = 8;
req_access_txt = "271"
},
/obj/machinery/door_control{
id = "AwayRD";
name = "Privacy Shutter Control";
- pixel_x = 0;
pixel_y = -2;
req_access_txt = "271"
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a2{
- has_gravity = 1;
name = "MO19 Research"
})
"kk" = (
@@ -7164,7 +6455,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
@@ -7175,13 +6465,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"km" = (
@@ -7189,11 +6477,9 @@
/obj/item/trash/candy,
/obj/item/trash/can,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kn" = (
@@ -7201,7 +6487,6 @@
d1 = 1;
d2 = 2;
icon_state = "1-2";
- pixel_y = 0;
tag = ""
},
/obj/effect/decal/cleanable/blood/oil{
@@ -7216,18 +6501,15 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kp" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kq" = (
@@ -7235,12 +6517,10 @@
/obj/item/kitchen/rollingpin,
/obj/item/kitchen/knife,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kr" = (
@@ -7251,46 +6531,37 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ks" = (
/obj/effect/decal/cleanable/plant_smudge,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kt" = (
/obj/machinery/light{
- icon_state = "tube1";
dir = 4
},
/obj/machinery/processor,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ku" = (
@@ -7298,7 +6569,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/unary/vent_pump{
@@ -7309,32 +6579,26 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kv" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kw" = (
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kx" = (
/obj/machinery/light/small,
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
pixel_y = -32
},
/obj/machinery/camera{
@@ -7343,11 +6607,9 @@
network = list("MO19")
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ky" = (
@@ -7356,7 +6618,6 @@
icon_state = "whitecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kz" = (
@@ -7364,11 +6625,9 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kA" = (
@@ -7376,17 +6635,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kB" = (
@@ -7398,7 +6654,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kC" = (
@@ -7406,31 +6661,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "purple";
- tag = "icon-purple (NORTH)"
+ icon_state = "purple"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kD" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/power/apc/noalarm{
cell_type = 15000;
dir = 1;
locked = 0;
name = "Habitat APC";
- pixel_x = 0;
pixel_y = 25;
req_access = null;
start_charge = 100
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kE" = (
@@ -7438,7 +6689,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kF" = (
@@ -7446,18 +6696,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/item/cigbutt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kG" = (
@@ -7465,18 +6712,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/damageturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kH" = (
@@ -7484,19 +6728,16 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating/airless{
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kI" = (
@@ -7504,18 +6745,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kJ" = (
@@ -7526,7 +6764,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kK" = (
@@ -7537,7 +6774,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kL" = (
@@ -7549,7 +6785,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kM" = (
@@ -7563,7 +6798,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kN" = (
@@ -7571,12 +6805,10 @@
/obj/item/trash/plate,
/obj/item/reagent_containers/food/snacks/badrecipe,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kO" = (
@@ -7585,7 +6817,6 @@
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kP" = (
@@ -7596,17 +6827,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kQ" = (
@@ -7614,18 +6842,15 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/landmark/burnturf,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kR" = (
@@ -7633,7 +6858,6 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/door/firedoor{
@@ -7643,13 +6867,11 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kS" = (
@@ -7659,11 +6881,9 @@
opacity = 1
},
/turf/simulated/floor/plasteel{
- dir = 2;
icon_state = "neutralcorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kT" = (
@@ -7676,7 +6896,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kU" = (
@@ -7685,17 +6904,14 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kV" = (
@@ -7704,13 +6920,10 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kW" = (
@@ -7718,27 +6931,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kX" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "0";
- req_one_access_txt = "0"
- },
+/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kY" = (
@@ -7748,7 +6954,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"kZ" = (
@@ -7758,7 +6963,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"la" = (
@@ -7773,7 +6977,6 @@
icon_state = "blue"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lb" = (
@@ -7783,13 +6986,11 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lc" = (
/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = 0
+ pixel_x = 26
},
/obj/machinery/camera{
c_tag = "Kitchen";
@@ -7797,18 +6998,15 @@
network = list("MO19")
},
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ld" = (
/turf/simulated/wall/mineral/titanium,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lg" = (
@@ -7818,18 +7016,15 @@
icon_state = "arrival"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"li" = (
@@ -7837,16 +7032,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lj" = (
@@ -7855,7 +7047,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lk" = (
@@ -7867,7 +7058,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -7885,7 +7075,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lm" = (
@@ -7896,20 +7085,17 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ln" = (
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lo" = (
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lp" = (
@@ -7919,7 +7105,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lq" = (
@@ -7929,15 +7114,12 @@
/obj/structure/chair/wood,
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lr" = (
@@ -7948,17 +7130,14 @@
/obj/item/storage/box,
/obj/machinery/alarm/monitor{
dir = 4;
- frequency = 1439;
locked = 0;
pixel_x = -23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel{
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ls" = (
@@ -7969,7 +7148,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lt" = (
@@ -7987,25 +7165,20 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lu" = (
/obj/machinery/door_control{
id = "awaykitchen";
name = "Kitchen Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0"
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
- tag = "icon-cafeteria (NORTHEAST)";
- icon_state = "cafeteria";
- dir = 5
+ dir = 5;
+ icon_state = "cafeteria"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lv" = (
@@ -8013,7 +7186,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lw" = (
@@ -8027,7 +7199,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lx" = (
@@ -8036,7 +7207,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ly" = (
@@ -8051,7 +7221,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lE" = (
@@ -8062,18 +7231,15 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lF" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_r";
- tag = "icon-burst_r (WEST)"
+ icon_state = "burst_r"
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lG" = (
@@ -8081,19 +7247,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lH" = (
/obj/machinery/atmospherics/unary/vent_pump{
dir = 1;
- on = 1;
- pressure_checks = 1
+ on = 1
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lI" = (
@@ -8101,7 +7264,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lJ" = (
@@ -8109,26 +7271,20 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "purplecorner";
- tag = "icon-purplecorner (NORTH)"
+ icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lK" = (
/obj/structure/shuttle/engine/heater{
- tag = "icon-heater (EAST)";
- icon_state = "heater";
dir = 4
},
/obj/structure/window/reinforced{
@@ -8136,7 +7292,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lL" = (
@@ -8146,7 +7301,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lM" = (
@@ -8154,32 +7308,27 @@
/obj/item/bedsheet,
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lN" = (
/obj/structure/table/wood,
/obj/item/lighter/zippo,
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lO" = (
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lP" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lQ" = (
@@ -8188,7 +7337,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lR" = (
@@ -8199,25 +7347,21 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/alarm/monitor{
- frequency = 1439;
locked = 0;
pixel_y = 23;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lS" = (
@@ -8225,7 +7369,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lT" = (
@@ -8234,7 +7377,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lU" = (
@@ -8245,7 +7387,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lV" = (
@@ -8261,7 +7402,6 @@
temperature = 273.15
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lX" = (
@@ -8269,7 +7409,6 @@
/obj/item/storage/lockbox,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"lY" = (
@@ -8277,17 +7416,14 @@
/obj/item/radio/off,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ma" = (
/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mb" = (
@@ -8299,13 +7435,11 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mc" = (
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"md" = (
@@ -8314,12 +7448,10 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"me" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 30
},
/obj/machinery/light/small{
@@ -8327,25 +7459,21 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mf" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mg" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4;
- icon_state = "burst_l";
- tag = "icon-burst_l (WEST)"
+ icon_state = "burst_l"
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mh" = (
@@ -8353,7 +7481,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mi" = (
@@ -8362,7 +7489,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mj" = (
@@ -8371,7 +7497,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mk" = (
@@ -8382,7 +7507,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ml" = (
@@ -8391,7 +7515,6 @@
icon_state = "bar"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mm" = (
@@ -8401,7 +7524,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mn" = (
@@ -8409,20 +7531,17 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "purplecorner"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mo" = (
@@ -8430,13 +7549,11 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mp" = (
@@ -8449,16 +7566,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mq" = (
@@ -8466,7 +7580,6 @@
/obj/item/storage/box/donkpockets,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mr" = (
@@ -8478,13 +7591,11 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ms" = (
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mt" = (
@@ -8493,7 +7604,6 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mu" = (
@@ -8505,7 +7615,6 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mv" = (
@@ -8517,7 +7626,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mw" = (
@@ -8531,20 +7639,17 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mx" = (
/obj/structure/grille,
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
- name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0
+ name = "\improper HOSTILE ATMOSPHERE AHEAD"
},
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"my" = (
@@ -8557,7 +7662,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mz" = (
@@ -8565,7 +7669,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mA" = (
@@ -8575,17 +7678,13 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mB" = (
@@ -8594,7 +7693,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mC" = (
@@ -8603,7 +7701,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mD" = (
@@ -8615,7 +7712,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mE" = (
@@ -8627,7 +7723,6 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mF" = (
@@ -8641,14 +7736,12 @@
pixel_y = 8
},
/obj/item/reagent_containers/food/drinks/drinkingglass{
- pixel_x = 3;
- pixel_y = 0
+ pixel_x = 3
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mG" = (
@@ -8657,14 +7750,12 @@
icon_state = "dark"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mH" = (
/obj/machinery/computer/shuttle,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mI" = (
@@ -8673,7 +7764,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mJ" = (
@@ -8682,7 +7772,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mK" = (
@@ -8697,7 +7786,6 @@
},
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mL" = (
@@ -8706,7 +7794,6 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mM" = (
@@ -8714,7 +7801,6 @@
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mN" = (
@@ -8722,14 +7808,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mO" = (
/obj/machinery/door/airlock/external,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mP" = (
@@ -8738,7 +7822,6 @@
},
/turf/simulated/floor/plating/asteroid/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mQ" = (
@@ -8748,7 +7831,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mR" = (
@@ -8760,7 +7842,6 @@
},
/turf/simulated/floor/plating/airless,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mS" = (
@@ -8771,7 +7852,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mT" = (
@@ -8784,7 +7864,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mU" = (
@@ -8801,7 +7880,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mV" = (
@@ -8810,15 +7888,12 @@
},
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mW" = (
@@ -8827,7 +7902,6 @@
/obj/item/pen,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mX" = (
@@ -8837,7 +7911,6 @@
/obj/structure/chair/comfy/shuttle,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"mZ" = (
@@ -8847,7 +7920,6 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/mineral/titanium/yellow,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"na" = (
@@ -8856,14 +7928,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nb" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nc" = (
@@ -8874,7 +7944,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nd" = (
@@ -8892,14 +7961,12 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ng" = (
/obj/structure/filingcabinet,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nh" = (
@@ -8909,18 +7976,15 @@
},
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ni" = (
/obj/machinery/newscaster{
- pixel_x = 0;
pixel_y = -30
},
/obj/machinery/light/small,
/turf/simulated/floor/mineral/titanium/blue,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nj" = (
@@ -8939,7 +8003,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nk" = (
@@ -8955,7 +8018,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nl" = (
@@ -8964,14 +8026,12 @@
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nm" = (
/obj/item/cigbutt,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nn" = (
@@ -8979,19 +8039,16 @@
/obj/item/trash/candy,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"np" = (
/obj/structure/sign/vacuum{
desc = "A warning sign which reads 'HOSTILE ATMOSPHERE AHEAD'";
name = "\improper HOSTILE ATMOSPHERE AHEAD";
- pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nq" = (
@@ -8999,7 +8056,6 @@
/obj/effect/landmark/damageturf,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nr" = (
@@ -9009,7 +8065,6 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ns" = (
@@ -9022,14 +8077,12 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nt" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nu" = (
@@ -9037,14 +8090,12 @@
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nv" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nx" = (
@@ -9057,7 +8108,6 @@
name = "plating"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"ny" = (
@@ -9077,7 +8127,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nz" = (
@@ -9087,7 +8136,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nA" = (
@@ -9095,16 +8143,13 @@
d1 = 4;
d2 = 8;
icon_state = "4-8";
- pixel_x = 0;
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1;
- level = 1
+ dir = 1
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nB" = (
@@ -9113,14 +8158,12 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nC" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nD" = (
@@ -9139,7 +8182,6 @@
/area/awaycontent/a3{
always_unpowered = 1;
ambientsounds = list('sound/ambience/ambimine.ogg');
- has_gravity = 1;
name = "Khonsu 19";
power_environ = 0;
power_equip = 0;
@@ -9149,10 +8191,8 @@
"nE" = (
/obj/machinery/alarm/monitor{
dir = 8;
- frequency = 1439;
locked = 0;
pixel_x = 23;
- pixel_y = 0;
req_access = null
},
/turf/simulated/floor/plasteel/airless{
@@ -9160,7 +8200,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nF" = (
@@ -9168,7 +8207,6 @@
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nG" = (
@@ -9177,7 +8215,6 @@
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nH" = (
@@ -9185,7 +8222,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nI" = (
@@ -9196,8 +8232,6 @@
name = "Door Bolt Control";
normaldoorcontrol = 1;
pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "0";
specialfunctions = 4
},
/obj/effect/decal/remains/human{
@@ -9206,7 +8240,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nJ" = (
@@ -9217,7 +8250,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nK" = (
@@ -9226,7 +8258,6 @@
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nL" = (
@@ -9237,24 +8268,20 @@
},
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nM" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nO" = (
@@ -9268,7 +8295,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nP" = (
@@ -9278,7 +8304,6 @@
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nQ" = (
@@ -9290,7 +8315,6 @@
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nR" = (
@@ -9298,7 +8322,6 @@
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nS" = (
@@ -9306,7 +8329,6 @@
/obj/item/storage/box/lights/mixed,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nT" = (
@@ -9316,7 +8338,6 @@
name = "floor"
},
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nU" = (
@@ -9328,22 +8349,18 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4;
- level = 1
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nV" = (
/obj/machinery/newscaster{
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30
},
/turf/simulated/floor/carpet,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nW" = (
@@ -9352,7 +8369,6 @@
/obj/structure/window/full/reinforced,
/turf/simulated/floor/plating,
/area/awaycontent/a1{
- has_gravity = 1;
name = "MO19 Arrivals"
})
"nX" = (
@@ -9362,8 +8378,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/structure/noticeboard{
dir = 8;
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/paper{
info = "Welcome to Moon Outpost 19! Property of Nanotrasen Inc.
")
text = replacetext(text, "\[time\]", "[station_time_timestamp()]") // TO DO
text = replacetext(text, "\[date\]", "[GLOB.current_date_string]")
+ text = replacetext(text, "\[station\]", "[SSmapping.map_datum.fluff_name]")
if(!no_font)
if(P)
text = "[text]"
@@ -653,6 +650,62 @@
// return the split html object to the caller
return s
+//Used for applying byonds text macros to strings that are loaded at runtime
+/proc/apply_text_macros(string)
+ var/next_backslash = findtext(string, "\\")
+ if(!next_backslash)
+ return string
+
+ var/leng = length(string)
+
+ var/next_space = findtext(string, " ", next_backslash + length(string[next_backslash]))
+ if(!next_space)
+ next_space = leng - next_backslash
+
+ if(!next_space) //trailing bs
+ return string
+
+ var/base = next_backslash == 1 ? "" : copytext(string, 1, next_backslash)
+ var/macro = lowertext(copytext(string, next_backslash + length(string[next_backslash]), next_space))
+ var/rest = next_backslash > leng ? "" : copytext(string, next_space + length(string[next_space]))
+
+ //See https://secure.byond.com/docs/ref/info.html#/DM/text/macros
+ switch(macro)
+ //prefixes/agnostic
+ if("the")
+ rest = text("\the []", rest)
+ if("a")
+ rest = text("\a []", rest)
+ if("an")
+ rest = text("\an []", rest)
+ if("proper")
+ rest = text("\proper []", rest)
+ if("improper")
+ rest = text("\improper []", rest)
+ if("roman")
+ rest = text("\roman []", rest)
+ //postfixes
+ if("th")
+ base = text("[]\th", rest)
+ if("s")
+ base = text("[]\s", rest)
+ if("he")
+ base = text("[]\he", rest)
+ if("she")
+ base = text("[]\she", rest)
+ if("his")
+ base = text("[]\his", rest)
+ if("himself")
+ base = text("[]\himself", rest)
+ if("herself")
+ base = text("[]\herself", rest)
+ if("hers")
+ base = text("[]\hers", rest)
+
+ . = base
+ if(rest)
+ . += .(rest)
+
/**
* Proc to generate a "rank colour" from a client
*
@@ -663,11 +716,12 @@
/proc/client2rankcolour(client/C)
// First check if end user is an admin
if(C.holder)
- if(C.holder.rank in GLOB.rank_colour_map)
+ if(C.holder.rank in GLOB.configuration.admin.rank_colour_map)
// Return their rank colour if they are in here
- return GLOB.rank_colour_map[C.holder.rank]
+ return GLOB.configuration.admin.rank_colour_map[C.holder.rank]
// If they arent an admin, see if they are a patreon. Just accept any level
if(C.donator_level)
return "#e67e22" // Patreon orange
return null
+
diff --git a/code/__HELPERS/traits.dm b/code/__HELPERS/traits.dm
index 74760fd22b4..5534c19cdd1 100644
--- a/code/__HELPERS/traits.dm
+++ b/code/__HELPERS/traits.dm
@@ -2,89 +2,113 @@
#define SIGNAL_REMOVETRAIT(trait_ref) "removetrait [trait_ref]"
// trait accessor defines
+
+/**
+ * Adds a status trait to the target datum.
+ *
+ * Arguments: (All Required)
+ * * target - The datum to add the trait to.
+ * * trait - The trait which is being added.
+ * * source - The source of the trait which is being added.
+ */
#define ADD_TRAIT(target, trait, source) \
do { \
- var/list/_L; \
- if (!target.status_traits) { \
- target.status_traits = list(); \
- _L = target.status_traits; \
- _L[trait] = list(source); \
- SEND_SIGNAL(target, SIGNAL_ADDTRAIT(trait), trait); \
+ LAZYINITLIST(target.status_traits); \
+\
+ if(!target.status_traits[trait]) { \
+ target.status_traits[trait] = list(source); \
} else { \
- _L = target.status_traits; \
- if (_L[trait]) { \
- _L[trait] |= list(source); \
- } else { \
- _L[trait] = list(source); \
- SEND_SIGNAL(target, SIGNAL_ADDTRAIT(trait), trait); \
+ target.status_traits[trait] |= list(source); \
+ } \
+\
+ SEND_SIGNAL(target, SIGNAL_ADDTRAIT(trait), trait); \
+ } while (0)
+
+/**
+ * Removes a status trait from a target datum.
+ *
+ * `ROUNDSTART_TRAIT` traits can't be removed without being specified in `sources`.
+ * Arguments:
+ * * target - The datum to remove the trait from.
+ * * trait - The trait which is being removed.
+ * * sources - If specified, only remove the trait if it is from this source. (Lists Supported)
+ */
+#define REMOVE_TRAIT(target, trait, sources) \
+ do { \
+ if(target.status_traits && target.status_traits[trait]) { \
+ var/list/SOURCES = sources; \
+ if(sources && !islist(sources)) { \
+ SOURCES = list(sources); \
+ } \
+\
+ for(var/TRAIT_SOURCE in target.status_traits[trait]) { \
+ if((!SOURCES && (TRAIT_SOURCE != ROUNDSTART_TRAIT)) || (TRAIT_SOURCE in SOURCES)) { \
+ if(length(target.status_traits[trait]) == 1) { \
+ SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(trait), trait); \
+ } \
+ LAZYREMOVEASSOC(target.status_traits, trait, TRAIT_SOURCE); \
+ } \
} \
} \
} while (0)
-#define REMOVE_TRAIT(target, trait, sources) \
- do { \
- var/list/_L = target.status_traits; \
- var/list/_S; \
- if (sources && !islist(sources)) { \
- _S = list(sources); \
- } else { \
- _S = sources\
- }; \
- if (_L && _L[trait]) { \
- for (var/_T in _L[trait]) { \
- if ((!_S && (_T != ROUNDSTART_TRAIT)) || (_T in _S)) { \
- _L[trait] -= _T \
- } \
- };\
- if (!length(_L[trait])) { \
- _L -= trait; \
- SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(trait), trait); \
- }; \
- if (!length(_L)) { \
- target.status_traits = null \
- }; \
- } \
- } while (0)
+
+/**
+ * Removes all status traits from a target datum which were NOT added by `sources`.
+ *
+ * Arguments:
+ * * target - The datum to remove the traits from.
+ * * sources - The trait source which is being searched for.
+ */
#define REMOVE_TRAITS_NOT_IN(target, sources) \
do { \
- var/list/_L = target.status_traits; \
- var/list/_S = sources; \
- if (_L) { \
- for (var/_T in _L) { \
- _L[_T] &= _S;\
- if (!length(_L[_T])) { \
- _L -= _T; \
- SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(_T), _T); \
- }; \
- };\
- if (!length(_L)) { \
- target.status_traits = null\
- };\
- }\
+ if(target.status_traits) { \
+ var/list/SOURCES = sources; \
+ if(!islist(sources)) { \
+ SOURCES = list(sources); \
+ } \
+\
+ for(var/TRAIT in target.status_traits) { \
+ target.status_traits[TRAIT] &= SOURCES; \
+ if(!length(target.status_traits[TRAIT])) { \
+ target.status_traits -= TRAIT; \
+ SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(TRAIT), TRAIT); \
+ } \
+ } \
+ if(!length(target.status_traits)) { \
+ target.status_traits = null; \
+ } \
+ } \
} while (0)
+/**
+ * Removes all status traits from a target datum which were added by `sources`.
+ *
+ * Arguments:
+ * * target - The datum to remove the traits from.
+ * * sources - The trait source which is being searched for.
+ */
#define REMOVE_TRAITS_IN(target, sources) \
do { \
- var/list/_L = target.status_traits; \
- var/list/_S = sources; \
- if (sources && !islist(sources)) { \
- _S = list(sources); \
- } else { \
- _S = sources\
- }; \
- if (_L) { \
- for (var/_T in _L) { \
- _L[_T] -= _S;\
- if (!length(_L[_T])) { \
- _L -= _T; \
- SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(_T)); \
- }; \
- };\
- if (!length(_L)) { \
- target.status_traits = null\
- };\
- }\
+ if(target.status_traits) { \
+ var/list/SOURCES = sources; \
+ if(!islist(sources)) { \
+ SOURCES = list(sources); \
+ } \
+\
+ for(var/TRAIT in target.status_traits) { \
+ target.status_traits[TRAIT] -= SOURCES; \
+ if(!length(target.status_traits[TRAIT])) { \
+ target.status_traits -= TRAIT; \
+ SEND_SIGNAL(target, SIGNAL_REMOVETRAIT(TRAIT)); \
+ } \
+ } \
+ if(!length(target.status_traits)) { \
+ target.status_traits = null; \
+ } \
+ } \
} while (0)
+
#define HAS_TRAIT(target, trait) (target.status_traits ? (target.status_traits[trait] ? TRUE : FALSE) : FALSE)
#define HAS_TRAIT_FROM(target, trait, source) (target.status_traits ? (target.status_traits[trait] ? (source in target.status_traits[trait]) : FALSE) : FALSE)
#define HAS_TRAIT_FROM_ONLY(target, trait, source) (\
@@ -99,7 +123,7 @@
Remember to update _globalvars/traits.dm if you're adding/removing/renaming traits.
*/
-//mob traits
+//***** MOB TRAITS *****//
#define TRAIT_BLIND "blind"
#define TRAIT_MUTE "mute"
#define TRAIT_DEAF "deaf"
@@ -119,6 +143,7 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_XENO_HOST "xeno_host" //Tracks whether we're gonna be a baby alien's mummy.
#define TRAIT_SHOCKIMMUNE "shock_immunity"
#define TRAIT_TESLA_SHOCKIMMUNE "tesla_shock_immunity"
+#define TRAIT_TELEKINESIS "telekinesis"
#define TRAIT_RESISTHEAT "resist_heat"
#define TRAIT_RESISTHEATHANDS "resist_heat_handsonly" //For when you want to be able to touch hot things, but still want fire to be an issue.
#define TRAIT_RESISTCOLD "resist_cold"
@@ -152,8 +177,9 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_NOEXAMINE "no_examine"
#define TRAIT_NOPAIN "no_pain"
-/// Blowing kisses actually does damage to the victim
-#define TRAIT_KISS_OF_DEATH "kiss_of_death"
+//***** ITEM TRAITS *****//
+/// Show what machine/door wires do when held.
+#define TRAIT_SHOW_WIRE_INFO "show_wire_info"
//
// common trait sources
@@ -183,4 +209,4 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_ALCOHOL_TOLERANCE "alcohol_tolerance"
//traits that should be properly converted to genetic mutations one day
-#define TRAIT_LASEREYES "laser_eyes"
+#define TRAIT_LASEREYES "laser_eyes"
diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm
index b962907d043..dcf304314bb 100644
--- a/code/__HELPERS/type2type.dm
+++ b/code/__HELPERS/type2type.dm
@@ -43,9 +43,9 @@
return num
//Returns the hex value of a number given a value assumed to be a base-ten value
-/proc/num2hex(num, placeholder)
- if(!isnum(num)) return
- if(placeholder == null) placeholder = 2
+/proc/num2hex(num, placeholder = 2)
+ if(!isnum(num) || num < 0)
+ return
var/hex = ""
while(num)
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index 3056485d755..4bbc7d03d07 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -31,19 +31,20 @@
return 1
-/proc/Get_Angle(atom/movable/start,atom/movable/end)//For beams.
- if(!start || !end) return 0
+/proc/get_angle(atom/movable/start, atom/movable/end)//For beams.
+ if(!start || !end)
+ return 0
var/dy
var/dx
- dy=(32*end.y+end.pixel_y)-(32*start.y+start.pixel_y)
- dx=(32*end.x+end.pixel_x)-(32*start.x+start.pixel_x)
+ dy = (32 * end.y + end.pixel_y) - (32 * start.y + start.pixel_y)
+ 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
+ return (dx >= 0) ? 90 : 270
+ . = arctan(dx / dy)
+ if(dy < 0)
+ . += 180
+ else if(dx < 0)
+ . += 360
//Returns location. Returns null if no location was found.
/proc/get_teleport_loc(turf/location,mob/target,distance = 1, density = 0, errorx = 0, errory = 0, eoffsetx = 0, eoffsety = 0)
@@ -538,10 +539,6 @@ Returns 1 if the chain up to the area contains the given typepath
var/y = min(world.maxy, max(1, A.y + dy))
return locate(x,y,A.z)
-//Makes sure MIDDLE is between LOW and HIGH. If not, it adjusts it. Returns the adjusted value.
-/proc/between(low, middle, high)
- return max(min(middle, high), low)
-
//returns random gauss number
/proc/GaussRand(sigma)
var/x,y,rsq
@@ -1246,10 +1243,6 @@ GLOBAL_LIST_INIT(wall_items, typecacheof(list(/obj/machinery/power/apc, /obj/mac
return 1
return 0
-
-/proc/get_angle(atom/a, atom/b)
- return atan2(b.y - a.y, b.x - a.x)
-
/proc/atan2(x, y)
if(!x && !y) return 0
return y >= 0 ? arccos(x / sqrt(x * x + y * y)) : -arccos(x / sqrt(x * x + y * y))
@@ -2072,7 +2065,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
return _list
/// Waits at a line of code until X is true
-#define UNTIL(X) while(!(X)) stoplag()
+#define UNTIL(X) while(!(X)) sleep(world.tick_lag)
// Check if the source atom contains another atom
/atom/proc/contains(atom/location)
@@ -2085,7 +2078,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
/proc/log_connection(ckey, ip, cid, connection_type)
ASSERT(connection_type in list(CONNECTION_TYPE_ESTABLISHED, CONNECTION_TYPE_DROPPED_IPINTEL, CONNECTION_TYPE_DROPPED_BANNED, CONNECTION_TYPE_DROPPED_INVALID))
- var/datum/db_query/query_accesslog = SSdbcore.NewQuery("INSERT INTO `[format_table_name("connection_log")]`(`datetime`, `ckey`, `ip`, `computerid`, `result`) VALUES(Now(), :ckey, :ip, :cid, :result)", list(
+ var/datum/db_query/query_accesslog = SSdbcore.NewQuery("INSERT INTO connection_log (`datetime`, `ckey`, `ip`, `computerid`, `result`) VALUES(Now(), :ckey, :ip, :cid, :result)", list(
"ckey" = ckey,
"ip" = "[ip ? ip : ""]", // This is important. NULL is not the same as "", and if you directly open the `.dmb` file, you get a NULL IP.
"cid" = cid,
diff --git a/code/_compile_options.dm b/code/_compile_options.dm
index 21e3765ddde..0e73437dd93 100644
--- a/code/_compile_options.dm
+++ b/code/_compile_options.dm
@@ -9,23 +9,18 @@
#define UNIT_TESTS
#endif
-#ifdef TESTING
-//#define GC_FAILURE_HARD_LOOKUP //makes paths that fail to GC call find_references before del'ing.
- //implies FIND_REF_NO_CHECK_TICK
+/***** All toggles for the GC ref finder *****/
-//#define FIND_REF_NO_CHECK_TICK //Sets world.loop_checks to false and prevents find references from sleeping
+// #define REFERENCE_TRACKING // Uncomment to enable ref finding
-#endif
+// #define GC_FAILURE_HARD_LOOKUP //makes paths that fail to GC call find_references before del'ing.
+
+// #define FIND_REF_NO_CHECK_TICK //Sets world.loop_checks to false and prevents find references from sleeping
+
+/***** End toggles for the GC ref finder *****/
#define IS_MODE_COMPILED(MODE) (ispath(text2path("/datum/game_mode/"+(MODE))))
-//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_PAPER_MESSAGE_LEN 3072
-#define MAX_PAPER_FIELDS 50
-#define MAX_BOOK_MESSAGE_LEN 9216
-#define MAX_NAME_LEN 50 //diona names can get loooooooong
-
//Update this whenever you need to take advantage of more recent byond features
#define MIN_COMPILER_VERSION 513
#define MIN_COMPILER_BUILD 1514
diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm
index ea2cf1290fd..3b7d061ace3 100644
--- a/code/_globalvars/configuration.dm
+++ b/code/_globalvars/configuration.dm
@@ -1,44 +1,30 @@
-GLOBAL_REAL(config, /datum/configuration)
-
-GLOBAL_VAR(host)
+/// Join MOTD for the server
GLOBAL_VAR(join_motd)
+GLOBAL_PROTECT(join_motd) // Takes up a lot of space in VV
+/// Join TOS for the server
GLOBAL_VAR(join_tos)
-GLOBAL_VAR_INIT(game_version, "ParaCode")
+GLOBAL_PROTECT(join_tos) // Takes up a lot of space. Also dont touch this shit
+
+/// The current game year
GLOBAL_VAR_INIT(game_year, (text2num(time2text(world.realtime, "YYYY")) + 544))
-GLOBAL_VAR_INIT(aliens_allowed, 1)
-GLOBAL_VAR_INIT(traitor_scaling, 1)
-//GLOBAL_VAR_INIT(goonsay_allowed, 0)
-GLOBAL_VAR_INIT(dna_ident, 1)
-GLOBAL_VAR_INIT(abandon_allowed, 0)
-GLOBAL_VAR_INIT(enter_allowed, 1)
-GLOBAL_VAR_INIT(guests_allowed, 1)
-GLOBAL_VAR_INIT(shuttle_frozen, 0)
-GLOBAL_VAR_INIT(shuttle_left, 0)
-GLOBAL_VAR_INIT(tinted_weldhelh, 1)
-GLOBAL_VAR_INIT(mouse_respawn_time, 5) //Amount of time that must pass between a player dying as a mouse and repawning as a mouse. In minutes.
+/// Allow new players to enter the game?
+GLOBAL_VAR_INIT(enter_allowed, TRUE)
-// Debug is used exactly once (in living.dm) but is commented out in a lot of places. It is not set anywhere and only checked.
-// Debug2 is used in conjunction with a lot of admin verbs and therefore is actually legit.
-GLOBAL_VAR_INIT(debug, 0) // global debug switch
-GLOBAL_VAR_INIT(debug2, 1) // enables detailed job debug file in secrets
+/// Is OOC currently enabled?
+GLOBAL_VAR_INIT(ooc_enabled, TRUE)
-//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
-GLOBAL_VAR_INIT(max_ex_devastation_range, 3)
-GLOBAL_VAR_INIT(max_ex_heavy_range, 7)
-GLOBAL_VAR_INIT(max_ex_light_range, 14)
-GLOBAL_VAR_INIT(max_ex_flash_range, 14)
-GLOBAL_VAR_INIT(max_ex_flame_range, 14)
+/// Is LOOC currently enabled?
+GLOBAL_VAR_INIT(looc_enabled, TRUE)
-//Random event stuff, apparently used
-GLOBAL_VAR_INIT(eventchance, 10) //% per 5 mins
-GLOBAL_VAR_INIT(event, 0)
-GLOBAL_VAR_INIT(hadevent, 0)
-GLOBAL_VAR_INIT(blobevent, 0)
+/// Is OOC currently enabled for dead people?
+GLOBAL_VAR_INIT(dooc_enabled, TRUE)
-// These vars are protected because changing them could pose a security risk, though they are fine to be read since they are just system paths
-GLOBAL_VAR(shutdown_shell_command) // Command to run if shutting down (SHUTDOWN_ON_REBOOT) instead of rebooting
-GLOBAL_PROTECT(shutdown_shell_command)
+/// Is deadchat currently enabled?
+GLOBAL_VAR_INIT(dsay_enabled, TRUE)
-GLOBAL_VAR(python_path) //Path to the python executable. Defaults to "python" on windows and "/usr/bin/env python2" on unix
-GLOBAL_PROTECT(python_path)
+/// Amount of time (in minutes) that must pass between a player dying as a mouse and repawning as a mouse
+GLOBAL_VAR_INIT(mouse_respawn_time, 5)
+
+/// Enable debugging of things such as job starts and other things
+GLOBAL_VAR_INIT(debug2, TRUE)
diff --git a/code/_globalvars/lists/misc.dm b/code/_globalvars/lists/misc.dm
index b5fd84ef6d6..5464ed64bb4 100644
--- a/code/_globalvars/lists/misc.dm
+++ b/code/_globalvars/lists/misc.dm
@@ -30,7 +30,8 @@ GLOBAL_LIST_INIT(restricted_camera_networks, list(
"UO45",
"UO45R",
"UO71",
- "Xeno"
+ "Xeno",
+ "SyndicateTestLab"
)) //Those networks can only be accessed by preexisting terminals. AIs and new terminals can't use them.
GLOBAL_LIST_INIT(ruin_landmarks, list())
@@ -54,7 +55,4 @@ GLOBAL_LIST_INIT(cooking_recipes, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN =
GLOBAL_LIST_INIT(cooking_ingredients, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN = list(), RECIPE_GRILL = list(), RECIPE_CANDY = list()))
GLOBAL_LIST_INIT(cooking_reagents, list(RECIPE_MICROWAVE = list(), RECIPE_OVEN = list(), RECIPE_GRILL = list(), RECIPE_CANDY = list()))
-/// Associative list of admin rank to colour. Set in config/rank_colours.txt
-GLOBAL_LIST_EMPTY(rank_colour_map)
-
#define EGG_LAYING_MESSAGES list("lays an egg.", "squats down and croons.", "begins making a huge racket.", "begins clucking raucously.")
diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm
index ab3bfa85451..4c22d37dc32 100644
--- a/code/_globalvars/lists/objects.dm
+++ b/code/_globalvars/lists/objects.dm
@@ -18,6 +18,7 @@ GLOBAL_LIST_INIT(cell_logs, list())
GLOBAL_LIST_INIT(navigation_computers, list())
GLOBAL_LIST_INIT(all_areas, list())
+GLOBAL_LIST_INIT(all_unique_areas, list()) // List of all unique areas. AKA areas with there_can_be_many = FALSE
GLOBAL_LIST_INIT(machines, list())
GLOBAL_LIST_INIT(rcd_list, list()) //list of Rapid Construction Devices.
diff --git a/code/_globalvars/lists/reagents.dm b/code/_globalvars/lists/reagents.dm
index 833da2a9879..0684be758cd 100644
--- a/code/_globalvars/lists/reagents.dm
+++ b/code/_globalvars/lists/reagents.dm
@@ -40,7 +40,7 @@ GLOBAL_LIST_INIT(drinks, list("beer2","hot_coco","orangejuice","tomatojuice","li
"booger","bloodymary","gargleblaster","bravebull","tequilasunrise","toxinsspecial",
"beepskysmash","salglu_solution","irishcream","manlydorf","longislandicedtea",
"moonshine","b52","irishcoffee","margarita","blackrussian","manhattan",
- "manhattan_proj","whiskeysoda","antifreeze","barefoot","snowwhite","demonsblood",
+ "manhattan_proj","whiskeysoda","adminfreeze","antifreeze","barefoot","snowwhite","demonsblood",
"vodkatonic","ginfizz","bahama_mama","singulo","sbiten","devilskiss","red_mead",
"mead","iced_beer","grog","aloe","andalusia","alliescocktail","soy_latte",
"cafe_latte","acidspit","amasec","neurotoxin","hippiesdelight","bananahonk",
diff --git a/code/_globalvars/logging.dm b/code/_globalvars/logging.dm
index 1e0a82c1c28..06a4fc52a46 100644
--- a/code/_globalvars/logging.dm
+++ b/code/_globalvars/logging.dm
@@ -11,8 +11,6 @@ GLOBAL_VAR(world_qdel_log)
GLOBAL_PROTECT(world_qdel_log)
GLOBAL_VAR(world_href_log)
GLOBAL_PROTECT(world_href_log)
-GLOBAL_VAR(world_asset_log)
-GLOBAL_PROTECT(world_asset_log)
GLOBAL_VAR(runtime_summary_log)
GLOBAL_PROTECT(runtime_summary_log)
GLOBAL_VAR(tgui_log)
@@ -21,9 +19,16 @@ GLOBAL_VAR(http_log)
GLOBAL_PROTECT(http_log)
GLOBAL_VAR(sql_log)
GLOBAL_PROTECT(sql_log)
+GLOBAL_VAR(chat_debug_log)
+GLOBAL_PROTECT(chat_debug_log)
GLOBAL_VAR(round_id)
GLOBAL_PROTECT(round_id)
+#ifdef REFERENCE_TRACKING
+GLOBAL_VAR(gc_log)
+GLOBAL_PROTECT(gc_log)
+#endif
+
GLOBAL_LIST_EMPTY(jobMax)
GLOBAL_PROTECT(jobMax)
GLOBAL_LIST_EMPTY(admin_log)
diff --git a/code/_globalvars/mapping.dm b/code/_globalvars/mapping.dm
index 2b435e0bede..2e447d0484a 100644
--- a/code/_globalvars/mapping.dm
+++ b/code/_globalvars/mapping.dm
@@ -8,9 +8,6 @@ GLOBAL_LIST_INIT(alldirs, list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, S
GLOBAL_LIST_INIT(alldirs2, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST, NORTH, SOUTH, EAST, WEST))
GLOBAL_LIST_INIT(diagonals, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST))
-// This must exist early on or shit breaks bad
-GLOBAL_DATUM_INIT(using_map, /datum/map, new USING_MAP_DATUM)
-
GLOBAL_LIST(global_map) // This is the array of zlevels | list(list(1,5),list(4,3)) | becomes a 2D array of zlevels
//Resulting sector map looks like
//|_1_|_4_|
@@ -57,6 +54,3 @@ GLOBAL_LIST_EMPTY(lava_ruins_templates)
GLOBAL_LIST_EMPTY(shelter_templates)
GLOBAL_LIST_EMPTY(shuttle_templates)
-// Teleport locations
-GLOBAL_LIST_EMPTY(teleportlocs)
-GLOBAL_LIST_EMPTY(ghostteleportlocs)
diff --git a/code/_globalvars/misc.dm b/code/_globalvars/misc.dm
index cb8920f30ed..40dfb374170 100644
--- a/code/_globalvars/misc.dm
+++ b/code/_globalvars/misc.dm
@@ -33,44 +33,6 @@ GLOBAL_VAR_INIT(gravity_is_on, 1) //basically unused, just one admin verb..
// Recall time limit: 2 hours
GLOBAL_VAR_INIT(recall_time_limit, 72000) //apparently used for the comm console
-//////SCORE STUFF
-//Goonstyle scoreboard
-GLOBAL_VAR_INIT(score_crewscore, 0) // this is the overall var/score for the whole round
-GLOBAL_VAR_INIT(score_stuffshipped, 0) // how many useful items have cargo shipped out?
-GLOBAL_VAR_INIT(score_stuffharvested, 0) // how many harvests have hydroponics done?
-GLOBAL_VAR_INIT(score_oremined, 0) // obvious
-GLOBAL_VAR_INIT(score_researchdone, 0)
-GLOBAL_VAR_INIT(score_eventsendured, 0) // how many random events did the station survive?
-GLOBAL_VAR_INIT(score_powerloss, 0) // how many APCs have poor charge?
-GLOBAL_VAR_INIT(score_escapees, 0) // how many people got out alive?
-GLOBAL_VAR_INIT(score_deadcrew, 0) // dead bodies on the station, oh no
-GLOBAL_VAR_INIT(score_mess, 0) // how much poo, puke, gibs, etc went uncleaned
-GLOBAL_VAR_INIT(score_meals, 0)
-GLOBAL_VAR_INIT(score_disease, 0) // how many rampant, uncured diseases are on board the station
-GLOBAL_VAR_INIT(score_deadcommand, 0) // used during rev, how many command staff perished
-GLOBAL_VAR_INIT(score_arrested, 0) // how many traitors/revs/whatever are alive in the brig
-GLOBAL_VAR_INIT(score_traitorswon, 0) // how many traitors were successful?
-GLOBAL_VAR_INIT(score_allarrested, 0) // did the crew catch all the enemies alive?
-GLOBAL_VAR_INIT(score_opkilled, 0) // used during nuke mode, how many operatives died?
-GLOBAL_VAR_INIT(score_disc, 0) // is the disc safe and secure?
-GLOBAL_VAR_INIT(score_nuked, 0) // was the station blown into little bits?
-GLOBAL_VAR_INIT(score_nuked_penalty, 0) //penalty for getting blown to bits
-
- // these ones are mainly for the stat panel
-GLOBAL_VAR_INIT(score_powerbonus, 0) // if all APCs on the station are running optimally, big bonus
-GLOBAL_VAR_INIT(score_messbonus, 0) // if there are no messes on the station anywhere, huge bonus
-GLOBAL_VAR_INIT(score_deadaipenalty, 0) // is the AI dead? if so, big penalty
-GLOBAL_VAR_INIT(score_foodeaten, 0) // nom nom nom
-GLOBAL_VAR_INIT(score_clownabuse, 0) // how many times a clown was punched, struck or otherwise maligned
-GLOBAL_VAR(score_richestname) // this is all stuff to show who was the richest alive on the shuttle
-GLOBAL_VAR(score_richestjob) // kinda pointless if you dont have a money system i guess
-GLOBAL_VAR_INIT(score_richestcash, 0)
-GLOBAL_VAR(score_richestkey)
-GLOBAL_VAR(score_dmgestname) // who had the most damage on the shuttle (but was still alive)
-GLOBAL_VAR(score_dmgestjob)
-GLOBAL_VAR_INIT(score_dmgestdamage, 0)
-GLOBAL_VAR(score_dmgestkey)
-
#define TAB " "
GLOBAL_VAR_INIT(timezoneOffset, 0) // The difference betwen midnight (of the host computer) and 0 world.ticks.
@@ -86,13 +48,9 @@ GLOBAL_VAR_INIT(copier_items_printed, 0)
GLOBAL_VAR_INIT(copier_max_items, 300)
GLOBAL_VAR_INIT(copier_items_printed_logged, FALSE)
-
-GLOBAL_VAR(map_name) // Self explanatory
-
GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) // Station datacore, manifest, etc
GLOBAL_VAR_INIT(panic_bunker_enabled, FALSE) // Is the panic bunker enabled
-GLOBAL_VAR_INIT(pending_server_update, FALSE)
GLOBAL_LIST_EMPTY(ability_verbs) // Create-level abilities
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))
diff --git a/code/_globalvars/sensitive.dm b/code/_globalvars/sensitive.dm
deleted file mode 100644
index 4c04b2d480b..00000000000
--- a/code/_globalvars/sensitive.dm
+++ /dev/null
@@ -1,12 +0,0 @@
-// All global vars in this file require a different handler as we dont want their data to be exposed, not even to admins with permission to view globals
-// They write as native BYOND globals, which means they cant be edited at all, and also use a format
-// Please only throw absolutely crucial do-not-view shit in here please. -aa07
-
-// MySQL configuration
-GLOBAL_REAL_VAR(sqladdress) = "localhost"
-GLOBAL_REAL_VAR(sqlport) = "3306"
-GLOBAL_REAL_VAR(sqlfdbkdb) = "test"
-GLOBAL_REAL_VAR(sqlfdbklogin) = "root"
-GLOBAL_REAL_VAR(sqlfdbkpass) = ""
-GLOBAL_REAL_VAR(sqlfdbktableprefix) = "erro_"
-GLOBAL_REAL_VAR(sql_version) = 0
diff --git a/code/_globalvars/traits.dm b/code/_globalvars/traits.dm
index 382303c1212..39551da14b6 100644
--- a/code/_globalvars/traits.dm
+++ b/code/_globalvars/traits.dm
@@ -24,6 +24,7 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_XENO_HOST" = TRAIT_XENO_HOST,
"TRAIT_SHOCKIMMUNE" = TRAIT_SHOCKIMMUNE,
"TRAIT_TESLA_SHOCKIMMUNE" = TRAIT_TESLA_SHOCKIMMUNE,
+ "TRAIT_TELEKINESIS" = TRAIT_TELEKINESIS,
"TRAIT_RESISTHEAT" = TRAIT_RESISTHEAT,
"TRAIT_RESISTHEATHANDS" = TRAIT_RESISTHEATHANDS,
"TRAIT_RESISTCOLD" = TRAIT_RESISTCOLD,
@@ -45,7 +46,6 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_DWARF" = TRAIT_DWARF,
"TRAIT_SILENT_FOOTSTEPS" = TRAIT_SILENT_FOOTSTEPS,
"TRAIT_ALCOHOL_TOLERANCE" = TRAIT_ALCOHOL_TOLERANCE,
- "TRAIT_KISS_OF_DEATH" = TRAIT_KISS_OF_DEATH,
"TRAIT_COMIC_SANS" = TRAIT_COMIC_SANS,
"TRAIT_NOFINGERPRINTS" = TRAIT_NOFINGERPRINTS,
@@ -57,7 +57,12 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_NOGERMS" = TRAIT_NOGERMS,
"TRAIT_NODECAY" = TRAIT_NODECAY,
"TRAIT_NOEXAMINE" = TRAIT_NOEXAMINE,
- "TRAIT_NOPAIN" = TRAIT_NOPAIN)))
+ "TRAIT_NOPAIN" = TRAIT_NOPAIN
+ ),
+ /obj/item = list(
+ "TRAIT_SHOW_WIRE_INFO" = TRAIT_SHOW_WIRE_INFO
+ )
+))
/// value -> trait name, generated on use from trait_by_type global
GLOBAL_LIST(trait_name_map)
diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm
index a907a5dfc45..b023aaa4dd0 100644
--- a/code/_onclick/ai.dm
+++ b/code/_onclick/ai.dm
@@ -215,11 +215,3 @@
if(!ai_control_check(user))
return
toggle_light(user)
-
-// AI-CONTROLLED SLIP GENERATOR IN AI CORE
-
-/obj/machinery/ai_slipper/AICtrlClick(mob/living/silicon/ai/user) //Turns liquid dispenser on or off
- ToggleOn()
-
-/obj/machinery/ai_slipper/AIAltClick() //Dispenses liquid if on
- Activate()
diff --git a/code/_onclick/click_override.dm b/code/_onclick/click_override.dm
index 0336c809511..7c720643fe8 100644
--- a/code/_onclick/click_override.dm
+++ b/code/_onclick/click_override.dm
@@ -27,10 +27,10 @@
/obj/item/badminBook/attack_self(mob/living/user as mob)
if(user.middleClickOverride)
- to_chat(user, "You try to draw power from the [src], but you cannot hold the power at this time!")
+ to_chat(user, "You try to draw power from [src], but you cannot hold the power at this time!")
return
user.middleClickOverride = clickBehavior
- to_chat(user, "You draw a bit of power from the [src], you can use middle click or alt click to release the power!")
+ to_chat(user, "You draw a bit of power from [src], you can use middle click or alt click to release the power!")
/datum/middleClickOverride/badminClicker
var/summon_path = /obj/item/reagent_containers/food/snacks/cookie
diff --git a/code/_onclick/cyborg.dm b/code/_onclick/cyborg.dm
index 2bf62cdc5c7..40fcfc82671 100644
--- a/code/_onclick/cyborg.dm
+++ b/code/_onclick/cyborg.dm
@@ -17,7 +17,7 @@
if(is_ventcrawling(src)) // To stop drones interacting with anything while ventcrawling
return
- if(stat == DEAD)
+ if(stat == DEAD || lockcharge || IsWeakened() || stunned || paralysis || low_power_mode)
return
var/list/modifiers = params2list(params)
@@ -169,16 +169,6 @@
/obj/machinery/power/apc/BorgCtrlClick(mob/living/silicon/robot/user) // turns off/on APCs. Forwards to AI code.
AICtrlClick(user)
-
-// AI SLIPPER
-
-/obj/machinery/ai_slipper/BorgCtrlClick(mob/living/silicon/robot/user) //Turns liquid dispenser on or off
- ToggleOn()
-
-/obj/machinery/ai_slipper/BorgAltClick(mob/living/silicon/robot/user) //Dispenses liquid if on
- Activate()
-
-
// TURRETCONTROL
/obj/machinery/turretid/BorgCtrlClick(mob/living/silicon/robot/user) //turret control on/off. Forwards to AI code.
diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm
index 35c250abc32..c88dd0671b1 100644
--- a/code/_onclick/hud/alert.dm
+++ b/code/_onclick/hud/alert.dm
@@ -122,12 +122,12 @@
icon_state = "too_much_oxy"
/obj/screen/alert/not_enough_nitro
- name = "Choking (No N)"
+ name = "Choking (No N2)"
desc = "You're not getting enough nitrogen. Find some good air before you pass out!"
icon_state = "not_enough_nitro"
/obj/screen/alert/too_much_nitro
- name = "Choking (N)"
+ name = "Choking (N2)"
desc = "There's too much nitrogen in the air, and you're breathing it in! Find some good air before you pass out!"
icon_state = "too_much_nitro"
@@ -308,6 +308,11 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
var/mob/living/L = usr
return L.resist()
+//Constructs
+/obj/screen/alert/holy_fire
+ name = "Holy Fire"
+ desc = "Your body is crumbling from the holy energies. Get out."
+ icon_state = "fire"
//ALIENS
@@ -611,7 +616,7 @@ so as to remain in compliance with the most up-to-date laws."
if(stone)
if(alert(usr, "Do you want to be captured by [stoner]'s soul stone? This will destroy your corpse and make it \
impossible for you to get back into the game as your regular character.",, "No", "Yes") == "Yes")
- stone.opt_in = TRUE
+ stone?.opt_in = TRUE
/obj/screen/alert/notify_soulstone/Destroy()
stone = null
diff --git a/code/_onclick/hud/fullscreen.dm b/code/_onclick/hud/fullscreen.dm
index 9d00f216eac..f6c8880a485 100644
--- a/code/_onclick/hud/fullscreen.dm
+++ b/code/_onclick/hud/fullscreen.dm
@@ -99,11 +99,6 @@
/obj/screen/fullscreen/impaired
icon_state = "impairedoverlay"
-/obj/screen/fullscreen/blurry
- icon = 'icons/mob/screen_gen.dmi'
- screen_loc = "WEST,SOUTH to EAST,NORTH"
- icon_state = "blurry"
-
/obj/screen/fullscreen/flash
icon = 'icons/mob/screen_gen.dmi'
screen_loc = "WEST,SOUTH to EAST,NORTH"
diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index 0cfb6985b8e..9779e306939 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -37,6 +37,8 @@
var/action_buttons_hidden = FALSE
var/list/obj/screen/plane_master/plane_masters = list() // see "appearance_flags" in the ref, assoc list of "[plane]" = object
+ ///Assoc list of controller groups, associated with key string group name with value of the plane master controller ref
+ var/list/atom/movable/plane_master_controller/plane_master_controllers = list()
/mob/proc/create_mob_hud()
if(client && !hud_used)
@@ -53,6 +55,10 @@
plane_masters["[instance.plane]"] = instance
instance.backdrop(mymob)
+ for(var/mytype in subtypesof(/atom/movable/plane_master_controller))
+ var/atom/movable/plane_master_controller/controller_instance = new mytype(src)
+ plane_master_controllers[controller_instance.name] = controller_instance
+
/datum/hud/Destroy()
if(mymob.hud_used == src)
mymob.hud_used = null
@@ -89,6 +95,7 @@
nightvisionicon = null
QDEL_LIST_ASSOC_VAL(plane_masters)
+ QDEL_LIST_ASSOC_VAL(plane_master_controllers)
mymob = null
return ..()
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 8f125079d6b..39807d6a8c5 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -376,7 +376,7 @@
for(var/obj/screen/craft/crafting in static_inventory)
if(!S.can_craft)
crafting.invisibility = INVISIBILITY_ABSTRACT
- H.handcrafting.close(H)
+ H.handcrafting?.close(H)
else
crafting.invisibility = initial(crafting.invisibility)
diff --git a/code/_onclick/hud/plane_master_controller.dm b/code/_onclick/hud/plane_master_controller.dm
new file mode 100644
index 00000000000..b525dfc0ef3
--- /dev/null
+++ b/code/_onclick/hud/plane_master_controller.dm
@@ -0,0 +1,77 @@
+///Atom that manages and controls multiple planes. It's an atom so we can hook into add_filter etc. Multiple controllers can control one plane.
+/atom/movable/plane_master_controller
+ ///List of planes in this controllers control. Initially this is a normal list, but becomes an assoc list of plane numbers as strings | plane instance
+ var/list/controlled_planes = list()
+ ///hud that owns this controller
+ var/datum/hud/owner_hud
+
+///Ensures that all the planes are correctly in the controlled_planes list.
+/atom/movable/plane_master_controller/New(hud)
+ . = ..()
+ owner_hud = hud
+ var/assoc_controlled_planes = list()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/instance = owner_hud.plane_masters["[i]"]
+ assoc_controlled_planes["[i]"] = instance
+ controlled_planes = assoc_controlled_planes
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/add_filter(name, priority, list/params)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.add_filter(name, priority, params)
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/remove_filter(name_or_names)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.remove_filter(name_or_names)
+
+/atom/movable/plane_master_controller/update_filters()
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.update_filters()
+
+///Gets all filters for this controllers plane masters
+/atom/movable/plane_master_controller/proc/get_filters(name)
+ . = list()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ . += pm_iterator.get_filter(name)
+
+///Transitions all filters owned by this plane master controller
+/atom/movable/plane_master_controller/transition_filter(name, time, list/new_params, easing, loop)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.transition_filter(name, time, new_params, easing, loop)
+
+///Full override so we can just use filterrific
+/atom/movable/plane_master_controller/add_atom_colour(coloration, colour_priority)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.add_atom_colour(coloration, colour_priority)
+
+
+///Removes an instance of colour_type from the atom's atom_colours list
+/atom/movable/plane_master_controller/remove_atom_colour(colour_priority, coloration)
+ . = ..()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.remove_atom_colour(colour_priority, coloration)
+
+
+///Resets the atom's color to null, and then sets it to the highest priority colour available
+/atom/movable/plane_master_controller/update_atom_colour()
+ for(var/i in controlled_planes)
+ var/obj/screen/plane_master/pm_iterator = controlled_planes[i]
+ pm_iterator.update_atom_colour()
+
+
+/atom/movable/plane_master_controller/game
+ name = PLANE_MASTERS_GAME
+ controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE)
diff --git a/code/_onclick/hud/robot.dm b/code/_onclick/hud/robot.dm
index bd1c5210826..c476232387d 100644
--- a/code/_onclick/hud/robot.dm
+++ b/code/_onclick/hud/robot.dm
@@ -78,15 +78,6 @@
var/mob/living/silicon/robot/R = usr
R.toggle_ionpulse()
-/obj/screen/robot/panel
- name = "installed modules"
- icon_state = "panel"
-
-/obj/screen/robot/panel/Click()
- if(issilicon(usr))
- var/mob/living/silicon/robot/R = usr
- R.installed_modules()
-
/obj/screen/robot/mov_intent
name = "fast/slow toggle"
icon_state = "running"
@@ -224,16 +215,6 @@
var/x = -4 //Start at CENTER-4,SOUTH+1
var/y = 1
- //Unfortunately adding the emag module to the list of modules has to be here. This is because a borg can
- //be emagged before they actually select a module. - or some situation can cause them to get a new module
- // - or some situation might cause them to get de-emagged or something.
- if(R.emagged || R.weapons_unlock)
- if(!(R.module.emag in R.module.modules))
- R.module.modules.Add(R.module.emag)
- else
- if(R.module.emag in R.module.modules)
- R.module.modules.Remove(R.module.emag)
-
for(var/atom/movable/A in R.module.modules)
if( (A != R.module_state_1) && (A != R.module_state_2) && (A != R.module_state_3) )
//Module is not currently active
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 1fe1c68522b..9d4edca6ebb 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -1,5 +1,5 @@
/obj/item/proc/melee_attack_chain(mob/user, atom/target, params)
- if(!tool_attack_chain(user, target) && pre_attackby(target, user, params))
+ if(!tool_attack_chain(user, target) && pre_attack(target, user, params))
// Return 1 in attackby() to prevent afterattack() effects (when safely moving items for example)
var/resolved = target.attackby(src, user, params)
if(!resolved && target && !QDELETED(src))
@@ -18,7 +18,7 @@
return
return
-/obj/item/proc/pre_attackby(atom/A, mob/living/user, params) //do stuff before attackby!
+/obj/item/proc/pre_attack(atom/A, mob/living/user, params) //do stuff before attackby!
if(is_hot(src) && A.reagents && !ismob(A))
to_chat(user, "You heat [A] with [src].")
A.reagents.temperature_reagents(is_hot(src))
diff --git a/code/_onclick/other_mobs.dm b/code/_onclick/other_mobs.dm
index b2338937ebc..7eed9f0e2ef 100644
--- a/code/_onclick/other_mobs.dm
+++ b/code/_onclick/other_mobs.dm
@@ -45,7 +45,7 @@
if(HAS_TRAIT(src, TRAIT_LASEREYES) && a_intent == INTENT_HARM)
LaserEyes(A)
- if(dna.GetSEState(GLOB.teleblock))
+ if(HAS_TRAIT(src, TRAIT_TELEKINESIS))
A.attack_tk(src)
if(isturf(A) && get_dist(src, A) <= 1)
diff --git a/code/_onclick/telekinesis.dm b/code/_onclick/telekinesis.dm
index 342af86c0b6..5e22e548a99 100644
--- a/code/_onclick/telekinesis.dm
+++ b/code/_onclick/telekinesis.dm
@@ -39,7 +39,7 @@
/obj/item/attack_tk(mob/user)
if(user.stat || !isturf(loc))
return
- if(user.dna?.GetSEState(GLOB.teleblock) && !user.get_active_hand()) // both should already be true to get here
+ if(HAS_TRAIT(user, TRAIT_TELEKINESIS) && !user.get_active_hand()) // both should already be true to get here
var/obj/item/tk_grab/O = new(src)
O.form_grab(user, src)
else
@@ -109,7 +109,7 @@
if(!host || host != user)
qdel(src)
return
- if(!host.dna?.GetSEState(GLOB.teleblock))
+ if(!HAS_TRAIT(host, TRAIT_TELEKINESIS))
qdel(src)
return
if(isobj(target) && !isturf(target.loc))
@@ -139,6 +139,12 @@
else
+ if(focus.buckled_mobs)
+ to_chat(user, "This object is too heavy to move with something buckled to it!")
+ return
+ if(length(focus.client_mobs_in_contents))
+ to_chat(user, "This object is too heavy to move with something inside of it!")
+ return
apply_focus_overlay()
focus.throw_at(target, 10, 1, user)
last_throw = world.time
diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
deleted file mode 100644
index 3b39682efbf..00000000000
--- a/code/controllers/configuration.dm
+++ /dev/null
@@ -1,958 +0,0 @@
-/datum/configuration
- var/server_name = null // server name (for world name / status)
- var/server_tag_line = null // server tagline (for showing on hub entry)
- var/server_extra_features = null // server-specific extra features (for hub entry)
- var/server_suffix = 0 // generate numeric suffix based on server port
-
- var/minimum_client_build = 1421 // Build 1421 due to the middle mouse button exploit
-
- var/nudge_script_path = "nudge.py" // where the nudge.py script is located
-
- var/log_ooc = 0 // log OOC channel
- var/log_access = 0 // log login/logout
- var/log_say = 0 // log client say
- var/log_admin = 0 // log admin actions
- var/log_debug = 1 // log debug output
- var/log_game = 0 // log game events
- var/log_vote = 0 // log voting
- var/log_whisper = 0 // log client whisper
- var/log_emote = 0 // log emotes
- var/log_attack = 0 // log attack messages
- var/log_adminchat = 0 // log admin chat messages
- var/log_adminwarn = 0 // log warnings admins get about bomb construction and such
- var/log_pda = 0 // log pda messages
- var/log_world_output = 0 // log world.log << messages
- var/log_runtimes = 0 // logs world.log to a file
- var/log_hrefs = 0 // logs all links clicked in-game. Could be used for debugging and tracking down exploits
- var/sql_enabled = 0 // for sql switching
- var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
- var/pregame_timestart = 240 // Time it takes for the server to start the game
- var/allow_vote_restart = 0 // allow votes to restart
- var/allow_vote_mode = 0 // allow votes to change mode
- var/vote_delay = 6000 // minimum time between voting sessions (deciseconds, 10 minute default)
- var/vote_period = 600 // length of voting period (deciseconds, default 1 minute)
- var/vote_autotransfer_initial = 72000 // Length of time before the first autotransfer vote is called
- var/vote_autotransfer_interval = 18000 // length of time before next sequential autotransfer vote
- var/vote_no_default = 0 // vote does not default to nochange/norestart (tbi)
- var/vote_no_dead = 0 // dead people can't vote (tbi)
-// var/enable_authentication = 0 // goon authentication
- var/del_new_on_log = 1 // qdel's new players if they log before they spawn in
- var/feature_object_spell_system = 0 //spawns a spellbook which gives object-type spells instead of verb-type spells for the wizard
- var/traitor_scaling = 0 //if amount of traitors scales based on amount of players
- var/protect_roles_from_antagonist = 0// If security and such can be tratior/cult/other
- var/continuous_rounds = 0 // Gamemodes which end instantly will instead keep on going until the round ends by escape shuttle or nuke.
- var/allow_Metadata = 0 // Metadata is supported.
- var/popup_admin_pm = 0 //adminPMs to non-admins show in a pop-up 'reply' window when set to 1.
- var/Ticklag = 0.5
- var/socket_talk = 0 // use socket_talk to communicate with other processes
- var/list/resource_urls = null
- var/antag_hud_allowed = 0 // Ghosts can turn on Antagovision to see a HUD of who is the bad guys this round.
- var/antag_hud_restricted = 0 // Ghosts that turn on Antagovision cannot rejoin the round.
- var/list/mode_names = list()
- var/list/modes = list() // allowed modes
- var/list/votable_modes = list() // votable modes
- var/list/probabilities = list() // relative probability of each mode
- var/humans_need_surnames = 0
- var/allow_random_events = 0 // enables random events mid-round when set to 1
- var/allow_ai = 1 // allow ai job
- var/respawn = 0
- var/guest_jobban = 1
- var/panic_bunker_threshold = 150 // above this player count threshold, never-before-seen players are blocked from connecting
- var/usewhitelist = 0
- var/mods_are_mentors = 0
- var/load_jobs_from_txt = 0
- var/automute_on = 0 //enables automuting/spam prevention
- var/jobs_have_minimal_access = 0 //determines whether jobs use minimal access or expanded access.
- var/round_abandon_penalty_period = 30 MINUTES // Time from round start during which ghosting out is penalized
- var/medal_hub_address = null
- var/medal_hub_password = null
-
- var/reactionary_explosions = 0 //If we use reactionary explosions, explosions that react to walls and doors
-
- var/assistantlimit = 0 //enables assistant limiting
- var/assistantratio = 2 //how many assistants to security members
-
- // The AFK subsystem will not be activated if any of the below config values are equal or less than 0
- var/warn_afk_minimum = 0 // How long till you get a warning while being AFK
- var/auto_cryo_afk = 0 // How long till you get put into cryo when you're AFK
- var/auto_despawn_afk = 0 // How long till you actually despawn in cryo when you're AFK (Not ssd so not automatic)
-
- var/auto_cryo_ssd_mins = 0
- var/ssd_warning = 0
-
- var/list_afk_minimum = 5 // How long people have to be AFK before it's listed on the "List AFK players" verb
-
- var/traitor_objectives_amount = 2
- var/shadowling_max_age = 0
-
- var/max_maint_drones = 5 //This many drones can spawn,
- var/allow_drone_spawn = 1 //assuming the admin allow them to.
- var/drone_build_time = 1200 //A drone will become available every X ticks since last drone spawn. Default is 2 minutes.
-
- var/usealienwhitelist = 0
- var/limitalienplayers = 0
- var/alien_to_human_ratio = 0.5
-
- var/server
- var/banappeals
- var/wikiurl = "http://example.org"
- var/forumurl = "http://example.org"
- var/rulesurl = "http://example.org"
- var/githuburl = "http://example.org"
- var/donationsurl = "http://example.org"
- var/repositoryurl = "http://example.org"
- var/discordurl = "http://example.org"
- var/discordforumurl = "http://example.org"
-
- var/overflow_server_url
- var/forbid_singulo_possession = 0
-
- var/check_randomizer = 0
-
- //game_options.txt configs
-
- var/bones_can_break = 1
-
- var/revival_pod_plants = 1
- var/revival_cloning = 1
- var/revival_brain_life = -1
-
- var/auto_toggle_ooc_during_round = 0
-
- var/shuttle_refuel_delay = 12000
-
- //Used for modifying movement speed for mobs.
- //Unversal modifiers
- var/run_speed = 0
- var/walk_speed = 0
-
- //Mob specific modifiers. NOTE: These will affect different mob types in different ways
- var/human_delay = 0
- var/robot_delay = 0
- var/monkey_delay = 0
- var/alien_delay = 0
- var/slime_delay = 0
- var/animal_delay = 0
-
- //IP Intel vars
- var/ipintel_email
- var/ipintel_rating_bad = 1
- var/ipintel_save_good = 12
- var/ipintel_save_bad = 1
- var/ipintel_domain = "check.getipintel.net"
- var/ipintel_maxplaytime = 0
- var/ipintel_whitelist = 0
- var/ipintel_detailsurl = "https://iphub.info/?ip="
-
- var/forum_link_url
- var/forum_playerinfo_url
-
- var/admin_legacy_system = 0 //Defines whether the server uses the legacy admin system with admins.txt or the SQL system. Config option in config.txt
- var/ban_legacy_system = 0 //Defines whether the server uses the legacy banning system with the files in /data or the SQL system. Config option in config.txt
- var/use_age_restriction_for_jobs = 0 //Do jobs use account age restrictions? --requires database
- var/use_age_restriction_for_antags = 0 //Do antags use account age restrictions? --requires database
-
- var/use_exp_tracking = 0
- var/use_exp_restrictions = 0
- var/use_exp_restrictions_admin_bypass = 0
-
- var/simultaneous_pm_warning_timeout = 100
-
- var/assistant_maint = 0 //Do assistants get maint access?
- var/gateway_delay = 6000
- var/ghost_interaction = 0
-
- var/comms_password = ""
-
- var/default_laws = 0 //Controls what laws the AI spawns with.
-
- var/const/minutes_to_ticks = 60 * 10
- // Event settings
- var/expected_round_length = 60 * 2 * minutes_to_ticks // 2 hours
- // If the first delay has a custom start time
- // No custom time, no custom time, between 80 to 100 minutes respectively.
- var/list/event_first_run = list(EVENT_LEVEL_MUNDANE = null, EVENT_LEVEL_MODERATE = null, EVENT_LEVEL_MAJOR = list("lower" = 48000, "upper" = 60000))
- // The lowest delay until next event
- // 10, 30, 50 minutes respectively
- var/list/event_delay_lower = list(EVENT_LEVEL_MUNDANE = 6000, EVENT_LEVEL_MODERATE = 18000, EVENT_LEVEL_MAJOR = 30000)
- // The upper delay until next event
- // 15, 45, 70 minutes respectively
- var/list/event_delay_upper = list(EVENT_LEVEL_MUNDANE = 9000, EVENT_LEVEL_MODERATE = 27000, EVENT_LEVEL_MAJOR = 42000)
-
- var/starlight = 0 // Whether space turfs have ambient light or not
- var/allow_holidays = 0
- var/player_overflow_cap = 0 //number of players before the server starts rerouting
- var/list/overflow_whitelist = list() //whitelist for overflow
-
- var/disable_away_missions = 0 // disable away missions
- var/disable_space_ruins = 0 //disable space ruins
-
- var/extra_space_ruin_levels_min = 4
- var/extra_space_ruin_levels_max = 8
-
- var/ooc_allowed = 1
- var/looc_allowed = 1
- var/dooc_allowed = 1
- var/dsay_allowed = 1
-
- var/disable_lobby_music = 0 // Disables the lobby music
- var/disable_cid_warn_popup = 0 //disables the annoying "You have already logged in this round, disconnect or be banned" popup, because it annoys the shit out of me when testing.
-
- var/max_loadout_points = 5 // How many points can be spent on extra items in character setup
-
- var/disable_ooc_emoji = 0 // prevents people from using emoji in OOC
-
- var/shutdown_on_reboot = 0 // Whether to shut down the world instead of rebooting it
-
- var/disable_karma = 0 // Disable all karma functions and unlock karma jobs by default
-
- // StonedMC
- var/tick_limit_mc_init = TICK_LIMIT_MC_INIT_DEFAULT //SSinitialization throttling
-
- // Highpop tickrates
- var/base_mc_tick_rate = 1
- var/high_pop_mc_tick_rate = 1.1
-
- var/high_pop_mc_mode_amount = 65
- var/disable_high_pop_mc_mode_amount = 60
-
- // Nightshift
- var/randomize_shift_time = FALSE
- var/enable_night_shifts = FALSE
-
- // Developer
- var/developer_express_start = 0
-
- // Automatic localhost admin disable
- var/disable_localhost_admin = 0
-
- //Start now warning
- var/start_now_confirmation = 0
-
- // Lavaland
- var/lavaland_budget = 60
-
- //cube monkey limit
- var/cubemonkeycap = 20
-
- // Makes gamemodes respect player limits
- var/enable_gamemode_player_limit = 0
-
- /// BYOND account age limit for notifcations of new accounts (Any accounts older than this value will not send notifications on first join)
- var/byond_account_age_threshold = 7
-
- /// Are discord webhooks enabled?
- var/discord_webhooks_enabled = FALSE
-
- /// Role ID to be pinged for administrative events
- var/discord_admin_role_id = null // Intentional null usage
-
- /// Webhook URLs for the main public webhook
- var/list/discord_main_webhook_urls = list()
-
- /// Webhook URLs for the admin webhook
- var/list/discord_admin_webhook_urls = list()
-
- /// Webhook URLs for the mentor webhook
- var/list/discord_mentor_webhook_urls = list()
-
- /// Do we want to forward all adminhelps to the discord or just ahelps when admins are offline.
- /// (This does not mean all ahelps are pinged, only ahelps sent when staff are offline get the ping, regardless of this setting)
- var/discord_forward_all_ahelps = FALSE
-
- /// URL for the CentCom Ban DB API
- var/centcom_ban_db_url = null
-
- /// Timeout (seconds) for async SQL queries
- var/async_sql_query_timeout = 10 SECONDS
-
- /// Limit of how many SQL threads can run at once
- var/rust_sql_thread_limit = 50
-
- /// Max amount of CIDs that one ckey can have attached to them before they trip a warning
- var/max_client_cid_history = 3
-
- /// Enable auto profiler of rounds
- var/auto_profile = FALSE
-
-/datum/configuration/New()
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = T
-
- if(initial(M.config_tag))
- if(!(initial(M.config_tag) in modes)) // ensure each mode is added only once
- src.modes += initial(M.config_tag)
- src.mode_names[initial(M.config_tag)] = initial(M.name)
- src.probabilities[initial(M.config_tag)] = initial(M.probability)
- if(initial(M.votable))
- src.votable_modes += initial(M.config_tag)
- src.votable_modes += "secret"
-
-/datum/configuration/proc/load(filename, type = "config") //the type can also be game_options, in which case it uses a different switch. not making it separate to not copypaste code - Urist
- if(IsAdminAdvancedProcCall())
- to_chat(usr, "Config reload blocked: Advanced ProcCall detected.")
- message_admins("[key_name(usr)] attempted to reload configuration via advanced proc-call")
- log_admin("[key_name(usr)] attempted to reload configuration via advanced proc-call")
- return
- var/list/Lines = file2list(filename)
-
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- if(type == "config")
- switch(name)
- if("resource_urls")
- config.resource_urls = splittext(value, " ")
-
- if("admin_legacy_system")
- config.admin_legacy_system = 1
-
- if("ban_legacy_system")
- config.ban_legacy_system = 1
-
- if("use_age_restriction_for_jobs")
- config.use_age_restriction_for_jobs = 1
-
- if("use_age_restriction_for_antags")
- config.use_age_restriction_for_antags = 1
-
- if("use_exp_tracking")
- config.use_exp_tracking = 1
-
- if("use_exp_restrictions")
- config.use_exp_restrictions = 1
-
- if("use_exp_restrictions_admin_bypass")
- config.use_exp_restrictions_admin_bypass = 1
-
- if("jobs_have_minimal_access")
- config.jobs_have_minimal_access = 1
-
- if("shadowling_max_age")
- config.shadowling_max_age = text2num(value)
-
- if("warn_afk_minimum")
- config.warn_afk_minimum = text2num(value)
- if("auto_cryo_afk")
- config.auto_cryo_afk = text2num(value)
- if("auto_despawn_afk")
- config.auto_despawn_afk = text2num(value)
-
- if("auto_cryo_ssd_mins")
- config.auto_cryo_ssd_mins = text2num(value)
- if("ssd_warning")
- config.ssd_warning = 1
-
- if("list_afk_minimum")
- config.list_afk_minimum = text2num(value)
-
- if("ipintel_email")
- if(value != "ch@nge.me")
- config.ipintel_email = value
- if("ipintel_rating_bad")
- config.ipintel_rating_bad = text2num(value)
- if("ipintel_domain")
- config.ipintel_domain = value
- if("ipintel_save_good")
- config.ipintel_save_good = text2num(value)
- if("ipintel_save_bad")
- config.ipintel_save_bad = text2num(value)
- if("ipintel_maxplaytime")
- config.ipintel_maxplaytime = text2num(value)
- if("ipintel_whitelist")
- config.ipintel_whitelist = 1
- if("ipintel_detailsurl")
- config.ipintel_detailsurl = value
-
- if("forum_link_url")
- config.forum_link_url = value
-
- if("forum_playerinfo_url")
- config.forum_playerinfo_url = value
-
- if("log_ooc")
- config.log_ooc = 1
-
- if("log_access")
- config.log_access = 1
-
- if("log_say")
- config.log_say = 1
-
- if("log_admin")
- config.log_admin = 1
-
- if("log_debug")
- config.log_debug = 1
-
- if("log_game")
- config.log_game = 1
-
- if("log_vote")
- config.log_vote = 1
-
- if("log_whisper")
- config.log_whisper = 1
-
- if("log_attack")
- config.log_attack = 1
-
- if("log_emote")
- config.log_emote = 1
-
- if("log_adminchat")
- config.log_adminchat = 1
-
- if("log_adminwarn")
- config.log_adminwarn = 1
-
- if("log_pda")
- config.log_pda = 1
-
- if("log_world_output")
- config.log_world_output = 1
-
- if("log_hrefs")
- config.log_hrefs = 1
-
- if("log_runtime")
- config.log_runtimes = 1
-
- if("mentors")
- config.mods_are_mentors = 1
-
- if("allow_admin_ooccolor")
- config.allow_admin_ooccolor = 1
-
- if("pregame_timestart")
- config.pregame_timestart = text2num(value)
-
- if("allow_vote_restart")
- config.allow_vote_restart = 1
-
- if("allow_vote_mode")
- config.allow_vote_mode = 1
-
- if("no_dead_vote")
- config.vote_no_dead = 1
-
- if("vote_autotransfer_initial")
- config.vote_autotransfer_initial = text2num(value)
-
- if("vote_autotransfer_interval")
- config.vote_autotransfer_interval = text2num(value)
-
- if("default_no_vote")
- config.vote_no_default = 1
-
- if("vote_delay")
- config.vote_delay = text2num(value)
-
- if("vote_period")
- config.vote_period = text2num(value)
-
- if("allow_ai")
- config.allow_ai = 1
-
-// if("authentication")
-// config.enable_authentication = 1
-
- if("norespawn")
- config.respawn = 0
-
- if("servername")
- config.server_name = value
-
- if("server_tag_line")
- config.server_tag_line = value
-
- if("server_extra_features")
- config.server_extra_features = value
-
- if("serversuffix")
- config.server_suffix = 1
-
- if("minimum_client_build")
- config.minimum_client_build = text2num(value)
-
- if("nudge_script_path")
- config.nudge_script_path = value
-
- if("server")
- config.server = value
-
- if("banappeals")
- config.banappeals = value
-
- if("wikiurl")
- config.wikiurl = value
-
- if("forumurl")
- config.forumurl = value
-
- if("rulesurl")
- config.rulesurl = value
-
- if("githuburl")
- config.githuburl = value
-
- if("discordurl")
- config.discordurl = value
-
- if("discordforumurl")
- config.discordforumurl = value
-
- if("donationsurl")
- config.donationsurl = value
-
- if("repositoryurl")
- config.repositoryurl = value
-
- if("guest_jobban")
- config.guest_jobban = 1
-
- if("guest_ban")
- GLOB.guests_allowed = 0
-
- if("panic_bunker_threshold")
- config.panic_bunker_threshold = text2num(value)
-
- if("usewhitelist")
- config.usewhitelist = 1
-
- if("feature_object_spell_system")
- config.feature_object_spell_system = 1
-
- if("allow_metadata")
- config.allow_Metadata = 1
-
- if("traitor_scaling")
- config.traitor_scaling = 1
-
- if("protect_roles_from_antagonist")
- config.protect_roles_from_antagonist = 1
-
- if("probability")
- var/prob_pos = findtext(value, " ")
- var/prob_name = null
- var/prob_value = null
-
- if(prob_pos)
- prob_name = lowertext(copytext(value, 1, prob_pos))
- prob_value = copytext(value, prob_pos + 1)
- if(prob_name in config.modes)
- config.probabilities[prob_name] = text2num(prob_value)
- else
- log_config("Unknown game mode probability configuration definition: [prob_name].")
- else
- log_config("Incorrect probability configuration definition: [prob_name] [prob_value].")
-
- if("allow_random_events")
- config.allow_random_events = 1
-
- if("load_jobs_from_txt")
- load_jobs_from_txt = 1
-
- if("forbid_singulo_possession")
- forbid_singulo_possession = 1
-
- if("check_randomizer")
- check_randomizer = 1
-
- if("popup_admin_pm")
- config.popup_admin_pm = 1
-
- if("allow_holidays")
- config.allow_holidays = 1
-
- if("ticklag")
- Ticklag = text2num(value)
-
- if("socket_talk")
- socket_talk = text2num(value)
-
- if("allow_antag_hud")
- config.antag_hud_allowed = 1
-
- if("antag_hud_restricted")
- config.antag_hud_restricted = 1
-
- if("humans_need_surnames")
- humans_need_surnames = 1
-
- if("automute_on")
- automute_on = 1
-
- if("usealienwhitelist")
- usealienwhitelist = 1
-
- if("alien_player_ratio")
- limitalienplayers = 1
- alien_to_human_ratio = text2num(value)
-
- if("assistant_maint")
- config.assistant_maint = 1
-
- if("gateway_delay")
- config.gateway_delay = text2num(value)
-
- if("continuous_rounds")
- config.continuous_rounds = 1
-
- if("ghost_interaction")
- config.ghost_interaction = 1
-
- if("comms_password")
- config.comms_password = value
-
- if("python_path")
- if(value)
- GLOB.python_path = value
- else
- if(world.system_type == UNIX)
- GLOB.python_path = "/usr/bin/env python2"
- else //probably windows, if not this should work anyway
- GLOB.python_path = "pythonw"
-
- if("assistant_limit")
- config.assistantlimit = 1
-
- if("assistant_ratio")
- config.assistantratio = text2num(value)
-
- if("allow_drone_spawn")
- config.allow_drone_spawn = text2num(value)
-
- if("drone_build_time")
- config.drone_build_time = text2num(value)
-
- if("max_maint_drones")
- config.max_maint_drones = text2num(value)
-
- if("expected_round_length")
- config.expected_round_length = text2num(value) MINUTES
-
- if("event_custom_start_mundane")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MUNDANE] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_custom_start_moderate")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MODERATE] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_custom_start_major")
- var/values = text2numlist(value, ";")
- config.event_first_run[EVENT_LEVEL_MAJOR] = list("lower" = values[1] MINUTES, "upper" = values[2] MINUTES)
-
- if("event_delay_lower")
- var/values = text2numlist(value, ";")
- config.event_delay_lower[EVENT_LEVEL_MUNDANE] = values[1] MINUTES
- config.event_delay_lower[EVENT_LEVEL_MODERATE] = values[2] MINUTES
- config.event_delay_lower[EVENT_LEVEL_MAJOR] = values[3] MINUTES
-
- if("event_delay_upper")
- var/values = text2numlist(value, ";")
- config.event_delay_upper[EVENT_LEVEL_MUNDANE] = values[1] MINUTES
- config.event_delay_upper[EVENT_LEVEL_MODERATE] = values[2] MINUTES
- config.event_delay_upper[EVENT_LEVEL_MAJOR] = values[3] MINUTES
-
- if("starlight")
- config.starlight = 1
-
- if("player_reroute_cap")
- var/vvalue = text2num(value)
- config.player_overflow_cap = vvalue >= 0 ? vvalue : 0
-
- if("overflow_server_url")
- config.overflow_server_url = value
-
- if("disable_away_missions")
- config.disable_away_missions = 1
-
- if("disable_space_ruins")
- config.disable_space_ruins = 1
-
- if("disable_lobby_music")
- config.disable_lobby_music = 1
-
- if("disable_cid_warn_popup")
- config.disable_cid_warn_popup = 1
-
- if("extra_space_ruin_levels_min")
- var/vvalue = text2num(value)
- config.extra_space_ruin_levels_min = max(vvalue, 0)
-
- if("extra_space_ruin_levels_max")
- var/vvalue = text2num(value)
- config.extra_space_ruin_levels_max = max(vvalue, 0)
-
- if("max_loadout_points")
- config.max_loadout_points = text2num(value)
-
- if("round_abandon_penalty_period")
- config.round_abandon_penalty_period = text2num(value) MINUTES
-
- if("medal_hub_address")
- config.medal_hub_address = value
-
- if("medal_hub_password")
- config.medal_hub_password = value
-
- if("disable_ooc_emoji")
- config.disable_ooc_emoji = 1
-
- if("shutdown_on_reboot")
- config.shutdown_on_reboot = 1
-
- if("shutdown_shell_command")
- GLOB.shutdown_shell_command = value
-
- if("disable_karma")
- config.disable_karma = 1
-
- if("start_now_confirmation")
- config.start_now_confirmation = 1
-
- if("tick_limit_mc_init")
- config.tick_limit_mc_init = text2num(value)
- if("base_mc_tick_rate")
- config.base_mc_tick_rate = text2num(value)
- if("high_pop_mc_tick_rate")
- config.high_pop_mc_tick_rate = text2num(value)
- if("high_pop_mc_mode_amount")
- config.high_pop_mc_mode_amount = text2num(value)
- if("disable_high_pop_mc_mode_amount")
- config.disable_high_pop_mc_mode_amount = text2num(value)
- if("developer_express_start")
- config.developer_express_start = 1
- if("disable_localhost_admin")
- config.disable_localhost_admin = 1
- if("enable_gamemode_player_limit")
- config.enable_gamemode_player_limit = 1
- if("byond_account_age_threshold")
- config.byond_account_age_threshold = text2num(value)
- // Discord stuff
- if("enable_discord_webhooks")
- discord_webhooks_enabled = TRUE
- if("discord_webhooks_admin_role_id")
- discord_admin_role_id = "[value]" // This MUST be a string because BYOND doesnt like massive integers
- if("discord_webhooks_main_url")
- discord_main_webhook_urls = splittext(value, "|")
- if("discord_webhooks_admin_url")
- discord_admin_webhook_urls = splittext(value, "|")
- if("discord_webhooks_mentor_url")
- discord_mentor_webhook_urls = splittext(value, "|")
- if("discord_forward_all_ahelps")
- discord_forward_all_ahelps = TRUE
- // End discord stuff
- if("centcom_ban_db_url")
- centcom_ban_db_url = value
- if("max_client_cid_history")
- max_client_cid_history = text2num(value)
- if("enable_auto_profiler")
- auto_profile = TRUE
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-
- else if(type == "game_options")
- value = text2num(value)
-
- switch(name)
- if("revival_pod_plants")
- config.revival_pod_plants = value
- if("revival_cloning")
- config.revival_cloning = value
- if("revival_brain_life")
- config.revival_brain_life = value
- if("auto_toggle_ooc_during_round")
- config.auto_toggle_ooc_during_round = 1
- if("run_speed")
- config.run_speed = value
- if("walk_speed")
- config.walk_speed = value
- if("human_delay")
- config.human_delay = value
- if("robot_delay")
- config.robot_delay = value
- if("monkey_delay")
- config.monkey_delay = value
- if("alien_delay")
- config.alien_delay = value
- if("slime_delay")
- config.slime_delay = value
- if("animal_delay")
- config.animal_delay = value
- if("bones_can_break")
- config.bones_can_break = value
- if("shuttle_refuel_delay")
- config.shuttle_refuel_delay = text2num(value)
- if("traitor_objectives_amount")
- config.traitor_objectives_amount = text2num(value)
- if("reactionary_explosions")
- config.reactionary_explosions = 1
- if("bombcap")
- var/BombCap = text2num(value)
- if(!BombCap)
- continue
- if(BombCap < 4)
- BombCap = 4
- if(BombCap > 128)
- BombCap = 128
-
- GLOB.max_ex_devastation_range = round(BombCap/4)
- GLOB.max_ex_heavy_range = round(BombCap/2)
- GLOB.max_ex_light_range = BombCap
- GLOB.max_ex_flash_range = BombCap
- GLOB.max_ex_flame_range = BombCap
- if("default_laws")
- config.default_laws = text2num(value)
- if("randomize_shift_time")
- config.randomize_shift_time = TRUE
- if("enable_night_shifts")
- config.enable_night_shifts = TRUE
- if("lavaland_budget")
- config.lavaland_budget = text2num(value)
- if("cubemonkey_cap")
- config.cubemonkeycap = text2num(value)
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-/datum/configuration/proc/loadsql(filename) // -- TLE
- if(IsAdminAdvancedProcCall())
- to_chat(usr, "SQL configuration reload blocked: Advanced ProcCall detected.")
- message_admins("[key_name(usr)] attempted to reload SQL configuration via advanced proc-call")
- log_admin("[key_name(usr)] attempted to reload SQL configuration via advanced proc-call")
- return
- var/list/Lines = file2list(filename)
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- var/pos = findtext(t, " ")
- var/name = null
- var/value = null
-
- if(pos)
- name = lowertext(copytext(t, 1, pos))
- value = copytext(t, pos + 1)
- else
- name = lowertext(t)
-
- if(!name)
- continue
-
- switch(name)
- if("sql_enabled")
- config.sql_enabled = 1
- if("address")
- sqladdress = value
- if("port")
- sqlport = value
- if("feedback_database")
- sqlfdbkdb = value
- if("feedback_login")
- sqlfdbklogin = value
- if("feedback_password")
- sqlfdbkpass = value
- if("feedback_tableprefix")
- sqlfdbktableprefix = value
- if("db_version")
- sql_version = text2num(value)
- if("async_query_timeout")
- async_sql_query_timeout = text2num(value)
- if("rust_sql_thread_limit")
- config.rust_sql_thread_limit = text2num(value)
- else
- log_config("Unknown setting in configuration: '[name]'")
-
-/datum/configuration/proc/loadoverflowwhitelist(filename)
- var/list/Lines = file2list(filename)
- for(var/t in Lines)
- if(!t) continue
-
- t = trim(t)
- if(length(t) == 0)
- continue
- else if(copytext(t, 1, 2) == "#")
- continue
-
- config.overflow_whitelist += t
-
-/datum/configuration/proc/pick_mode(mode_name)
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = T
- if(initial(M.config_tag) && initial(M.config_tag) == mode_name)
- return new T()
- return new /datum/game_mode/extended()
-
-/datum/configuration/proc/get_runnable_modes()
- var/list/datum/game_mode/runnable_modes = new
- for(var/T in subtypesof(/datum/game_mode))
- var/datum/game_mode/M = new T()
-// to_chat(world, "DEBUG: [T], tag=[M.config_tag], prob=[probabilities[M.config_tag]]")
- if(!(M.config_tag in modes))
- qdel(M)
- continue
- if(probabilities[M.config_tag]<=0)
- qdel(M)
- continue
- if(M.can_start())
- runnable_modes[M] = probabilities[M.config_tag]
-// to_chat(world, "DEBUG: runnable_mode\[[runnable_modes.len]\] = [M.config_tag]")
- return runnable_modes
-
-/datum/configuration/proc/load_rank_colour_map()
- var/list/lines = file2list("config/rank_colours.txt")
-
- for(var/line in lines)
- // Skip newlines
- if(!length(line))
- continue
- // Skip comments
- if(line[1] == "#")
- continue
-
- //Split the line at every " - "
- var/list/split_holder = splittext(line, " - ")
- if(!length(split_holder))
- continue
-
- // Rank is before the " - "
- var/rank = split_holder[1]
- if(!rank)
- continue
-
- // Color is after the " - "
- var/colour = ""
- if(length(split_holder) >= 2)
- colour = split_holder[2]
-
- if(rank && colour)
- GLOB.rank_colour_map[rank] = colour
- else
- stack_trace("Invalid colour for rank '[rank]' in config/rank_colours.txt")
diff --git a/code/controllers/configuration/__config_defines.dm b/code/controllers/configuration/__config_defines.dm
new file mode 100644
index 00000000000..f5262401107
--- /dev/null
+++ b/code/controllers/configuration/__config_defines.dm
@@ -0,0 +1,40 @@
+// Config protection states
+#define PROTECTION_PRIVATE "PRIVATE"
+#define PROTECTION_READONLY "READONLY"
+#define PROTECTION_NONE "NONE"
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to bools.
+#define CONFIG_LOAD_BOOL(target, input) \
+ if(!isnull(input)) {\
+ target = ((input == 1) ? TRUE : FALSE)\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to number.
+#define CONFIG_LOAD_NUM(target, input) \
+ if(!isnull(input)) {\
+ target = text2num(input)\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to number, and accepts a macro argument for number maths (ds to min for example)
+#define CONFIG_LOAD_NUM_MULT(target, input, multiplier) \
+ if(!isnull(input)) {\
+ target = text2num(input) multiplier\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Auto casts to string.
+#define CONFIG_LOAD_STR(target, input) \
+ if(!isnull(input)) {\
+ target = "[input]"\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. No casting done.
+#define CONFIG_LOAD_RAW(target, input) \
+ if(!isnull(input)) {\
+ target = input\
+ }
+
+/// Wrapper to not overwrite a variable if a list key doesnt exist. Ensures target is a list.
+#define CONFIG_LOAD_LIST(target, input) \
+ if(islist(input)) {\
+ target = input\
+ }
+
diff --git a/code/controllers/configuration/configuration_core.dm b/code/controllers/configuration/configuration_core.dm
new file mode 100644
index 00000000000..c4938d3efc6
--- /dev/null
+++ b/code/controllers/configuration/configuration_core.dm
@@ -0,0 +1,142 @@
+// Paradise SS13 Configuration System
+// Refactored to use config sections as part of a single TOML file, since thats much better to deal with
+
+/// Global configuration datum holder for all the config sections
+GLOBAL_DATUM_INIT(configuration, /datum/server_configuration, new())
+
+/// Represents a base configuration datum. Has everything else bundled into it
+/datum/server_configuration
+ /// Holder for the admin configuration datum
+ var/datum/configuration_section/admin_configuration/admin
+ /// Holder for the AFK configuration datum
+ var/datum/configuration_section/afk_configuration/afk
+ /// Holder for the custom sprites configuration datum
+ var/datum/configuration_section/custom_sprites_configuration/custom_sprites
+ /// Holder for the DB configuration datum
+ var/datum/configuration_section/database_configuration/database
+ /// Holder for the Discord configuration datum
+ var/datum/configuration_section/discord_configuration/discord
+ /// Holder for the Event configuration datum
+ var/datum/configuration_section/event_configuration/event
+ /// Holder for the gamemode configuration datum
+ var/datum/configuration_section/gamemode_configuration/gamemode
+ /// Holder for the gateway configuration datum
+ var/datum/configuration_section/gateway_configuration/gateway
+ /// Holder for the general configuration datum
+ var/datum/configuration_section/general_configuration/general
+ /// Holder for the IPIntel configuration datum
+ var/datum/configuration_section/ipintel_configuration/ipintel
+ /// Holder for the job configuration datum
+ var/datum/configuration_section/job_configuration/jobs
+ /// Holder for the logging configuration datum
+ var/datum/configuration_section/logging_configuration/logging
+ /// Holder for the MC configuration datum
+ var/datum/configuration_section/mc_configuration/mc
+ /// Holder for the MC configuration datum
+ var/datum/configuration_section/movement_configuration/movement
+ /// Holder for the overflow configuration datum
+ var/datum/configuration_section/overflow_configuration/overflow
+ /// Holder for the ruins configuration datum
+ var/datum/configuration_section/ruin_configuration/ruins
+ /// Holder for the system configuration datum
+ var/datum/configuration_section/system_configuration/system
+ /// Holder for the URL configuration datum
+ var/datum/configuration_section/url_configuration/url
+ /// Holder for the voting configuration datum
+ var/datum/configuration_section/vote_configuration/vote
+
+
+/datum/server_configuration/Destroy(force)
+ SHOULD_CALL_PARENT(FALSE)
+ // This is going to stay existing. I dont care.
+ return QDEL_HINT_LETMELIVE
+
+/datum/server_configuration/CanProcCall(procname)
+ return FALSE // No thanks
+
+/datum/server_configuration/proc/load_configuration()
+ var/start = start_watch() // Time tracking
+
+ // Initialize all our holders
+ admin = new()
+ afk = new()
+ custom_sprites = new()
+ database = new()
+ discord = new()
+ event = new()
+ gamemode = new()
+ gateway = new()
+ general = new()
+ ipintel = new()
+ jobs = new()
+ logging = new()
+ mc = new()
+ movement = new()
+ overflow = new()
+ ruins = new()
+ system = new()
+ url = new()
+ vote = new()
+
+ // Load our stuff up
+ var/config_file = "config/config.toml"
+ if(!fexists(config_file))
+ config_file = "config/example/config.toml" // Fallback to example if user hasnt setup config properly
+ var/raw_json = rustg_toml2json(config_file)
+ var/list/raw_config_data = json_decode(raw_json)
+
+ // Now pass through all our stuff
+ admin.load_data(raw_config_data["admin_configuration"])
+ afk.load_data(raw_config_data["afk_configuration"])
+ custom_sprites.load_data(raw_config_data["custom_sprites_configuration"])
+ database.load_data(raw_config_data["database_configuration"])
+ discord.load_data(raw_config_data["discord_configuration"])
+ event.load_data(raw_config_data["event_configuration"])
+ gamemode.load_data(raw_config_data["gamemode_configuration"])
+ gateway.load_data(raw_config_data["gateway_configuration"])
+ general.load_data(raw_config_data["general_configuration"])
+ ipintel.load_data(raw_config_data["ipintel_configuration"])
+ jobs.load_data(raw_config_data["job_configuration"])
+ logging.load_data(raw_config_data["logging_configuration"])
+ mc.load_data(raw_config_data["mc_configuration"])
+ movement.load_data(raw_config_data["movement_configuration"])
+ overflow.load_data(raw_config_data["overflow_configuration"])
+ ruins.load_data(raw_config_data["ruin_configuration"])
+ system.load_data(raw_config_data["system_configuration"])
+ url.load_data(raw_config_data["url_configuration"])
+ vote.load_data(raw_config_data["voting_configuration"])
+
+ // And report the load
+ DIRECT_OUTPUT(world.log, "Config loaded in [stop_watch(start)]s")
+
+
+/datum/configuration_section
+ /// See __config_defines.dm
+ var/protection_state = PROTECTION_NONE
+
+/datum/configuration_section/proc/load_data(list/data)
+ CRASH("load() not overriden for [type]!")
+
+// Maximum protection
+/datum/configuration_section/can_vv_get(var_name)
+ if(protection_state == PROTECTION_PRIVATE)
+ return FALSE
+ return ..()
+
+/datum/configuration_section/vv_edit_var(var_name, var_value)
+ if(protection_state in list(PROTECTION_PRIVATE, PROTECTION_READONLY))
+ return FALSE
+ return ..()
+
+/datum/configuration_section/vv_get_var(var_name)
+ if(protection_state == PROTECTION_PRIVATE)
+ return FALSE
+ return ..()
+
+/datum/configuration_section/Destroy(force)
+ SHOULD_CALL_PARENT(FALSE)
+ // This is going to stay existing. I dont care.
+ return QDEL_HINT_LETMELIVE
+
+/datum/configuration_section/CanProcCall(procname)
+ return FALSE // No thanks
diff --git a/code/controllers/configuration/sections/admin_configuration.dm b/code/controllers/configuration/sections/admin_configuration.dm
new file mode 100644
index 00000000000..42bcbff4bc1
--- /dev/null
+++ b/code/controllers/configuration/sections/admin_configuration.dm
@@ -0,0 +1,43 @@
+/// Config holder for all admin related things
+/datum/configuration_section/admin_configuration
+ protection_state = PROTECTION_READONLY // Dont even think about it
+ /// Do we want to load admins from the database?
+ var/use_database_admins = FALSE
+ /// Do we want to auto enable admin rights if you connect from localhost?
+ var/enable_localhost_autoadmin = TRUE
+ /// Do we want to allow admins to set their own OOC colour?
+ var/allow_admin_ooc_colour = TRUE
+ /// Assoc list of admin ranks and their stuff. key: rank name string | value: list of rights
+ var/list/rank_rights_map = list()
+ /// Assoc list of admin ckeys and their ranks. key: ckey | value: rank name
+ var/list/ckey_rank_map = list()
+ /// Assoc list of admin ranks and their colours. key: rank | value: rank colour
+ var/list/rank_colour_map = list()
+
+/datum/configuration_section/admin_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(use_database_admins, data["use_database_admins"])
+ CONFIG_LOAD_BOOL(enable_localhost_autoadmin, data["enable_localhost_autoadmin"])
+ CONFIG_LOAD_BOOL(allow_admin_ooc_colour, data["allow_admin_ooc_colour"])
+
+ // Load admin rank tokens
+ if(islist(data["admin_ranks"]))
+ rank_rights_map.Cut()
+ for(var/list/kvset in data["admin_ranks"])
+ rank_rights_map[kvset["name"]] = kvset["rights"]
+
+ // Load admin assignments
+ if(islist(data["admin_assignments"]))
+ ckey_rank_map.Cut()
+ for(var/list/kvset in data["admin_assignments"])
+ ckey_rank_map[kvset["ckey"]] = kvset["rank"]
+
+ // Load admin colours
+ if(islist(data["admin_rank_colour_map"]))
+ rank_colour_map.Cut()
+ for(var/list/kvset in data["admin_rank_colour_map"])
+ rank_colour_map[kvset["name"]] = kvset["colour"]
+
+ // For the person who asks "Why not put admin datum generation in this step?", well I will tell you why
+ // Admins can be reloaded at runtime when DB edits are made and such, and I dont want an entire config reload to be part of this
+ // Separation makes sense. That and in prod we use the DB anyways.
diff --git a/code/controllers/configuration/sections/afk_configuration.dm b/code/controllers/configuration/sections/afk_configuration.dm
new file mode 100644
index 00000000000..90e2c6b7c67
--- /dev/null
+++ b/code/controllers/configuration/sections/afk_configuration.dm
@@ -0,0 +1,17 @@
+/// Config holder for all AFK related things
+/datum/configuration_section/afk_configuration
+ /// Minutes before someone gets an AFK warning
+ var/warning_minutes = 0
+ /// Minutes before someone is auto moved to cryo
+ var/auto_cryo_minutes = 0
+ /// Minutes before someone is auto despawned
+ var/auto_despawn_minutes = 0
+ /// Time before SSD people are auto cryo'd
+ var/ssd_auto_cryo_minutes = 0
+
+/datum/configuration_section/afk_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(warning_minutes, data["afk_warning_minutes"])
+ CONFIG_LOAD_NUM(auto_cryo_minutes, data["afk_auto_cryo_minutes"])
+ CONFIG_LOAD_NUM(auto_despawn_minutes, data["afk_auto_despawn_minutes"])
+ CONFIG_LOAD_NUM(ssd_auto_cryo_minutes, data["ssd_auto_cryo_minutes"])
diff --git a/code/controllers/configuration/sections/custom_sprites_configuration.dm b/code/controllers/configuration/sections/custom_sprites_configuration.dm
new file mode 100644
index 00000000000..3b1c18feb70
--- /dev/null
+++ b/code/controllers/configuration/sections/custom_sprites_configuration.dm
@@ -0,0 +1,25 @@
+/// Config holder for all things regarding custom sprites
+/datum/configuration_section/custom_sprites_configuration
+ /// List of ckeys that have custom cyborg skins
+ var/list/cyborg_ckeys = list()
+ /// List of ckeys that have custom AI core skins
+ var/list/ai_core_ckeys = list()
+ /// List of ckeys that have custom AI hologram skins
+ var/list/ai_hologram_ckeys = list()
+ /// List of ckeys that have custom pAI holoforms
+ var/list/pai_holoform_ckeys = list()
+ /// Assoc of ckeys that have custom pAI screens. Key: ckey | value: list of icon states
+ var/list/ipc_screen_map = list()
+
+/datum/configuration_section/custom_sprites_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_LIST(cyborg_ckeys, data["cyborgs"])
+ CONFIG_LOAD_LIST(ai_core_ckeys, data["ai_core"])
+ CONFIG_LOAD_LIST(ai_hologram_ckeys, data["ai_hologram"])
+ CONFIG_LOAD_LIST(pai_holoform_ckeys, data["pai_holoform"])
+
+ // Load the ipc screens
+ if(islist(data["ipc_screens"]))
+ ipc_screen_map.Cut()
+ for(var/kvp in data["ipc_screens"])
+ ipc_screen_map[kvp["ckey"]] = kvp["screens"]
diff --git a/code/controllers/configuration/sections/database_configuration.dm b/code/controllers/configuration/sections/database_configuration.dm
new file mode 100644
index 00000000000..e7ed707f573
--- /dev/null
+++ b/code/controllers/configuration/sections/database_configuration.dm
@@ -0,0 +1,43 @@
+/// Config holder for all database related things
+/datum/configuration_section/database_configuration
+ protection_state = PROTECTION_PRIVATE // NO! BAD!
+ /// SQL enabled or not
+ var/enabled = FALSE
+ /// What SQL version are we on
+ var/version = 0
+ /// Address of the SQL server
+ var/address = "127.0.0.1"
+ /// Port of the SQL server
+ var/port = 3306
+ /// SQL usename
+ var/username = "root"
+ /// SQL password
+ var/password = "root" // Dont do this in prod. Please......
+ /// Database name
+ var/db = "paradise_gamedb"
+ /// Time in seconds for async queries to time out
+ var/async_query_timeout = 10
+ /// Thread limit for async queries
+ var/async_thread_limit = 50
+
+/datum/configuration_section/database_configuration/load_data(list/data)
+ // UNIT TESTS ARE DEFINED - USE CUSTOM CI VALUES
+ #ifdef UNIT_TESTS
+
+ enabled = TRUE
+ // This needs to happen in the CI environment to ensure the example SQL version gets updated.
+ CONFIG_LOAD_NUM(version, data["sql_version"])
+
+ #else
+ // Load the normal config. Were not in CI mode
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enabled, data["sql_enabled"])
+ CONFIG_LOAD_NUM(version, data["sql_version"])
+ CONFIG_LOAD_STR(address, data["sql_address"])
+ CONFIG_LOAD_NUM(port, data["sql_port"])
+ CONFIG_LOAD_STR(username, data["sql_username"])
+ CONFIG_LOAD_STR(password, data["sql_password"])
+ CONFIG_LOAD_STR(db, data["sql_database"])
+ CONFIG_LOAD_NUM(async_query_timeout, data["async_query_timeout"])
+ CONFIG_LOAD_NUM(async_thread_limit, data["async_thread_limit"])
+ #endif
diff --git a/code/controllers/configuration/sections/discord_configuration.dm b/code/controllers/configuration/sections/discord_configuration.dm
new file mode 100644
index 00000000000..3d51c92aa42
--- /dev/null
+++ b/code/controllers/configuration/sections/discord_configuration.dm
@@ -0,0 +1,26 @@
+/// Config holder for all things relating to discord webhooks
+/datum/configuration_section/discord_configuration
+ protection_state = PROTECTION_PRIVATE // No hook reading
+ /// Are webhooks enabled at all
+ var/webhooks_enabled = FALSE
+ /// Do we want to forward all ahelps or just ones sent with no active admins
+ var/forward_all_ahelps = TRUE
+ /// Admin role to ping if no admins are online. Disables if empty string
+ var/admin_role_id = ""
+ /// List of all URLs for the main webhooks
+ var/list/main_webhook_urls = list()
+ /// List of all URLs for the admin webhooks
+ var/list/mentor_webhook_urls = list()
+ /// List of all URLs for the mentor webhooks
+ var/list/admin_webhook_urls = list()
+
+
+
+/datum/configuration_section/discord_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(webhooks_enabled, data["enable_discord_webhooks"])
+ CONFIG_LOAD_BOOL(forward_all_ahelps, data["forward_all_ahelps"])
+ CONFIG_LOAD_STR(admin_role_id, data["admin_role_id"])
+ CONFIG_LOAD_LIST(main_webhook_urls, data["main_webhook_urls"])
+ CONFIG_LOAD_LIST(mentor_webhook_urls, data["mentor_webhook_urls"])
+ CONFIG_LOAD_LIST(admin_webhook_urls, data["admin_webhook_urls"])
diff --git a/code/controllers/configuration/sections/event_configuration.dm b/code/controllers/configuration/sections/event_configuration.dm
new file mode 100644
index 00000000000..d169a92406d
--- /dev/null
+++ b/code/controllers/configuration/sections/event_configuration.dm
@@ -0,0 +1,61 @@
+/// Config holder for all stuff relating to ingame random events
+/datum/configuration_section/event_configuration
+ /// Do we want to enable random events at all
+ var/enable_random_events = TRUE
+ /// Assoc list of when the first event in a group can run. key: severity | value: assoc list with upper and low bounds (key: "upper"/"lower" | value: time in deciseconds)
+ var/list/first_run_times = list(
+ EVENT_LEVEL_MUNDANE = null,
+ EVENT_LEVEL_MODERATE = null,
+ EVENT_LEVEL_MAJOR = list("lower" = 40 MINUTES, "upper" = 50 MINUTES)
+ ) // <---- Whoever designed this needs to be shot
+
+ /// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
+ var/list/delay_lower_bound = list(
+ EVENT_LEVEL_MUNDANE = 5 MINUTES,
+ EVENT_LEVEL_MODERATE = 15 MINUTES,
+ EVENT_LEVEL_MAJOR = 25 MINUTES
+ )
+ /// Assoc list of lower bounds of event delays. key: severity | value: delay (deciseconds)
+ var/list/delay_upper_bound = list(
+ EVENT_LEVEL_MUNDANE = 7.5 MINUTES,
+ EVENT_LEVEL_MODERATE = 22.5 MINUTES,
+ EVENT_LEVEL_MAJOR = 35 MINUTES
+ )
+ /// Expected time of a round in deciseconds
+ var/expected_round_length = 120 MINUTES // This macro is equivilent to 72,000 deciseconds
+
+/datum/configuration_section/event_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_random_events, data["allow_random_events"])
+
+ // Wrapper cant be used here due to it being multiplied
+ if(isnum(data["expected_round_length"]))
+ expected_round_length = data["expected_round_length"] MINUTES // Convert from minutes to deciseconds
+
+ // Load event severities. This is quite awful but needs to be done so we can account for config mistakes. This event system is awful
+ if(islist(data["event_delay_lower_bounds"]))
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MUNDANE], data["event_delay_lower_bounds"]["mundane"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MODERATE], data["event_delay_lower_bounds"]["moderate"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_lower_bound[EVENT_LEVEL_MAJOR], data["event_delay_lower_bounds"]["major"], MINUTES)
+
+ // Same here. I hate this.
+ if(islist(data["event_delay_upper_bounds"]))
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MUNDANE], data["event_delay_upper_bounds"]["mundane"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MODERATE], data["event_delay_upper_bounds"]["moderate"], MINUTES)
+ CONFIG_LOAD_NUM_MULT(delay_upper_bound[EVENT_LEVEL_MAJOR], data["event_delay_upper_bounds"]["major"], MINUTES)
+
+ // And for the worst, the first run delays. I hate this so much -aa07
+ if(islist(data["event_initial_delays"]))
+ for(var/list/assoclist in data["event_initial_delays"])
+ var/target = null
+ switch(assoclist["severity"])
+ if("mundane")
+ target = EVENT_LEVEL_MUNDANE
+ if("moderate")
+ target = EVENT_LEVEL_MODERATE
+ if("major")
+ target = EVENT_LEVEL_MAJOR
+ ASSERT(target in list(EVENT_LEVEL_MUNDANE, EVENT_LEVEL_MODERATE, EVENT_LEVEL_MAJOR))
+ first_run_times[target] = list("lower" = assoclist["lower_bound"] MINUTES, "upper" = assoclist["upper_bound"] MINUTES)
+
+
diff --git a/code/controllers/configuration/sections/gamemode_configuration.dm b/code/controllers/configuration/sections/gamemode_configuration.dm
new file mode 100644
index 00000000000..d09e02b5c29
--- /dev/null
+++ b/code/controllers/configuration/sections/gamemode_configuration.dm
@@ -0,0 +1,96 @@
+/// Config holder for everything regarding gamemodes
+/datum/configuration_section/gamemode_configuration
+ /// List of all gamemodes (value: config-tag)
+ var/list/gamemodes = list()
+ /// Assoc list of gamemode names (key: config-tag | value: mode name)
+ var/list/gamemode_names = list()
+ /// Assoc list of gamemode probabilities (key: config-tag | value: probability)
+ var/list/probabilities = list()
+ /// List of all gamemodes that can be voted for (value: config-tag)
+ var/list/votable_modes = list()
+ /// Should antags be restricted based on account age?
+ var/antag_account_age_restriction = FALSE
+ /// Max age (in SSmobs cycles, [2 seconds]) before a shadowling starts to take damage if they have not hatched
+ var/shadowling_max_age = 600 // 20 mins
+ /// Scale amount of traitors with population
+ var/traitor_scaling = TRUE
+ /// Prevent mindshield roles getting antagonist status
+ var/prevent_mindshield_antags = TRUE
+ /// Rounds such as rev, wizard and malf end instantly when the antag has won. Enable the setting below to not do that.
+ var/disable_certain_round_early_end = FALSE
+ /// Amount of objectives traitors should get. Does not include escape or hijack.
+ var/traitor_objectives_amount = 2
+ /// Enable player limits on gamemodes? Disabling can be useful for testing
+ var/enable_gamemode_player_limit = TRUE
+
+// Dynamically setup a list of all gamemodes
+/datum/configuration_section/gamemode_configuration/New()
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = T
+
+ // Dont bother if theres no tag
+ if(!initial(M.config_tag))
+ continue
+ // Ensure each mode is added only once
+ if(initial(M.config_tag) in gamemodes)
+ continue
+
+ // Add it in
+ gamemodes += initial(M.config_tag)
+ gamemode_names[initial(M.config_tag)] = initial(M.name)
+ probabilities[initial(M.config_tag)] = initial(M.probability)
+
+ if(initial(M.votable))
+ votable_modes += initial(M.config_tag)
+
+ // Add secret to the votable pool
+ votable_modes += "secret"
+
+/datum/configuration_section/gamemode_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(antag_account_age_restriction, data["antag_account_age_restrictions"])
+ CONFIG_LOAD_BOOL(traitor_scaling, data["traitor_scaling"])
+ CONFIG_LOAD_BOOL(prevent_mindshield_antags, data["prevent_mindshield_antag"])
+ CONFIG_LOAD_BOOL(disable_certain_round_early_end, data["disable_certain_round_early_end"])
+ CONFIG_LOAD_BOOL(enable_gamemode_player_limit, data["enable_gamemode_player_limit"])
+
+ CONFIG_LOAD_NUM(traitor_objectives_amount, data["traitor_objective_amount"])
+ CONFIG_LOAD_NUM(shadowling_max_age, data["shadowling_max_age"])
+
+ // Load gamemode probabilities
+ if(islist(data["gamemode_probabilities"]))
+ for(var/list/assocset in data["gamemode_probabilities"])
+ // Make sure it exists
+ if(assocset["gamemode"] in gamemodes)
+ probabilities[assocset["gamemode"]] = assocset["probability"]
+ else
+ stack_trace("Gamemode [assocset["gamemode"]] has a probability in config, but does not exist!")
+
+/datum/configuration_section/gamemode_configuration/proc/pick_mode(mode_name)
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = T
+ // If the tag exists, and its the same as the mode
+ if(initial(M.config_tag) && (initial(M.config_tag) == mode_name))
+ return new T()
+
+ // Default to extended if it didnt work
+ stack_trace("Could not pick a gamemode. Defaulting to extended. (Attempted mode: [mode_name])")
+ return new /datum/game_mode/extended()
+
+/datum/configuration_section/gamemode_configuration/proc/get_runnable_modes()
+ var/list/datum/game_mode/runnable_modes = new
+ for(var/T in subtypesof(/datum/game_mode))
+ var/datum/game_mode/M = new T()
+
+ if(!(M.config_tag in gamemodes))
+ qdel(M)
+ continue
+
+ if(probabilities[M.config_tag] <= 0)
+ qdel(M)
+ continue
+
+ if(M.can_start())
+ runnable_modes[M] = probabilities[M.config_tag]
+
+ return runnable_modes
diff --git a/code/controllers/configuration/sections/gateway_configuration.dm b/code/controllers/configuration/sections/gateway_configuration.dm
new file mode 100644
index 00000000000..f9e64e5f3be
--- /dev/null
+++ b/code/controllers/configuration/sections/gateway_configuration.dm
@@ -0,0 +1,14 @@
+/// Config holder for all gateway related things
+/datum/configuration_section/gateway_configuration
+ /// Do we want to enable away missions or not
+ var/enable_away_mission = TRUE
+ /// Delay (in deciseconds) before the gateway is usable
+ var/away_mission_delay = 6000
+ /// List of all available away missions
+ var/list/enabled_away_missions = list()
+
+/datum/configuration_section/gateway_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_away_mission, data["enable_away_mission"])
+ CONFIG_LOAD_NUM(away_mission_delay, data["away_mission_delay"])
+ CONFIG_LOAD_LIST(enabled_away_missions, data["enabled_away_missions"])
diff --git a/code/controllers/configuration/sections/general_configuration.dm b/code/controllers/configuration/sections/general_configuration.dm
new file mode 100644
index 00000000000..296304c28b7
--- /dev/null
+++ b/code/controllers/configuration/sections/general_configuration.dm
@@ -0,0 +1,137 @@
+/// Config holder for all general/misc things
+/datum/configuration_section/general_configuration
+ /// Server name for the BYOND hub
+ var/server_name = "Paradise Station"
+ /// Tagline for the hub entry
+ var/server_tag_line = "The perfect mix of RP & action"
+ /// Server features in a newline
+ var/server_features = "Medium RP, varied species/jobs"
+ /// Should bans be stored in the DB
+ var/use_database_bans = FALSE
+ /// Allow character OOC notes
+ var/allow_character_metadata = TRUE
+ /// Time in seconds for the pregame lobby
+ var/lobby_time = 240
+ /// Ban all Guest BYOND accounts
+ var/guest_ban = TRUE
+ /// Player threshold to automatically enable panic bunker
+ var/panic_bunker_threshold = 150
+ /// Allow players to use AntagHUD?
+ var/allow_antag_hud = TRUE
+ /// Forbid players from rejoining if they use AntagHUD?
+ var/restrict_antag_hud_rejoin = TRUE
+ /// Enable respanws by default?
+ var/respawn_enabled = FALSE
+ /// Enable karma? Disable to lockout awarding and unlock everything
+ var/enable_karma = TRUE
+ /// Enable CID randomiser buster?
+ var/enabled_cid_randomiser_buster = FALSE
+ /// Forbid admins from posessing and flying the singulo round
+ var/forbid_singulo_possession = FALSE
+ /// Force open a PM window when replied to? This is very annoying
+ var/popup_admin_pm = FALSE
+ /// Announce holidays (christmas, halloween, etc etc)
+ var/allow_holidays = TRUE
+ /// Enable auto muting in all chat channels
+ var/enable_auto_mute = FALSE
+ /// Show a warning to players to make them accept touching an SSD
+ var/ssd_warning = TRUE
+ /// Allow ghosts to spin chairs round
+ var/ghost_interaction = FALSE
+ /// Enable/disable starlight to light up space
+ var/starlight = TRUE
+ /// Disable lobby music?
+ var/disable_lobby_music = FALSE
+ /// Disable a popup if 2 users are on the same CID?
+ var/disable_cid_warning_popup = FALSE
+ /// Amount of loadout points non-donors should get
+ var/base_loadout_points = 5
+ /// Respawnability loss penalty for eary cryoing (minutes)
+ var/cryo_penalty_period = 30
+ /// Enable OOC emojis?
+ var/enable_ooc_emoji = TRUE
+ /// Auto start the game if on a local test server
+ var/developer_express_start = FALSE
+ /// Minimum client build. Keep above 1421 due to exploits
+ var/minimum_client_build = 1421
+ /// Give a confirm button for the "Start Now" verb
+ var/start_now_confirmation = TRUE
+ /// BYOND account age threshold for first join alerts
+ var/byond_account_age_threshold = 3
+ /// Max CIDs a client can have history of before a warning is thrown
+ var/max_client_cid_history = 20
+ /// Enable automatic profiling to profile.json
+ var/enable_auto_profiler = TRUE
+ /// Auto disable OOC on roundstart?
+ var/auto_disable_ooc = TRUE
+ /// Do we want to allow bones to break?
+ var/breakable_bones = TRUE
+ /// Enable/disable revival pod plants
+ var/enable_revival_pod_plants = TRUE
+ /// Enable/disable cloning
+ var/enable_cloning = TRUE
+ /// Randomise shift time instead of it always being 12:00?
+ var/randomise_shift_time = TRUE
+ /// Enable night-shift lighting?
+ var/enable_night_shifts = TRUE
+ /// Cap for monkey cube monkey spawns
+ var/monkey_cube_cap = 32
+ /// Enable to make explosions react to obstacles instead of ignoring them
+ var/reactionary_explosions = TRUE
+ /// Bomb cap (Devastation) Other values will be calculated around this
+ var/bomb_cap = 20
+ /// Time for a brain to keep its spark of life (deciseconds)
+ var/revival_brain_life = 10 MINUTES
+ /// Enable random AI lawsets from the default=TRUE pool
+ var/random_ai_lawset = TRUE
+
+/datum/configuration_section/general_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+
+ // A lot of bools
+ CONFIG_LOAD_BOOL(use_database_bans, data["use_database_bans"])
+ CONFIG_LOAD_BOOL(allow_character_metadata, data["allow_character_metadata"])
+ CONFIG_LOAD_BOOL(guest_ban, data["guest_ban"])
+ CONFIG_LOAD_BOOL(allow_antag_hud, data["allow_antag_hud"])
+ CONFIG_LOAD_BOOL(restrict_antag_hud_rejoin, data["restrict_antag_hud_rejoin"])
+ CONFIG_LOAD_BOOL(respawn_enabled, data["respawn_enabled"])
+ CONFIG_LOAD_BOOL(enable_karma, data["enable_karma"])
+ CONFIG_LOAD_BOOL(enabled_cid_randomiser_buster, data["enable_cid_randomiser_buster"])
+ CONFIG_LOAD_BOOL(forbid_singulo_possession, data["prevent_admin_singlo_possession"])
+ CONFIG_LOAD_BOOL(popup_admin_pm, data["popup_admin_pm"])
+ CONFIG_LOAD_BOOL(allow_holidays, data["allow_holidays"])
+ CONFIG_LOAD_BOOL(enable_auto_mute, data["enable_auto_mute"])
+ CONFIG_LOAD_BOOL(ssd_warning, data["ssd_warning"])
+ CONFIG_LOAD_BOOL(ghost_interaction, data["ghost_interaction"])
+ CONFIG_LOAD_BOOL(starlight, data["starlight"])
+ CONFIG_LOAD_BOOL(disable_lobby_music, data["disable_lobby_music"])
+ CONFIG_LOAD_BOOL(disable_cid_warning_popup, data["disable_cid_warning_popup"])
+ CONFIG_LOAD_BOOL(enable_ooc_emoji, data["enable_ooc_emoji"])
+ CONFIG_LOAD_BOOL(developer_express_start, data["developer_express_start"])
+ CONFIG_LOAD_BOOL(start_now_confirmation, data["start_now_confirmation"])
+ CONFIG_LOAD_BOOL(enable_auto_profiler, data["enable_auto_profiler"])
+ CONFIG_LOAD_BOOL(auto_disable_ooc, data["auto_disable_ooc"])
+ CONFIG_LOAD_BOOL(breakable_bones, data["breakable_bones"])
+ CONFIG_LOAD_BOOL(enable_revival_pod_plants, data["enable_revival_pod_plants"])
+ CONFIG_LOAD_BOOL(enable_cloning, data["enable_cloning"])
+ CONFIG_LOAD_BOOL(randomise_shift_time, data["randomise_shift_time"])
+ CONFIG_LOAD_BOOL(enable_night_shifts, data["enable_night_shifts"])
+ CONFIG_LOAD_BOOL(reactionary_explosions, data["reactionary_explosions"])
+ CONFIG_LOAD_BOOL(random_ai_lawset, data["random_ai_lawset"])
+
+ // Numbers
+ CONFIG_LOAD_NUM(lobby_time, data["lobby_time"])
+ CONFIG_LOAD_NUM(panic_bunker_threshold, data["panic_bunker_threshold"])
+ CONFIG_LOAD_NUM(base_loadout_points, data["base_loadout_points"])
+ CONFIG_LOAD_NUM(cryo_penalty_period, data["cryo_penalty_period"])
+ CONFIG_LOAD_NUM(minimum_client_build, data["minimum_client_build"])
+ CONFIG_LOAD_NUM(byond_account_age_threshold, data["byond_account_age_threshold"])
+ CONFIG_LOAD_NUM(max_client_cid_history, data["max_client_cid_history"])
+ CONFIG_LOAD_NUM(monkey_cube_cap, data["monkey_cube_cap"])
+ CONFIG_LOAD_NUM(bomb_cap, data["bomb_cap"])
+ CONFIG_LOAD_NUM(revival_brain_life, data["revival_brain_life"])
+
+ // Strings
+ CONFIG_LOAD_STR(server_name, data["server_name"])
+ CONFIG_LOAD_STR(server_tag_line, data["server_tag_line"])
+ CONFIG_LOAD_STR(server_features, data["server_features"])
diff --git a/code/controllers/configuration/sections/ipintel_configuration.dm b/code/controllers/configuration/sections/ipintel_configuration.dm
new file mode 100644
index 00000000000..89fa23d5307
--- /dev/null
+++ b/code/controllers/configuration/sections/ipintel_configuration.dm
@@ -0,0 +1,34 @@
+/// Config holder for all things relating to IPIntel
+/datum/configuration_section/ipintel_configuration
+ /// Is IPIntel enabled
+ var/enabled = FALSE
+ /// Are we in whitelist mode (Auto-kick people who are on proxies/VPNs)
+ var/whitelist_mode = TRUE
+ /// 0-1 float for percentage threshold to kick people out
+ var/bad_rating = 0.9
+ /// IPIntel contact email. Required.
+ var/contact_email = null
+ /// How many hours to save good matches for. Cached due to rate limits
+ var/hours_save_good = 72
+ /// How many hours to save bad matches for. Cached due to rate limits
+ var/hours_save_bad = 24
+ /// IPIntel Domain. Do not prefix with a protocol
+ var/ipintel_domain = "check.getipintel.net"
+ /// Do not proxy-check players with more hours than the below threshold
+ var/playtime_ignore_threshold = 10
+ /// Details URL for more info on an IP, including ASN. IP is tacked straight on the end.
+ var/details_url = "https://iphub.info/?ip="
+
+/datum/configuration_section/ipintel_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enabled, data["ipintel_enabled"])
+ CONFIG_LOAD_BOOL(whitelist_mode, data["whitelist_mode"])
+
+ CONFIG_LOAD_NUM(bad_rating, data["bad_rating"])
+ CONFIG_LOAD_NUM(hours_save_good, data["hours_save_good"])
+ CONFIG_LOAD_NUM(hours_save_bad, data["hours_save_bad"])
+ CONFIG_LOAD_NUM(playtime_ignore_threshold, data["playtime_ignore_threshold"])
+
+ CONFIG_LOAD_STR(contact_email, data["contact_email"])
+ CONFIG_LOAD_STR(ipintel_domain, data["ipintel_domain"])
+ CONFIG_LOAD_STR(details_url, data["details_url"])
diff --git a/code/controllers/configuration/sections/job_configuration.dm b/code/controllers/configuration/sections/job_configuration.dm
new file mode 100644
index 00000000000..d56faddfc74
--- /dev/null
+++ b/code/controllers/configuration/sections/job_configuration.dm
@@ -0,0 +1,55 @@
+/// Config holder for all job related things
+/datum/configuration_section/job_configuration
+ /// Do we want jobs to have minimal access or extra access (IE: Scientists having robotics access)
+ var/jobs_have_minimal_access = TRUE
+ /// Do we want to restrict jobs based on account age
+ var/restrict_jobs_on_account_age = FALSE
+ /// Allow admins to bypass age-based job restrictions
+ var/restrict_jobs_on_account_age_admin_bypass = TRUE
+ /// Enable EXP logging and tracking
+ var/enable_exp_tracking = FALSE
+ /// Lockout jobs based on EXP
+ var/enable_exp_restrictions = FALSE
+ /// Allow admins to bypass EXP restrictions
+ var/enable_exp_admin_bypass = TRUE
+ /// Allow non-admins to play as AI
+ var/allow_ai = TRUE
+ /// Prevent guests from playing high profile roles
+ var/guest_job_ban = TRUE
+ /// Grant assistants maint access
+ var/assistant_maint_access = TRUE
+ /// Limit amount of assistants?
+ var/assistant_limit = FALSE
+ /// If yes to above, ratio of assistants per security officer (IE: 4:1)
+ var/assistant_security_ratio = 2
+ /// Enable loading of job overrides from the config
+ var/enable_job_amount_overrides = TRUE
+ /// Map of job:amount for lowpop. key: Job | value: amount
+ var/list/lowpop_job_map = list()
+ /// Map of job:amount for highpop. key: Job | value: amount
+ var/list/highpop_job_map = list()
+
+/datum/configuration_section/job_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(jobs_have_minimal_access, data["jobs_have_minimal_access"])
+ CONFIG_LOAD_BOOL(restrict_jobs_on_account_age, data["restrict_jobs_on_account_age"])
+ CONFIG_LOAD_BOOL(restrict_jobs_on_account_age_admin_bypass, data["restrict_jobs_on_account_age_admin_bypass"])
+ CONFIG_LOAD_BOOL(enable_exp_tracking, data["enable_exp_tracking"])
+ CONFIG_LOAD_BOOL(enable_exp_restrictions, data["enable_exp_restrictions"])
+ CONFIG_LOAD_BOOL(enable_exp_admin_bypass, data["enable_exp_admin_bypass"])
+ CONFIG_LOAD_BOOL(allow_ai, data["allow_ai"])
+ CONFIG_LOAD_BOOL(guest_job_ban, data["guest_job_ban"])
+ CONFIG_LOAD_BOOL(assistant_maint_access, data["assistant_maint_access"])
+ CONFIG_LOAD_BOOL(assistant_limit, data["assistant_limit"])
+ CONFIG_LOAD_NUM(assistant_security_ratio, data["assistant_security_ratio"])
+ CONFIG_LOAD_BOOL(enable_job_amount_overrides, data["enable_job_amount_overrides"])
+
+ if(enable_job_amount_overrides && islist(data["job_slot_amounts"]))
+ lowpop_job_map.Cut()
+ highpop_job_map.Cut()
+ for(var/kvp in data["job_slot_amounts"])
+ if(!isnull(kvp["name"]))
+ if(!isnull(kvp["lowpop"]))
+ lowpop_job_map[kvp["name"]] = kvp["lowpop"]
+ if(!isnull(kvp["highpop"]))
+ highpop_job_map[kvp["name"]] = kvp["highpop"]
diff --git a/code/controllers/configuration/sections/logging_configuration.dm b/code/controllers/configuration/sections/logging_configuration.dm
new file mode 100644
index 00000000000..ea2cd492057
--- /dev/null
+++ b/code/controllers/configuration/sections/logging_configuration.dm
@@ -0,0 +1,53 @@
+/// Config holder for all things regarding logging
+/datum/configuration_section/logging_configuration
+ /// Log OOC messages
+ var/ooc_logging = TRUE
+ /// Log ingame say messages
+ var/say_logging = TRUE
+ /// Log admin actions
+ var/admin_logging = TRUE
+ /// Log client access (login/logout)
+ var/access_logging = TRUE
+ /// Log game events (roundstart, results, a lot of other things)
+ var/game_logging = TRUE
+ /// Enable logging of votes and their results
+ var/vote_logging = TRUE
+ /// Enable logging of whipers
+ var/whisper_logging = TRUE
+ /// Enable logging of emotes
+ var/emote_logging = TRUE
+ /// Enable logging of attacks between players
+ var/attack_logging = TRUE
+ /// Enable logging of PDA messages
+ var/pda_logging = TRUE
+ /// Enable runtime logging
+ var/runtime_logging = TRUE
+ /// Enable world.log output logging
+ var/world_logging = TRUE
+ /// Log hrefs
+ var/href_logging = TRUE
+ /// Log admin warning messages
+ var/admin_warning_logging = TRUE
+ /// Log asay messages
+ var/adminchat_logging = TRUE
+ /// Log debug messages
+ var/debug_logging = TRUE
+
+/datum/configuration_section/logging_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(ooc_logging, data["enable_ooc_logging"])
+ CONFIG_LOAD_BOOL(say_logging, data["enable_say_logging"])
+ CONFIG_LOAD_BOOL(admin_logging, data["enable_admin_logging"])
+ CONFIG_LOAD_BOOL(access_logging, data["enable_access_logging"])
+ CONFIG_LOAD_BOOL(game_logging, data["enable_game_logging"])
+ CONFIG_LOAD_BOOL(vote_logging, data["enable_vote_logging"])
+ CONFIG_LOAD_BOOL(whisper_logging, data["enable_whisper_logging"])
+ CONFIG_LOAD_BOOL(emote_logging, data["enable_emote_logging"])
+ CONFIG_LOAD_BOOL(attack_logging, data["enable_attack_logging"])
+ CONFIG_LOAD_BOOL(pda_logging, data["enable_pda_logging"])
+ CONFIG_LOAD_BOOL(runtime_logging, data["enable_runtime_logging"])
+ CONFIG_LOAD_BOOL(world_logging, data["enable_world_logging"])
+ CONFIG_LOAD_BOOL(href_logging, data["enable_href_logging"])
+ CONFIG_LOAD_BOOL(admin_warning_logging, data["enable_admin_warning_logging"])
+ CONFIG_LOAD_BOOL(adminchat_logging, data["enable_adminchat_logging"])
+ CONFIG_LOAD_BOOL(debug_logging, data["enable_debug_logging"])
diff --git a/code/controllers/configuration/sections/mc_configuration.dm b/code/controllers/configuration/sections/mc_configuration.dm
new file mode 100644
index 00000000000..0a047b6ac4d
--- /dev/null
+++ b/code/controllers/configuration/sections/mc_configuration.dm
@@ -0,0 +1,23 @@
+/// Config holder for all things regarding the MC
+/datum/configuration_section/mc_configuration
+ /// Server ticklag
+ var/ticklag = 0.5
+ /// Tick limit % during world Init
+ var/world_init_tick_limit = TICK_LIMIT_MC_INIT_DEFAULT
+ /// Base MC tick rate
+ var/base_tickrate = 1
+ /// Highpop MC tickrate
+ var/highpop_tickrate = 1.1
+ /// MC Highpop enable threshold
+ var/highpop_enable_threshold = 65
+ /// MC Highpop disable threshold
+ var/highpop_disable_threshold = 60
+
+/datum/configuration_section/mc_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(ticklag, data["ticklag"])
+ CONFIG_LOAD_NUM(world_init_tick_limit, data["world_init_mc_tick_limit"])
+ CONFIG_LOAD_NUM(base_tickrate, data["base_mc_tick_rate"])
+ CONFIG_LOAD_NUM(highpop_tickrate, data["highpop_mc_tick_rate"])
+ CONFIG_LOAD_NUM(highpop_enable_threshold, data["mc_highpop_threshold_enable"])
+ CONFIG_LOAD_NUM(highpop_disable_threshold, data["mc_highpop_threshold_disable"])
diff --git a/code/controllers/configuration/sections/movement_configuration.dm b/code/controllers/configuration/sections/movement_configuration.dm
new file mode 100644
index 00000000000..1f647b94e8a
--- /dev/null
+++ b/code/controllers/configuration/sections/movement_configuration.dm
@@ -0,0 +1,26 @@
+/// Config holder for values relating to mob movement speeds
+/datum/configuration_section/movement_configuration
+ /// Base run speed before modifiers
+ var/base_run_speed = 1
+ /// Base walk speed before modifiers
+ var/base_walk_speed = 4
+ /// Move delay for humanoids
+ var/human_delay = 1.5
+ /// Move delay for cyborgs
+ var/robot_delay = 2.5
+ /// Move delay for xenomorphs
+ var/alien_delay = 1.5
+ /// Move delay for slimes (xenobio, not slimepeople)
+ var/slime_delay = 1.5
+ /// Move delay for other simple animals
+ var/animal_delay = 2.5
+
+/datum/configuration_section/movement_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(base_run_speed, data["base_run_speed"])
+ CONFIG_LOAD_NUM(base_walk_speed, data["base_walk_speed"])
+ CONFIG_LOAD_NUM(human_delay, data["human_delay"])
+ CONFIG_LOAD_NUM(robot_delay, data["robot_delay"])
+ CONFIG_LOAD_NUM(alien_delay, data["alien_delay"])
+ CONFIG_LOAD_NUM(slime_delay, data["slime_delay"])
+ CONFIG_LOAD_NUM(animal_delay, data["animal_delay"])
diff --git a/code/controllers/configuration/sections/overflow_configuration.dm b/code/controllers/configuration/sections/overflow_configuration.dm
new file mode 100644
index 00000000000..37c083676c1
--- /dev/null
+++ b/code/controllers/configuration/sections/overflow_configuration.dm
@@ -0,0 +1,14 @@
+/// Config holder for all overflow-server related things
+/datum/configuration_section/overflow_configuration
+ /// Amount of players before reroute server is used. 0 to disable.
+ var/reroute_cap = 0
+ /// Location of the overflow server
+ var/overflow_server_location = null
+ /// List of ckeys who will never be routed to the overflow server
+ var/list/overflow_whitelist = list()
+
+/datum/configuration_section/overflow_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_NUM(reroute_cap, data["player_reroute_cap"])
+ CONFIG_LOAD_STR(overflow_server_location, data["overflow_server"])
+ CONFIG_LOAD_LIST(overflow_whitelist, data["overflow_whitelist"])
diff --git a/code/controllers/configuration/sections/ruin_configuration.dm b/code/controllers/configuration/sections/ruin_configuration.dm
new file mode 100644
index 00000000000..2adc5570867
--- /dev/null
+++ b/code/controllers/configuration/sections/ruin_configuration.dm
@@ -0,0 +1,23 @@
+/// Config holder for all things regarding space ruins and lavaland ruins
+/datum/configuration_section/ruin_configuration
+ /// Enable or disable space ruins
+ var/enable_space_ruins = TRUE
+ /// Minimum number of extra zlevels to fill with ruins
+ var/extra_levels_min = 2
+ /// Maximum number of extra zlevels to fill with ruins
+ var/extra_levels_max = 4
+ /// List of all active space ruins
+ var/list/active_space_ruins = list()
+ /// List of all active lavaland ruins
+ var/list/active_lava_ruins = list()
+ /// Budget for lavaland ruins
+ var/lavaland_ruin_budget = 60
+
+/datum/configuration_section/ruin_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(enable_space_ruins, data["enable_space_ruins"])
+ CONFIG_LOAD_NUM(extra_levels_min, data["minimum_zlevels"])
+ CONFIG_LOAD_NUM(extra_levels_max, data["maximum_zlevels"])
+ CONFIG_LOAD_LIST(active_space_ruins, data["active_space_ruins"])
+ CONFIG_LOAD_LIST(active_lava_ruins, data["active_lava_ruins"])
+ CONFIG_LOAD_NUM(lavaland_ruin_budget, data["lavaland_ruin_budget"])
diff --git a/code/controllers/configuration/sections/system_configuration.dm b/code/controllers/configuration/sections/system_configuration.dm
new file mode 100644
index 00000000000..42e563d7057
--- /dev/null
+++ b/code/controllers/configuration/sections/system_configuration.dm
@@ -0,0 +1,30 @@
+/// Config holder for stuff relating to server backend management and secrets
+/datum/configuration_section/system_configuration
+ // NO EDITS OR READS TO THIS WHAT SOEVER
+ protection_state = PROTECTION_PRIVATE
+ /// Password for authorising world/Topic requests
+ var/topic_key = null
+ /// Medal hub address for lavaland stats
+ var/medal_hub_address = null
+ /// Medal hub password for lavaland stats
+ var/medal_hub_password = null
+ /// Do we want the server to kill on reboot instead of keeping the same DD session
+ var/shutdown_on_reboot = FALSE
+ /// If above is true, you can run a shell command
+ var/shutdown_shell_command = null
+ /// 2FA backend server host
+ var/_2fa_auth_host = null
+ /// List of IP addresses which bypass world topic rate limiting
+ var/list/topic_ip_ratelimit_bypass = list()
+
+/datum/configuration_section/system_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(shutdown_on_reboot, data["shutdown_on_reboot"])
+
+ CONFIG_LOAD_STR(topic_key, data["communications_password"])
+ CONFIG_LOAD_STR(medal_hub_address, data["medal_hub_address"])
+ CONFIG_LOAD_STR(medal_hub_password, data["medal_hub_password"])
+ CONFIG_LOAD_STR(shutdown_shell_command, data["shutdown_shell_command"])
+ CONFIG_LOAD_STR(_2fa_auth_host, data["_2fa_auth_host"])
+
+ CONFIG_LOAD_LIST(topic_ip_ratelimit_bypass, data["topic_ip_ratelimit_bypass"])
diff --git a/code/controllers/configuration/sections/url_configuration.dm b/code/controllers/configuration/sections/url_configuration.dm
new file mode 100644
index 00000000000..cfdf06a7b51
--- /dev/null
+++ b/code/controllers/configuration/sections/url_configuration.dm
@@ -0,0 +1,47 @@
+/// Config holder for all the server URLs
+/datum/configuration_section/url_configuration
+ // Dont tweak these. You can read them though.
+ protection_state = PROTECTION_READONLY
+ /// List of URLs for the server RSC data
+ var/list/rsc_urls = list()
+ /// Server URL for auto-reconnecting people at end round
+ var/server_url
+ /// URL for the server ban appeals forum
+ var/banappeals_url
+ /// URL for the server wiki
+ var/wiki_url
+ /// URL for the server forums
+ var/forum_url
+ /// URL for the server rules
+ var/rules_url
+ /// URL for the server github repository
+ var/github_url
+ /// URL for server donations
+ var/donations_url
+ /// URL for a direct discord invite
+ var/discord_url
+ /// URL for a discord invite going via the forums
+ var/discord_forum_url
+ /// URL for linking ingame accounts and forum accounts. Token is appended to end
+ var/forum_link_url
+ /// URL for pulling player info on webtools
+ var/forum_playerinfo_url
+ /// URL for the CentCom Ban DB API
+ var/centcom_ban_db_url
+
+/datum/configuration_section/url_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_LIST(rsc_urls, data["rsc_urls"])
+
+ CONFIG_LOAD_STR(server_url, data["reboot_url"])
+ CONFIG_LOAD_STR(banappeals_url, data["ban_appeals_url"])
+ CONFIG_LOAD_STR(wiki_url, data["wiki_url"])
+ CONFIG_LOAD_STR(forum_url, data["forum_url"])
+ CONFIG_LOAD_STR(rules_url, data["rules_url"])
+ CONFIG_LOAD_STR(github_url, data["github_url"])
+ CONFIG_LOAD_STR(donations_url, data["donations_url"])
+ CONFIG_LOAD_STR(discord_url, data["discord_url"])
+ CONFIG_LOAD_STR(discord_forum_url, data["discord_forum_url"])
+ CONFIG_LOAD_STR(forum_link_url, data["forum_link_url"])
+ CONFIG_LOAD_STR(forum_playerinfo_url, data["forum_playerinfo_url"])
+ CONFIG_LOAD_STR(centcom_ban_db_url, data["centcomm_ban_db_url"])
diff --git a/code/controllers/configuration/sections/vote_configuration.dm b/code/controllers/configuration/sections/vote_configuration.dm
new file mode 100644
index 00000000000..5c280c579fb
--- /dev/null
+++ b/code/controllers/configuration/sections/vote_configuration.dm
@@ -0,0 +1,33 @@
+/// Config holder for stuff relating to the ingame vote system
+/datum/configuration_section/vote_configuration
+ /// Allow players to start restart votes?
+ var/allow_restart_votes = FALSE
+ /// Allow players to start gamemode votes?
+ var/allow_mode_votes = FALSE
+ /// Minimum delay between each vote (deciseconds)
+ var/vote_delay = 18000 // 30 mins
+ /// How long will a vote last for (deciseconds)
+ var/vote_time = 600 // 60 seconds
+ /// Time before the first shuttle vote (deciseconds)
+ var/autotransfer_initial_time = 72000 // 2 hours
+ /// Time between subsequent shuttle votes if the first one is not successful (deciseconds)
+ var/autotransfer_interval_time = 18000 // 30 mins
+ /// Prevent dead players from voting
+ var/prevent_dead_voting = FALSE
+ /// Default to players not voting
+ var/disable_default_vote = TRUE
+ /// Enable map voting?
+ var/enable_map_voting = FALSE
+
+/datum/configuration_section/vote_configuration/load_data(list/data)
+ // Use the load wrappers here. That way the default isnt made 'null' if you comment out the config line
+ CONFIG_LOAD_BOOL(allow_restart_votes, data["allow_vote_restart"])
+ CONFIG_LOAD_BOOL(allow_mode_votes, data["allow_vote_mode"])
+ CONFIG_LOAD_BOOL(prevent_dead_voting, data["prevent_dead_voting"])
+ CONFIG_LOAD_BOOL(disable_default_vote, data["disable_default_vote"])
+ CONFIG_LOAD_BOOL(enable_map_voting, data["enable_map_voting"])
+
+ CONFIG_LOAD_NUM(vote_delay, data["vote_delay"])
+ CONFIG_LOAD_NUM(vote_time, data["vote_time"])
+ CONFIG_LOAD_NUM(autotransfer_initial_time, data["autotransfer_initial_time"])
+ CONFIG_LOAD_NUM(autotransfer_interval_time, data["autotransfer_interval_time"])
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index 82e2517823a..d445cf6f3b6 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -194,7 +194,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
var/start_timeofday = REALTIMEOFDAY
// Initialize subsystems.
- current_ticklimit = config.tick_limit_mc_init
+ current_ticklimit = GLOB.configuration.mc.world_init_tick_limit
for(var/datum/controller/subsystem/SS in subsystems)
if(SS.flags & SS_NO_INIT)
continue
@@ -206,8 +206,8 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
log_startup_progress("Initializations complete within [time] second[time == 1 ? "" : "s"]!")
- if(config.developer_express_start & SSticker.current_state == GAME_STATE_PREGAME)
- SSticker.current_state = GAME_STATE_SETTING_UP
+ if(GLOB.configuration.general.developer_express_start)
+ SSticker.force_start = TRUE
if(!current_runlevel)
SetRunLevel(1)
@@ -216,7 +216,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
sortTim(subsystems, /proc/cmp_subsystem_display)
// Set world options.
// world.fps = CONFIG_GET(number/fps) // TIGER TODO
- world.tick_lag = config.Ticklag
+ world.tick_lag = GLOB.configuration.mc.ticklag
var/initialized_tod = REALTIMEOFDAY
if(sleep_offline_after_initializations)
@@ -626,10 +626,10 @@ GLOBAL_REAL(Master, /datum/controller/master) = new
if(!processing)
return
var/client_count = length(GLOB.clients)
- if(client_count < config.disable_high_pop_mc_mode_amount)
- processing = config.base_mc_tick_rate
- else if(client_count > config.high_pop_mc_mode_amount)
- processing = config.high_pop_mc_tick_rate
+ if(client_count < GLOB.configuration.mc.highpop_disable_threshold)
+ processing = GLOB.configuration.mc.base_tickrate
+ else if(client_count > GLOB.configuration.mc.highpop_enable_threshold)
+ processing = GLOB.configuration.mc.highpop_tickrate
/datum/controller/master/proc/formatcpu()
switch(world.cpu)
diff --git a/code/controllers/subsystem/afk.dm b/code/controllers/subsystem/afk.dm
index 9b1d5f3fa26..c7042513e49 100644
--- a/code/controllers/subsystem/afk.dm
+++ b/code/controllers/subsystem/afk.dm
@@ -12,7 +12,8 @@ SUBSYSTEM_DEF(afk)
/datum/controller/subsystem/afk/Initialize()
- if(config.warn_afk_minimum <= 0 || config.auto_cryo_afk <= 0 || config.auto_despawn_afk <= 0)
+
+ if(GLOB.configuration.afk.warning_minutes <= 0 || GLOB.configuration.afk.auto_cryo_minutes <= 0 || GLOB.configuration.afk.auto_despawn_minutes <= 0)
flags |= SS_NO_FIRE
else
non_cryo_antags = list(SPECIAL_ROLE_ABDUCTOR_AGENT, SPECIAL_ROLE_ABDUCTOR_SCIENTIST, \
@@ -35,19 +36,20 @@ SUBSYSTEM_DEF(afk)
toRemove += H.ckey
continue
+
var/mins_afk = round(H.client.inactivity / 600)
- if(mins_afk < config.warn_afk_minimum)
+ if(mins_afk < GLOB.configuration.afk.warning_minutes)
if(afk_players[H.ckey])
toRemove += H.ckey
continue
if(!afk_players[H.ckey])
afk_players[H.ckey] = AFK_WARNED
- warn(H, "You are AFK for [mins_afk] minutes. You will be cryod after [config.auto_cryo_afk] total minutes and fully despawned after [config.auto_despawn_afk] total minutes. Please move or click in game if you want to avoid being despawned.")
+ warn(H, "You are AFK for [mins_afk] minutes. You will be cryod after [GLOB.configuration.afk.auto_cryo_minutes] total minutes and fully despawned after [GLOB.configuration.afk.auto_despawn_minutes] total minutes. Please move or click in game if you want to avoid being despawned.")
else
var/area/A = T.loc // Turfs loc is the area
if(afk_players[H.ckey] == AFK_WARNED)
- if(mins_afk >= config.auto_cryo_afk && A.can_get_auto_cryod)
+ if(mins_afk >= GLOB.configuration.afk.auto_cryo_minutes && A.can_get_auto_cryod)
if(A.fast_despawn)
toRemove += H.ckey
warn(H, "You have been despawned after being AFK for [mins_afk] minutes. You have been despawned instantly due to you being in a secure area.")
@@ -60,13 +62,13 @@ SUBSYSTEM_DEF(afk)
afk_players[H.ckey] = AFK_CRYOD
log_afk_action(H, mins_afk, T, "put into cryostorage")
warn(H, "You are AFK for [mins_afk] minutes and have been moved to cryostorage. \
- After being AFK for another [config.auto_despawn_afk] minutes you will be fully despawned. \
+ After being AFK for another [GLOB.configuration.afk.auto_despawn_minutes] minutes you will be fully despawned. \
Please eject yourself (right click, eject) out of the cryostorage if you want to avoid being despawned.")
else
message_admins("[key_name_admin(H)] at ([get_area(T).name] [ADMIN_JMP(T)]) is AFK for [mins_afk] and can't be automatically cryod due to it's antag status: ([H.mind.special_role]).")
afk_players[H.ckey] = AFK_ADMINS_WARNED
- else if(afk_players[H.ckey] != AFK_ADMINS_WARNED && mins_afk >= config.auto_despawn_afk)
+ else if(afk_players[H.ckey] != AFK_ADMINS_WARNED && mins_afk >= GLOB.configuration.afk.auto_despawn_minutes)
log_afk_action(H, mins_afk, T, "despawned")
warn(H, "You have been despawned after being AFK for [mins_afk] minutes.")
toRemove += H.ckey
diff --git a/code/controllers/subsystem/alarm.dm b/code/controllers/subsystem/alarm.dm
index 3d91d763be3..7ac7ab389a8 100644
--- a/code/controllers/subsystem/alarm.dm
+++ b/code/controllers/subsystem/alarm.dm
@@ -1,7 +1,7 @@
SUBSYSTEM_DEF(alarm)
name = "Alarm"
flags = SS_NO_INIT | SS_NO_FIRE
- var/list/alarms = list("Motion" = list(), "Fire" = list(), "Atmosphere" = list(), "Power" = list(), "Camera" = list(), "Burglar" = list())
+ var/list/alarms = list("Motion" = list(), "Fire" = list(), "Atmosphere" = list(), "Power" = list(), "Burglar" = list())
/datum/controller/subsystem/alarm/proc/triggerAlarm(class, area/A, list/O, obj/alarmsource)
var/list/L = alarms[class]
diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm
index 1512d8e6e70..37e4299b06d 100644
--- a/code/controllers/subsystem/blackbox.dm
+++ b/code/controllers/subsystem/blackbox.dm
@@ -65,7 +65,7 @@ SUBSYSTEM_DEF(blackbox)
sqlversion = versions[FV.key]
var/datum/db_query/query_feedback_save = SSdbcore.NewQuery({"
- INSERT DELAYED IGNORE INTO [format_table_name("feedback")] (datetime, round_id, key_name, key_type, version, json)
+ INSERT IGNORE INTO feedback (datetime, round_id, key_name, key_type, version, json)
VALUES (NOW(), :rid, :keyname, :keytype, :version, :json)"}, list(
"rid" = text2num(GLOB.round_id),
"keyname" = FV.key,
@@ -287,7 +287,7 @@ SUBSYSTEM_DEF(blackbox)
lakey = L.lastattackerckey
var/datum/db_query/deathquery = SSdbcore.NewQuery({"
- INSERT INTO [format_table_name("death")] (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord)
+ INSERT INTO death (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord)
VALUES (:name, :key, :job, :special, :pod, NOW(), :laname, :lakey, :gender, :bruteloss, :fireloss, :brainloss, :oxyloss, :coord)"},
list(
"name" = L.real_name,
diff --git a/code/controllers/subsystem/changelog.dm b/code/controllers/subsystem/changelog.dm
index 3a2e3513916..55221263033 100644
--- a/code/controllers/subsystem/changelog.dm
+++ b/code/controllers/subsystem/changelog.dm
@@ -24,7 +24,7 @@ SUBSYSTEM_DEF(changelog)
if(!SSdbcore.IsConnected())
return ..()
- var/datum/db_query/latest_cl_date = SSdbcore.NewQuery("SELECT CAST(UNIX_TIMESTAMP(date_merged) AS CHAR) AS ut FROM [format_table_name("changelog")] ORDER BY date_merged DESC LIMIT 1")
+ var/datum/db_query/latest_cl_date = SSdbcore.NewQuery("SELECT CAST(UNIX_TIMESTAMP(date_merged) AS CHAR) AS ut FROM changelog ORDER BY date_merged DESC LIMIT 1")
if(!latest_cl_date.warn_execute())
qdel(latest_cl_date)
// Abort if we cant do this
@@ -63,7 +63,7 @@ SUBSYSTEM_DEF(changelog)
C.prefs.lastchangelog = current_cl_timestamp
var/datum/db_query/updatePlayerCLTime = SSdbcore.NewQuery(
- "UPDATE [format_table_name("player")] SET lastchangelog=:lastchangelog WHERE ckey=:ckey",
+ "UPDATE player SET lastchangelog=:lastchangelog WHERE ckey=:ckey",
list(
"lastchangelog" = current_cl_timestamp,
"ckey" = C.ckey
@@ -266,11 +266,11 @@ SUBSYSTEM_DEF(changelog)
usr.client.github()
// Takes a PR number as argument
if(href_list["openPR"])
- if(config.githuburl)
+ if(GLOB.configuration.url.github_url)
if(alert("This will open PR #[href_list["openPR"]] in your browser. Are you sure?",,"Yes","No")=="No")
return
// If the github URL in the config has a trailing slash, it doesnt matter here, thankfully github accepts having a double slash: https://github.com/org/repo//pull/1
- var/url = "[config.githuburl]/pull/[href_list["openPR"]]"
+ var/url = "[GLOB.configuration.url.github_url]/pull/[href_list["openPR"]]"
usr << link(url)
else
to_chat(usr, "The GitHub URL is not set in the server configuration. PRs cannot be opened from changelog view. Please inform the server host.")
diff --git a/code/controllers/subsystem/chat_pings.dm b/code/controllers/subsystem/chat_pings.dm
new file mode 100644
index 00000000000..ad013cab3d6
--- /dev/null
+++ b/code/controllers/subsystem/chat_pings.dm
@@ -0,0 +1,16 @@
+SUBSYSTEM_DEF(chat_pings)
+ name = "Chat Pings"
+ flags = SS_NO_INIT
+ runlevels = RUNLEVEL_INIT | RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME // ALL OF THEM
+ wait = 30 SECONDS // Chat pings every 30 seconds
+ /// List of all held chat datums
+ var/list/datum/chatOutput/chat_datums = list() // Do NOT put this in Initialize(). You will cause issues.
+
+/datum/controller/subsystem/chat_pings/fire(resumed)
+ for(var/datum/chatOutput/CO as anything in chat_datums)
+ CO.updatePing()
+ if(MC_TICK_CHECK)
+ return
+
+/datum/controller/subsystem/chat_pings/stat_entry()
+ ..("P: [length(chat_datums)]")
diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm
index 81aab3b0759..f6974a2fb17 100644
--- a/code/controllers/subsystem/dbcore.dm
+++ b/code/controllers/subsystem/dbcore.dm
@@ -30,7 +30,7 @@ SUBSYSTEM_DEF(dbcore)
// This is in Initialize() so that its actually seen in chat
/datum/controller/subsystem/dbcore/Initialize()
if(!schema_valid)
- to_chat(world, "Database schema ([sql_version]) doesn't match the latest schema version ([SQL_VERSION]). Roundstart has been delayed.")
+ to_chat(world, "Database schema ([GLOB.configuration.database.version]) doesn't match the latest schema version ([SQL_VERSION]). Roundstart has been delayed.")
return ..()
@@ -66,7 +66,7 @@ SUBSYSTEM_DEF(dbcore)
if(IsConnected())
return TRUE
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return FALSE
if(failed_connection_timeout <= world.time) //it's been more than 5 seconds since we failed to connect, reset the counter
@@ -77,14 +77,14 @@ SUBSYSTEM_DEF(dbcore)
return FALSE
var/result = json_decode(rustg_sql_connect_pool(json_encode(list(
- "host" = sqladdress,
- "port" = text2num(sqlport),
- "user" = sqlfdbklogin,
- "pass" = sqlfdbkpass,
- "db_name" = sqlfdbkdb,
- "read_timeout" = config.async_sql_query_timeout,
- "write_timeout" = config.async_sql_query_timeout,
- "max_threads" = config.rust_sql_thread_limit,
+ "host" = GLOB.configuration.database.address,
+ "port" = GLOB.configuration.database.port,
+ "user" = GLOB.configuration.database.username,
+ "pass" = GLOB.configuration.database.password,
+ "db_name" = GLOB.configuration.database.db,
+ "read_timeout" = GLOB.configuration.database.async_query_timeout,
+ "write_timeout" = GLOB.configuration.database.async_query_timeout,
+ "max_threads" = GLOB.configuration.database.async_thread_limit,
))))
. = (result["status"] == "ok")
if(.)
@@ -102,11 +102,11 @@ SUBSYSTEM_DEF(dbcore)
* If it is a valid version, the DB will then connect.
*/
/datum/controller/subsystem/dbcore/proc/CheckSchemaVersion()
- if(config.sql_enabled)
+ if(GLOB.configuration.database.enabled)
// The unit tests have their own version of this check, which wont hold the server up infinitely, so this is disabled if we are running unit tests
#ifndef UNIT_TESTS
- if(config.sql_enabled && sql_version != SQL_VERSION)
- config.sql_enabled = FALSE
+ if(GLOB.configuration.database.enabled && GLOB.configuration.database.version != SQL_VERSION)
+ GLOB.configuration.database.enabled = FALSE
schema_valid = FALSE
SSticker.ticker_going = FALSE
SEND_TEXT(world.log, "Database connection failed: Invalid SQL Versions")
@@ -142,7 +142,7 @@ SUBSYSTEM_DEF(dbcore)
//This is as close as we can get to the true round end before Disconnect() without changing where it's called, defeating the reason this is a subsystem
if(SSdbcore.Connect())
var/datum/db_query/query_round_shutdown = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id",
+ "UPDATE round SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id",
list("end_state" = SSticker.end_state, "round_id" = GLOB.round_id)
)
query_round_shutdown.Execute()
@@ -160,7 +160,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_initialize = SSdbcore.NewQuery(
- "INSERT INTO [format_table_name("round")] (initialize_datetime, server_ip, server_port) VALUES (Now(), INET_ATON(:internet_address), :port)",
+ "INSERT INTO round (initialize_datetime, server_ip, server_port) VALUES (Now(), INET_ATON(:internet_address), :port)",
list("internet_address" = world.internet_address || "0", "port" = "[world.port]")
)
query_round_initialize.Execute(async = FALSE)
@@ -177,7 +177,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_start = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET start_datetime=NOW(), commit_hash=:hash WHERE id=:round_id",
+ "UPDATE round SET start_datetime=NOW(), commit_hash=:hash WHERE id=:round_id",
list("hash" = GLOB.revision_info.commit_hash, "round_id" = GLOB.round_id)
)
query_round_start.Execute(async = FALSE) // This happens during a time of intense server lag, so should be non-async
@@ -193,7 +193,7 @@ SUBSYSTEM_DEF(dbcore)
if(!IsConnected())
return
var/datum/db_query/query_round_end = SSdbcore.NewQuery(
- "UPDATE [format_table_name("round")] SET end_datetime = Now(), game_mode_result = :game_mode_result, station_name = :station_name WHERE id = :round_id",
+ "UPDATE round SET end_datetime = Now(), game_mode_result = :game_mode_result WHERE id = :round_id",
list("game_mode_result" = SSticker.mode_result, "station_name" = station_name(), "round_id" = GLOB.round_id)
)
query_round_end.Execute()
@@ -206,7 +206,7 @@ SUBSYSTEM_DEF(dbcore)
* Does a few sanity checks, then asks the DLL if we are properly connected
*/
/datum/controller/subsystem/dbcore/proc/IsConnected()
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return FALSE
if(!schema_valid)
return FALSE
@@ -222,7 +222,7 @@ SUBSYSTEM_DEF(dbcore)
* Will always report "Database disabled by configuration" if the DB is disabled.
*/
/datum/controller/subsystem/dbcore/proc/ErrorMsg()
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
return "Database disabled by configuration"
return last_error
@@ -492,7 +492,7 @@ SUBSYSTEM_DEF(dbcore)
/client/proc/reestablish_db_connection()
set category = "Debug"
set name = "Reestablish DB Connection"
- if(!config.sql_enabled)
+ if(!GLOB.configuration.database.enabled)
to_chat(usr, "The Database is not enabled in the server configuration!")
return
diff --git a/code/controllers/subsystem/discord.dm b/code/controllers/subsystem/discord.dm
index a0f8c1a68fe..11a2a481073 100644
--- a/code/controllers/subsystem/discord.dm
+++ b/code/controllers/subsystem/discord.dm
@@ -7,7 +7,7 @@ SUBSYSTEM_DEF(discord)
var/last_administration_ping = 0
/datum/controller/subsystem/discord/Initialize(start_timeofday)
- if(config.discord_webhooks_enabled)
+ if(GLOB.configuration.discord.webhooks_enabled)
enabled = TRUE
return ..()
@@ -18,11 +18,11 @@ SUBSYSTEM_DEF(discord)
var/list/webhook_urls
switch(destination)
if(DISCORD_WEBHOOK_ADMIN)
- webhook_urls = config.discord_admin_webhook_urls
+ webhook_urls = GLOB.configuration.discord.admin_webhook_urls
if(DISCORD_WEBHOOK_PRIMARY)
- webhook_urls = config.discord_main_webhook_urls
+ webhook_urls = GLOB.configuration.discord.main_webhook_urls
if(DISCORD_WEBHOOK_MENTOR)
- webhook_urls = config.discord_mentor_webhook_urls
+ webhook_urls = GLOB.configuration.discord.mentor_webhook_urls
var/datum/discord_webhook_payload/dwp = new()
dwp.webhook_content = content
@@ -36,14 +36,18 @@ SUBSYSTEM_DEF(discord)
var/list/webhook_urls
switch(destination)
if(DISCORD_WEBHOOK_ADMIN)
- webhook_urls = config.discord_admin_webhook_urls
+ webhook_urls = GLOB.configuration.discord.admin_webhook_urls
if(DISCORD_WEBHOOK_PRIMARY)
- webhook_urls = config.discord_main_webhook_urls
+ webhook_urls = GLOB.configuration.discord.main_webhook_urls
+ if(DISCORD_WEBHOOK_MENTOR)
+ webhook_urls = GLOB.configuration.discord.mentor_webhook_urls
for(var/url in webhook_urls)
SShttp.create_async_request(RUSTG_HTTP_METHOD_POST, url, dwp.serialize2json(), list("content-type" = "application/json"))
// This one is for sending messages to the admin channel if no admins are active, complete with a ping to the game admins role
/datum/controller/subsystem/discord/proc/send2discord_simple_noadmins(content, check_send_always = FALSE)
+ if(!enabled)
+ return
// Setup some stuff
var/alerttext
var/list/admincounter = staff_countup(R_BAN)
@@ -57,7 +61,7 @@ SUBSYSTEM_DEF(discord)
else
alerttext = " | **NO ADMINS ONLINE**"
else
- if(check_send_always && config.discord_forward_all_ahelps)
+ if(check_send_always && GLOB.configuration.discord.forward_all_ahelps)
// If we are here, there are admins online. We want to forward everything, but obviously dont want to add a ping, so we do this
add_ping = FALSE
else
@@ -68,17 +72,17 @@ SUBSYSTEM_DEF(discord)
var/datum/discord_webhook_payload/dwp = new()
dwp.webhook_content = message
- for(var/url in config.discord_admin_webhook_urls)
+ for(var/url in GLOB.configuration.discord.admin_webhook_urls)
SShttp.create_async_request(RUSTG_HTTP_METHOD_POST, url, dwp.serialize2json(), list("content-type" = "application/json"))
// Helper to make administrator ping easier
/datum/controller/subsystem/discord/proc/handle_administrator_ping()
// Check if a role is even set
- if(config.discord_admin_role_id)
+ if(GLOB.configuration.discord.admin_role_id)
if(last_administration_ping > world.time)
return "*(Role pinged recently)*"
last_administration_ping = world.time + 60 SECONDS
- return "<@&[config.discord_admin_role_id]>"
+ return "<@&[GLOB.configuration.discord.admin_role_id]>"
return ""
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index e50c372584a..e66b93b6eda 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -26,8 +26,9 @@ SUBSYSTEM_DEF(garbage)
//Queue
var/list/queues
- #ifdef TESTING
+ #ifdef REFERENCE_TRACKING
var/list/reference_find_on_fail = list()
+ var/ref_search_stop = FALSE
#endif
@@ -137,7 +138,7 @@ SUBSYSTEM_DEF(garbage)
++gcedlasttick
++totalgcs
pass_counts[level]++
- #ifdef TESTING
+ #ifdef REFERENCE_TRACKING
reference_find_on_fail -= refID //It's deleted we don't care anymore.
#endif
if(MC_TICK_CHECK)
@@ -146,20 +147,27 @@ SUBSYSTEM_DEF(garbage)
// Something's still referring to the qdel'd object.
fail_counts[level]++
+ #ifdef REFERENCE_TRACKING
+ var/ref_searching = FALSE
+ #endif
switch(level)
if(GC_QUEUE_CHECK)
- #ifdef TESTING
- if(reference_find_on_fail[refID])
- D.find_references()
+ #ifdef REFERENCE_TRACKING
+ if(reference_find_on_fail[refID] && !ref_search_stop)
+ INVOKE_ASYNC(D, /datum/proc/find_references)
+ ref_searching = TRUE
#ifdef GC_FAILURE_HARD_LOOKUP
- else
- D.find_references()
+ else if (!ref_search_stop)
+ INVOKE_ASYNC(D, /datum/proc/find_references)
+ ref_searching = TRUE
#endif
reference_find_on_fail -= refID
#endif
var/type = D.type
var/datum/qdel_item/I = items[type]
- testing("GC: -- \ref[src] | [type] was unable to be GC'd --")
+ #ifdef REFERENCE_TRACKING
+ log_gc("GC: -- \ref[src] | [type] was unable to be GC'd --")
+ #endif
I.failures++
if(GC_QUEUE_HARDDELETE)
HardDelete(D)
@@ -169,6 +177,11 @@ SUBSYSTEM_DEF(garbage)
Queue(D, level + 1)
+ #ifdef REFERENCE_TRACKING
+ if(ref_searching)
+ return
+ #endif
+
if(MC_TICK_CHECK)
return
if(count)
@@ -243,10 +256,14 @@ SUBSYSTEM_DEF(garbage)
/datum/qdel_item/New(mytype)
name = "[mytype]"
-#ifdef TESTING
-/proc/qdel_and_find_ref_if_fail(datum/D, force = FALSE)
- SSgarbage.reference_find_on_fail["\ref[D]"] = TRUE
- qdel(D, force)
+#ifdef REFERENCE_TRACKING
+/proc/qdel_and_find_ref_if_fail(datum/thing_to_del, force = FALSE)
+ thing_to_del.qdel_and_find_ref_if_fail(force)
+
+/datum/proc/qdel_and_find_ref_if_fail(force = FALSE)
+ SSgarbage.reference_find_on_fail["\ref[src]"] = TRUE
+ qdel(src, force)
+
#endif
// Should be treated as a replacement for the 'del' keyword.
@@ -304,38 +321,39 @@ SUBSYSTEM_DEF(garbage)
SSgarbage.HardDelete(D)
if(QDEL_HINT_FINDREFERENCE)//qdel will, if TESTING is enabled, display all references to this object, then queue the object for deletion.
SSgarbage.Queue(D)
- #ifdef TESTING
+ #ifdef REFERENCE_TRACKING
D.find_references()
#endif
if(QDEL_HINT_IFFAIL_FINDREFERENCE)
SSgarbage.Queue(D)
- #ifdef TESTING
+ #ifdef REFERENCE_TRACKING
SSgarbage.reference_find_on_fail["\ref[D]"] = TRUE
#endif
else
- #ifdef TESTING
+ #ifdef REFERENCE_TRACKING
if(!I.no_hint)
- testing("WARNING: [D.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.")
+ log_gc("WARNING: [D.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.")
#endif
I.no_hint++
SSgarbage.Queue(D)
else if(D.gc_destroyed == GC_CURRENTLY_BEING_QDELETED)
CRASH("[D.type] destroy proc was called multiple times, likely due to a qdel loop in the Destroy logic")
-#ifdef TESTING
+#ifdef REFERENCE_TRACKING
-/datum/verb/find_refs()
+/datum/proc/find_refs()
set category = "Debug"
set name = "Find References"
- set src in world
+ if(!check_rights(R_DEBUG))
+ return
find_references(FALSE)
/datum/proc/find_references(skip_alert)
running_find_references = type
if(usr && usr.client)
if(usr.client.running_find_references)
- testing("CANCELLED search for references to a [usr.client.running_find_references].")
+ log_gc("CANCELLED search for references to a [usr.client.running_find_references].")
usr.client.running_find_references = null
running_find_references = null
//restart the garbage collector
@@ -354,20 +372,27 @@ SUBSYSTEM_DEF(garbage)
if(usr && usr.client)
usr.client.running_find_references = type
- testing("Beginning search for references to a [type].")
- last_find_references = world.time
+ log_gc("Beginning search for references to a [type].")
+ var/starting_time = world.time
- DoSearchVar(GLOB) //globals
+ DoSearchVar(GLOB, "GLOB") //globals
+ log_gc("Finished searching globals")
for(var/datum/thing in world) //atoms (don't beleive it's lies)
- DoSearchVar(thing, "World -> [thing]")
+ DoSearchVar(thing, "World -> [thing.type]", search_time = starting_time)
+
+ log_gc("Finished searching atoms")
for(var/datum/thing) //datums
- DoSearchVar(thing, "World -> [thing]")
+ DoSearchVar(thing, "World -> [thing.type]", search_time = starting_time)
+
+ log_gc("Finished searching datums")
for(var/client/thing) //clients
- DoSearchVar(thing, "World -> [thing]")
+ DoSearchVar(thing, "World -> [thing.type]", search_time = starting_time)
- testing("Completed search for references to a [type].")
+ log_gc("Finished searching clients")
+
+ log_gc("Completed search for references to a [type].")
if(usr && usr.client)
usr.client.running_find_references = null
running_find_references = null
@@ -376,58 +401,86 @@ SUBSYSTEM_DEF(garbage)
SSgarbage.can_fire = 1
SSgarbage.next_fire = world.time + world.tick_lag
-/datum/verb/qdel_then_find_references()
+/datum/proc/qdel_then_find_references()
set category = "Debug"
set name = "qdel() then Find References"
- set src in world
+ if(!check_rights(R_DEBUG))
+ return
- qdel(src, TRUE) //Force.
+ qdel(src, TRUE) //force a qdel
if(!running_find_references)
find_references(TRUE)
-/datum/verb/qdel_then_if_fail_find_references()
+/datum/proc/qdel_then_if_fail_find_references()
set category = "Debug"
set name = "qdel() then Find References if GC failure"
- set src in world
+ if(!check_rights(R_DEBUG))
+ return
qdel_and_find_ref_if_fail(src, TRUE)
-/datum/proc/DoSearchVar(X, Xname, recursive_limit = 64)
- if(usr && usr.client && !usr.client.running_find_references)
- return
- if(!recursive_limit)
+/datum/proc/DoSearchVar(potential_container, container_name, recursive_limit = 64, search_time = world.time)
+ if((usr?.client && !usr.client.running_find_references) || SSgarbage.ref_search_stop)
return
- if(istype(X, /datum))
- var/datum/D = X
- if(D.last_find_references == last_find_references)
+ if(!recursive_limit)
+ log_gc("Recursion limit reached. [container_name]")
+ return
+
+ //Check each time you go down a layer. This makes it a bit slow, but it won't effect the rest of the game at all
+ #ifndef FIND_REF_NO_CHECK_TICK
+ CHECK_TICK
+ #endif
+
+ if(istype(potential_container, /datum))
+ var/datum/datum_container = potential_container
+ if(datum_container.last_find_references == search_time)
return
- D.last_find_references = last_find_references
- var/list/L = D.vars
+ datum_container.last_find_references = search_time
+ var/list/vars_list = datum_container.vars
- for(var/varname in L)
- if(varname == "vars")
+ for(var/varname in vars_list)
+ #ifndef FIND_REF_NO_CHECK_TICK
+ CHECK_TICK
+ #endif
+ if(varname == "vars" || varname == "vis_locs") //Fun fact, vis_locs don't count for references
continue
- var/variable = L[varname]
+ var/variable = vars_list[varname]
if(variable == src)
- testing("Found [src.type] \ref[src] in [D.type]'s [varname] var. [Xname]")
+ log_gc("Found [type] \ref[src] in [datum_container.type]'s \ref[datum_container] [varname] var. [container_name]")
+ continue
- else if(islist(variable))
- DoSearchVar(variable, "[Xname] -> list", recursive_limit - 1)
+ if(islist(variable))
+ DoSearchVar(variable, "[container_name] \ref[datum_container] -> [varname] (list)", recursive_limit - 1, search_time)
- else if(islist(X))
- var/normal = IS_NORMAL_LIST(X)
- for(var/I in X)
- if(I == src)
- testing("Found [src.type] \ref[src] in list [Xname].")
+ else if(islist(potential_container))
+ var/normal = IS_NORMAL_LIST(potential_container)
+ var/list/potential_cache = potential_container
+ for(var/element_in_list in potential_cache)
+ #ifndef FIND_REF_NO_CHECK_TICK
+ CHECK_TICK
+ #endif
+ //Check normal entrys
+ if(element_in_list == src)
+ log_gc("Found [type] \ref[src] in list [container_name].")
+ continue
- else if(I && !isnum(I) && normal && X[I] == src)
- testing("Found [src.type] \ref[src] in list [Xname]\[[I]\]")
-
- else if(islist(I))
- DoSearchVar(I, "[Xname] -> list", recursive_limit - 1)
+ var/assoc_val = null
+ if(!isnum(element_in_list) && normal)
+ assoc_val = potential_cache[element_in_list]
+ //Check assoc entrys
+ if(assoc_val == src)
+ log_gc("Found [type] \ref[src] in list [container_name]\[[element_in_list]\]")
+ continue
+ //We need to run both of these checks, since our object could be hiding in either of them
+ //Check normal sublists
+ if(islist(element_in_list))
+ DoSearchVar(element_in_list, "[container_name] -> [element_in_list] (list)", recursive_limit - 1, search_time)
+ //Check assoc sublists
+ if(islist(assoc_val))
+ DoSearchVar(potential_container[element_in_list], "[container_name]\[[element_in_list]\] -> [assoc_val] (list)", recursive_limit - 1, search_time)
#ifndef FIND_REF_NO_CHECK_TICK
CHECK_TICK
diff --git a/code/controllers/subsystem/ghost_spawns.dm b/code/controllers/subsystem/ghost_spawns.dm
index e0234c2616a..0490e764685 100644
--- a/code/controllers/subsystem/ghost_spawns.dm
+++ b/code/controllers/subsystem/ghost_spawns.dm
@@ -164,9 +164,9 @@ SUBSYSTEM_DEF(ghost_spawns)
if(!player_old_enough_antag(M.client, role))
return
if(role_text)
- if(jobban_isbanned(M, role_text) || jobban_isbanned(M, "Syndicate"))
+ if(jobban_isbanned(M, role_text) || jobban_isbanned(M, ROLE_SYNDICATE))
return
- if(config.use_exp_restrictions && min_hours)
+ if(GLOB.configuration.jobs.enable_exp_restrictions && min_hours)
if(M.client.get_exp_type_num(EXP_TYPE_LIVING) < min_hours * 60)
return
if(check_antaghud && cannotPossess(M))
diff --git a/code/controllers/subsystem/holiday.dm b/code/controllers/subsystem/holiday.dm
index ddde9cd62be..e9b254b1269 100644
--- a/code/controllers/subsystem/holiday.dm
+++ b/code/controllers/subsystem/holiday.dm
@@ -5,7 +5,7 @@ SUBSYSTEM_DEF(holiday)
var/list/holidays
/datum/controller/subsystem/holiday/Initialize(start_timeofday)
- if(!config.allow_holidays)
+ if(!GLOB.configuration.general.allow_holidays)
return ..() //Holiday stuff was not enabled in the config!
var/YY = text2num(time2text(world.timeofday, "YY")) // get the current year
diff --git a/code/controllers/subsystem/http.dm b/code/controllers/subsystem/http.dm
index ad5407bfdca..6c7178a69fa 100644
--- a/code/controllers/subsystem/http.dm
+++ b/code/controllers/subsystem/http.dm
@@ -12,8 +12,11 @@ SUBSYSTEM_DEF(http)
/// Total requests the SS has processed in a round
var/total_requests
-/datum/controller/subsystem/http/Initialize(start_timeofday)
+/datum/controller/subsystem/http/PreInit()
+ . = ..()
rustg_create_async_http_client() // Open the door
+
+/datum/controller/subsystem/http/Initialize(start_timeofday)
active_async_requests = list()
return ..()
diff --git a/code/controllers/subsystem/ipintel.dm b/code/controllers/subsystem/ipintel.dm
index 92f02a404a1..d16aae208d2 100644
--- a/code/controllers/subsystem/ipintel.dm
+++ b/code/controllers/subsystem/ipintel.dm
@@ -3,13 +3,374 @@ SUBSYSTEM_DEF(ipintel)
wait = 1
flags = SS_NO_FIRE
init_order = INIT_ORDER_XKEYSCORE // 10
- var/enabled = 0 //disable at round start to avoid checking reconnects
+ // Are we enabled? Auto disable at world init to avoid checking reconnects
+ var/enabled = FALSE
var/throttle = 0
var/errors = 0
var/list/cache = list()
-/datum/controller/subsystem/ipintel/Initialize(timeofday, zlevel)
- enabled = 1
- . = ..()
+/datum/controller/subsystem/ipintel/Initialize(timeofday)
+ enabled = TRUE
+ return ..()
+
+// Represents an IP intel holder datum
+/datum/ipintel
+ /// The IP being checked
+ var/ip
+ /// The current rating, 0-1 float.
+ var/intel = 0
+ /// Whether this was loaded from the cache or not
+ var/cache = FALSE
+ /// How many minutes ago it was cached
+ var/cacheminutesago = 0
+ /// The date it was cached
+ var/cachedate = ""
+ /// The real time it was cached
+ var/cacherealtime = 0
+
+/datum/ipintel/New()
+ cachedate = SQLtime()
+ cacherealtime = world.realtime
+
+/datum/ipintel/proc/is_valid()
+ . = FALSE
+ if(intel < 0)
+ return
+ if(intel <= GLOB.configuration.ipintel.bad_rating)
+ if(world.realtime < cacherealtime + (GLOB.configuration.ipintel.hours_save_good HOURS))
+ return TRUE
+ else
+ if(world.realtime < cacherealtime + (GLOB.configuration.ipintel.hours_save_bad HOURS))
+ return TRUE
+
+
+
+/**
+ * Get IP intel
+ *
+ * Performs a lookup of the rating for an IP provided
+ *
+ * Arguments:
+ * * ip - The IP to lookup
+ * * bypasscache - Do we want to bypass the DB cache?
+ * * updatecache - Do we want to update the DB cache?
+ */
+/datum/controller/subsystem/ipintel/proc/get_ip_intel(ip, bypasscache = FALSE, updatecache = TRUE)
+ var/datum/ipintel/res = new()
+ res.ip = ip
+ . = res
+ if(!ip || !GLOB.configuration.ipintel.contact_email || !GLOB.configuration.ipintel.enabled || !enabled)
+ return
+ if(!bypasscache)
+ var/datum/ipintel/cachedintel = cache[ip]
+ if(cachedintel && cachedintel.is_valid())
+ cachedintel.cache = TRUE
+ return cachedintel
+
+ if(SSdbcore.IsConnected())
+ var/datum/db_query/query_get_ip_intel = SSdbcore.NewQuery({"
+ SELECT date, intel, TIMESTAMPDIFF(MINUTE,date,NOW())
+ FROM ipintel
+ WHERE
+ ip = INET_ATON(:ip)
+ AND ((
+ intel < :rating_bad
+ AND
+ date + INTERVAL :save_good HOUR > NOW()
+ ) OR (
+ intel >= :rating_bad
+ AND
+ date + INTERVAL :save_bad HOUR > NOW()
+ ))
+ "}, list(
+ "ip" = ip,
+ "rating_bad" = GLOB.configuration.ipintel.bad_rating,
+ "save_good" = GLOB.configuration.ipintel.hours_save_good,
+ "save_bad" = GLOB.configuration.ipintel.hours_save_bad,
+ ))
+ if(!query_get_ip_intel.warn_execute())
+ qdel(query_get_ip_intel)
+ return
+ if(query_get_ip_intel.NextRow())
+ res.cache = TRUE
+ res.cachedate = query_get_ip_intel.item[1]
+ res.intel = text2num(query_get_ip_intel.item[2])
+ res.cacheminutesago = text2num(query_get_ip_intel.item[3])
+ res.cacherealtime = world.realtime - (text2num(query_get_ip_intel.item[3])*10*60)
+ cache[ip] = res
+ qdel(query_get_ip_intel)
+ return
+ qdel(query_get_ip_intel)
+ res.intel = ip_intel_query(ip)
+ if(updatecache && res.intel >= 0)
+ cache[ip] = res
+ if(SSdbcore.IsConnected())
+ var/datum/db_query/query_add_ip_intel = SSdbcore.NewQuery({"
+ INSERT INTO ipintel (ip, intel) VALUES (INET_ATON(:ip), :intel)
+ ON DUPLICATE KEY UPDATE intel = VALUES(intel), date = NOW()"},
+ list(
+ "ip" = ip,
+ "intel" = res.intel
+ )
+ )
+ query_add_ip_intel.warn_execute()
+ qdel(query_add_ip_intel)
+
+
+
+/**
+ * Performs the remote IPintel lookup
+ *
+ *
+ *
+ * Arguments:
+ * * ip - The IP to lookup
+ * * retried - Was this attempt retried?
+ */
+/datum/controller/subsystem/ipintel/proc/ip_intel_query(ip, retried = FALSE)
+ . = -1 //default
+ if(!ip)
+ return
+ if(throttle > world.timeofday)
+ return
+ if(!enabled)
+ return
+
+ // Do not refactor this to use SShttp, because that requires the subsystem to be firing for requests to be made, and this will be triggered before the MC has finished loading
+ var/list/http[] = world.Export("http://[GLOB.configuration.ipintel.ipintel_domain]/check.php?ip=[ip]&contact=[GLOB.configuration.ipintel.contact_email]&format=json&flags=b")
+
+ if(http)
+ var/status = text2num(http["STATUS"])
+
+ if(status == 200)
+ var/response = json_decode(file2text(http["CONTENT"]))
+ if(response)
+ if(response["status"] == "success")
+ var/intelnum = text2num(response["result"])
+ if(isnum(intelnum))
+ return text2num(response["result"])
+ else
+ ipintel_handle_error("Bad intel from server: [response["result"]].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+ else
+ ipintel_handle_error("Bad response from server: [response["status"]].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+
+ else if(status == 429)
+ ipintel_handle_error("Error #429: We have exceeded the rate limit.", ip, 1)
+ return
+ else
+ ipintel_handle_error("Unknown status code: [status].", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+ else
+ ipintel_handle_error("Unable to connect to API.", ip, retried)
+ if(!retried)
+ sleep(25)
+ return .(ip, 1)
+
+
+
+/**
+ * Error handler
+ *
+ * Handles an IP intel error, also throttling the susbystem if required
+ *
+ * Arguments:
+ * * error - The error description
+ * * ip - The IP that was tried
+ * * retried - Was this on a retried attempt
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_handle_error(error, ip, retried)
+ if(retried)
+ errors++
+ error += " Could not check [ip]. Disabling IPINTEL for [errors] minute[(errors == 1 ? "" : "s")]"
+ throttle = world.timeofday + (2 * errors MINUTES)
+ else
+ error += " Attempting retry on [ip]."
+ log_ipintel(error)
+
+
+
+/**
+ * Logs an IPintel error
+ *
+ * Pretty self explanatory. Logs errors regarding ipintel.
+ *
+ * Arguments:
+ * * text - Argument 1
+ */
+/datum/controller/subsystem/ipintel/proc/log_ipintel(text)
+ log_game("IPINTEL: [text]")
+ log_debug("IPINTEL: [text]")
+
+
+
+/**
+ * IPIntel Ban Checker
+ *
+ * Checks if a user is banned due to IPintel. It will check configuration, DB, whitelist checks, and more
+ *
+ * Arguments:
+ * * t_ckey - The ckey to check
+ * * t_ip - The IP to check
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_is_banned(t_ckey, t_ip)
+ if(!GLOB.configuration.ipintel.contact_email)
+ return FALSE
+ if(!GLOB.configuration.ipintel.enabled)
+ return FALSE
+ if(!GLOB.configuration.ipintel.whitelist_mode)
+ return FALSE
+ if(!SSdbcore.IsConnected())
+ return FALSE
+ if(!ipintel_badip_check(t_ip))
+ return FALSE
+ if(vpn_whitelist_check(t_ckey))
+ return FALSE
+ return TRUE
+
+
+
+/**
+ * IP Rating Checker
+ *
+ * Checks if a provided IP passes the config threshold for denial
+ *
+ * Arguments:
+ * * target_ip - The IP to check
+ */
+/datum/controller/subsystem/ipintel/proc/ipintel_badip_check(target_ip)
+ var/rating_bad = GLOB.configuration.ipintel.bad_rating
+ if(!rating_bad)
+ log_debug("ipintel_badip_check reports misconfigured rating_bad directive")
+ return FALSE
+ var/valid_hours = GLOB.configuration.ipintel.hours_save_bad
+ if(!valid_hours)
+ log_debug("ipintel_badip_check reports misconfigured ipintel_save_bad directive")
+ return FALSE
+ var/datum/db_query/query_get_ip_intel = SSdbcore.NewQuery({"
+ SELECT * FROM ipintel WHERE ip = INET_ATON(:target_ip)
+ AND intel >= :rating_bad AND (date + INTERVAL :valid_hours HOUR) > NOW()"},
+ list(
+ "target_ip" = target_ip,
+ "rating_bad" = rating_bad,
+ "valid_hours" = valid_hours
+ )
+ )
+ if(!query_get_ip_intel.warn_execute())
+ log_debug("ipintel_badip_check reports failed query execution")
+ qdel(query_get_ip_intel)
+ return FALSE
+ if(!query_get_ip_intel.NextRow())
+ qdel(query_get_ip_intel)
+ return FALSE
+ qdel(query_get_ip_intel)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist checker
+ *
+ * Checks if a ckey is whitelisted to be using a VPN against the DB
+ *
+ * Arguments:
+ * * target_ckey - The ckey to check
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_check(target_ckey)
+ if(!GLOB.configuration.ipintel.whitelist_mode)
+ return FALSE
+ var/datum/db_query/query_whitelist_check = SSdbcore.NewQuery("SELECT * FROM vpn_whitelist WHERE ckey=:ckey", list(
+ "ckey" = target_ckey
+ ))
+ if(!query_whitelist_check.warn_execute())
+ qdel(query_whitelist_check)
+ return FALSE
+ if(query_whitelist_check.NextRow())
+ qdel(query_whitelist_check)
+ return TRUE // At least one row in the whitelist names their ckey. That means they are whitelisted.
+ qdel(query_whitelist_check)
+ return FALSE
+
+
+
+/**
+ * VPN whitelist adder
+ *
+ * Adds a ckey to the VPN whitelist. Asks the admin to also provide a link to their request.
+ *
+ * Arguments:
+ * * target_ckey - The ckey to whitelist
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_add(target_ckey)
+ var/reason_string = input(usr, "Enter link to the URL of their whitelist request on the forum.","Reason required") as message|null
+ if(!reason_string)
+ return FALSE
+ var/datum/db_query/query_whitelist_add = SSdbcore.NewQuery("INSERT INTO vpn_whitelist (ckey,reason) VALUES (:targetckey, :reason)", list(
+ "targetckey" = target_ckey,
+ "reason" = reason_string
+ ))
+ if(!query_whitelist_add.warn_execute())
+ qdel(query_whitelist_add)
+ return FALSE
+ qdel(query_whitelist_add)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist remover
+ *
+ * Removes a ckey from the VPN whitelist. Pretty simple.
+ *
+ * Arguments:
+ * * target_ckey - The ckey to remove
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_remove(target_ckey)
+ var/datum/db_query/query_whitelist_remove = SSdbcore.NewQuery("DELETE FROM vpn_whitelist WHERE ckey=:targetckey", list(
+ "targetckey" = target_ckey
+ ))
+ if(!query_whitelist_remove.warn_execute())
+ qdel(query_whitelist_remove)
+ return FALSE
+ qdel(query_whitelist_remove)
+ return TRUE
+
+
+
+/**
+ * VPN whitelist panel
+ *
+ * Doesnt actually open a panel, this is just a verb to handle the rest of the whitelist operations
+ *
+ * Arguments:
+ * * target_ckey - The ckey to add/remove
+ */
+/datum/controller/subsystem/ipintel/proc/vpn_whitelist_panel(target_ckey as text)
+ if(!check_rights(R_ADMIN))
+ return
+ if(!target_ckey)
+ return
+ var/is_already_whitelisted = vpn_whitelist_check(target_ckey)
+ if(is_already_whitelisted)
+ var/confirm = alert("[target_ckey] is already whitelisted. Remove them?", "Confirm Removal", "No", "Yes")
+ if(!confirm || confirm != "Yes")
+ to_chat(usr, "VPN whitelist alteration cancelled.")
+ return
+ else if(vpn_whitelist_remove(target_ckey))
+ to_chat(usr, "[target_ckey] was removed from the VPN whitelist.")
+ else
+ to_chat(usr, "VPN whitelist unchanged.")
+ else
+ if(vpn_whitelist_add(target_ckey))
+ to_chat(usr, "[target_ckey] was added to the VPN whitelist.")
+ else
+ to_chat(usr, "VPN whitelist unchanged.")
diff --git a/code/controllers/subsystem/jobs.dm b/code/controllers/subsystem/jobs.dm
index c7e18522392..f7660f4d75a 100644
--- a/code/controllers/subsystem/jobs.dm
+++ b/code/controllers/subsystem/jobs.dm
@@ -20,12 +20,12 @@ SUBSYSTEM_DEF(jobs)
/datum/controller/subsystem/jobs/Initialize(timeofday)
if(!occupations.len)
SetupOccupations()
- LoadJobs("config/jobs.txt")
+ LoadJobs(FALSE)
return ..()
// Only fires every 5 minutes
/datum/controller/subsystem/jobs/fire()
- if(!SSdbcore.IsConnected() || !config.use_exp_tracking)
+ if(!SSdbcore.IsConnected() || !GLOB.configuration.jobs.enable_exp_tracking)
return
batch_update_player_exp(announce = FALSE) // Set this to true if you ever want to inform players about their EXP gains
@@ -242,8 +242,8 @@ SUBSYSTEM_DEF(jobs)
/datum/controller/subsystem/jobs/proc/FillAIPosition()
- if(config && !config.allow_ai)
- return 0
+ if(!GLOB.configuration.jobs.allow_ai)
+ return FALSE
var/ai_selected = 0
var/datum/job/job = GetJob("AI")
@@ -514,39 +514,29 @@ SUBSYSTEM_DEF(jobs)
-/datum/controller/subsystem/jobs/proc/LoadJobs(jobsfile) //ran during round setup, reads info from jobs.txt -- Urist
- if(!config.load_jobs_from_txt)
- return 0
+/datum/controller/subsystem/jobs/proc/LoadJobs(highpop = FALSE) //ran during round setup, reads info from jobs list
+ if(!GLOB.configuration.jobs.enable_job_amount_overrides)
+ return FALSE
- var/list/jobEntries = file2list(jobsfile)
+ var/list/joblist = list()
- for(var/job in jobEntries)
- if(!job)
+ if(highpop)
+ joblist = GLOB.configuration.jobs.highpop_job_map.Copy()
+ else
+ joblist = GLOB.configuration.jobs.lowpop_job_map.Copy()
+
+ for(var/job in joblist)
+ // Key: name | Value: Amount
+ var/datum/job/J = GetJob(job)
+ if(!J)
continue
+ J.total_positions = text2num(joblist[job])
+ J.spawn_positions = text2num(joblist[job])
- job = trim(job)
- if(!length(job))
- continue
+ if(job == "AI" || job == "Cyborg") //I dont like this here but it will do for now
+ J.total_positions = 0
- var/pos = findtext(job, "=")
- var/name = null
- var/value = null
-
- if(pos)
- name = copytext(job, 1, pos)
- value = copytext(job, pos + 1)
- else
- continue
-
- if(name && value)
- var/datum/job/J = GetJob(name)
- if(!J) continue
- J.total_positions = text2num(value)
- J.spawn_positions = text2num(value)
- if(name == "AI" || name == "Cyborg")//I dont like this here but it will do for now
- J.total_positions = 0
-
- return 1
+ return TRUE
/datum/controller/subsystem/jobs/proc/HandleFeedbackGathering()
@@ -750,7 +740,7 @@ SUBSYSTEM_DEF(jobs)
continue // If a client logs out in the middle of this
var/datum/db_query/exp_read = SSdbcore.NewQuery(
- "SELECT exp FROM [format_table_name("player")] WHERE ckey=:ckey",
+ "SELECT exp FROM player WHERE ckey=:ckey",
list("ckey" = C.ckey)
)
@@ -834,7 +824,7 @@ SUBSYSTEM_DEF(jobs)
C.prefs.exp = new_exp
var/datum/db_query/update_query = SSdbcore.NewQuery(
- "UPDATE [format_table_name("player")] SET exp =:newexp, lastseen=NOW() WHERE ckey=:ckey",
+ "UPDATE player SET exp =:newexp, lastseen=NOW() WHERE ckey=:ckey",
list(
"newexp" = new_exp,
"ckey" = C.ckey
@@ -844,7 +834,7 @@ SUBSYSTEM_DEF(jobs)
player_update_queries += update_query
var/datum/db_query/update_query_history = SSdbcore.NewQuery({"
- INSERT INTO [format_table_name("playtime_history")] (ckey, date, time_living, time_ghost)
+ INSERT INTO playtime_history (ckey, date, time_living, time_ghost)
VALUES (:ckey, CURDATE(), :addedliving, :addedghost)
ON DUPLICATE KEY UPDATE time_living=time_living + VALUES(time_living), time_ghost=time_ghost + VALUES(time_ghost)"},
list(
diff --git a/code/controllers/subsystem/lighting.dm b/code/controllers/subsystem/lighting.dm
index 6761e9647d9..e12c6be07df 100644
--- a/code/controllers/subsystem/lighting.dm
+++ b/code/controllers/subsystem/lighting.dm
@@ -13,7 +13,7 @@ SUBSYSTEM_DEF(lighting)
/datum/controller/subsystem/lighting/Initialize(timeofday)
if(!initialized)
- if(config.starlight)
+ if(GLOB.configuration.general.starlight)
for(var/I in GLOB.all_areas)
var/area/A = I
if(A.dynamic_lighting == DYNAMIC_LIGHTING_IFSTARLIGHT)
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index ac8165aca7a..014b247ba9e 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -1,31 +1,55 @@
SUBSYSTEM_DEF(mapping)
- name = "Mapping"
- init_order = INIT_ORDER_MAPPING // 9
- flags = SS_NO_FIRE
+ name = "Mapping"
+ init_order = INIT_ORDER_MAPPING // 9
+ flags = SS_NO_FIRE
+ /// What map datum are we using
+ var/datum/map/map_datum
+ /// What map will be used next round
+ var/datum/map/next_map
+ /// List of all areas that can be accessed via IC means
+ var/list/teleportlocs
+ /// List of all areas that can be accessed via IC and OOC means
+ var/list/ghostteleportlocs
+
+// This has to be here because world/New() uses [station_name()], which looks this datum up
+/datum/controller/subsystem/mapping/PreInit()
+ . = ..()
+ if(map_datum) // Dont do this again if we are recovering
+ return
+ if(fexists("data/next_map.txt"))
+ var/list/lines = file2list("data/next_map.txt")
+ // Check its valid
+ try
+ map_datum = text2path(lines[1])
+ map_datum = new map_datum
+ catch
+ map_datum = new /datum/map/cyberiad // Assume cyberiad if non-existent
+ fdel("data/next_map.txt") // Remove to avoid the same map existing forever
+ else
+ map_datum = new /datum/map/cyberiad // Assume cyberiad if non-existent
+
+/datum/controller/subsystem/mapping/Shutdown()
+ if(next_map) // Save map for next round
+ var/F = file("data/next_map.txt")
+ F << next_map.type
/datum/controller/subsystem/mapping/Initialize(timeofday)
// Load all Z level templates
preloadTemplates()
- // Pick a random away mission.
- if(!config.disable_away_missions)
- load_away_mission()
- // Seed space ruins
- if(!config.disable_space_ruins)
- // load in extra levels of space ruins
- var/load_zlevels_timer = start_watch()
- log_startup_progress("Creating random space levels...")
- var/num_extra_space = rand(config.extra_space_ruin_levels_min, config.extra_space_ruin_levels_max)
- for(var/i = 1, i <= num_extra_space, i++)
- GLOB.space_manager.add_new_zlevel("Ruin Area #[i]", linkage = CROSSLINKED, traits = list(REACHABLE, SPAWN_RUINS))
- log_startup_progress("Loaded random space levels in [stop_watch(load_zlevels_timer)]s.")
- // Now spawn ruins, random budget between 20 and 30 for all zlevels combined.
- // While this may seem like a high number, the amount of ruin Z levels can be anywhere between 3 and 7.
- // Note that this budget is not split evenly accross all zlevels
- log_startup_progress("Seeding ruins...")
- var/seed_ruins_timer = start_watch()
- seedRuins(levels_by_trait(SPAWN_RUINS), rand(20, 30), /area/space, GLOB.space_ruins_templates)
- log_startup_progress("Successfully seeded ruins in [stop_watch(seed_ruins_timer)]s.")
+ // Load the station
+ loadStation()
+
+ // Load lavaland
+ loadLavaland()
+
+ // Pick a random away mission.
+ if(GLOB.configuration.gateway.enable_away_mission)
+ load_away_mission()
+
+ // Seed space ruins
+ if(GLOB.configuration.ruins.enable_space_ruins)
+ handleRuins()
// Makes a blank space level for the sake of randomness
GLOB.space_manager.add_new_zlevel("Empty Area", linkage = CROSSLINKED, traits = list(REACHABLE))
@@ -37,46 +61,92 @@ SUBSYSTEM_DEF(mapping)
// Spawn Lavaland ruins and rivers.
log_startup_progress("Populating lavaland...")
var/lavaland_setup_timer = start_watch()
- seedRuins(list(level_name_to_num(MINING)), config.lavaland_budget, /area/lavaland/surface/outdoors/unexplored, GLOB.lava_ruins_templates)
+ seedRuins(list(level_name_to_num(MINING)), GLOB.configuration.ruins.lavaland_ruin_budget, /area/lavaland/surface/outdoors/unexplored, GLOB.lava_ruins_templates)
spawn_rivers(list(level_name_to_num(MINING)))
log_startup_progress("Successfully populated lavaland in [stop_watch(lavaland_setup_timer)]s.")
// Now we make a list of areas for teleport locs
- // TOOD: Make these locs into lists on the SS itself, not globs
+ teleportlocs = list()
for(var/area/AR in world)
if(AR.no_teleportlocs)
continue
- if(GLOB.teleportlocs[AR.name])
+ if(teleportlocs[AR.name])
continue
var/turf/picked = safepick(get_area_turfs(AR.type))
if(picked && is_station_level(picked.z))
- GLOB.teleportlocs[AR.name] = AR
+ teleportlocs[AR.name] = AR
- GLOB.teleportlocs = sortAssoc(GLOB.teleportlocs)
+ teleportlocs = sortAssoc(teleportlocs)
+
+ ghostteleportlocs = list()
for(var/area/AR in world)
- if(GLOB.ghostteleportlocs[AR.name])
+ if(ghostteleportlocs[AR.name])
continue
var/list/turfs = get_area_turfs(AR.type)
if(turfs.len)
- GLOB.ghostteleportlocs[AR.name] = AR
+ ghostteleportlocs[AR.name] = AR
- GLOB.ghostteleportlocs = sortAssoc(GLOB.ghostteleportlocs)
-
- // Map name. Break these down into SSmapping controller vars instaed of GLOBs at some point
- if(GLOB.using_map && GLOB.using_map.name)
- GLOB.map_name = "[GLOB.using_map.name]"
- else
- GLOB.map_name = "Unknown"
+ ghostteleportlocs = sortAssoc(ghostteleportlocs)
// World name
- if(config && config.server_name)
- world.name = "[config.server_name]: [station_name()]"
+ if(GLOB.configuration.general.server_name)
+ world.name = "[GLOB.configuration.general.server_name]: [station_name()]"
else
world.name = station_name()
return ..()
+// Do not confuse with seedRuins()
+/datum/controller/subsystem/mapping/proc/handleRuins()
+ // load in extra levels of space ruins
+ var/load_zlevels_timer = start_watch()
+ log_startup_progress("Creating random space levels...")
+ var/num_extra_space = rand(GLOB.configuration.ruins.extra_levels_min, GLOB.configuration.ruins.extra_levels_max)
+ for(var/i in 1 to num_extra_space)
+ GLOB.space_manager.add_new_zlevel("Ruin Area #[i]", linkage = CROSSLINKED, traits = list(REACHABLE, SPAWN_RUINS))
+ log_startup_progress("Loaded random space levels in [stop_watch(load_zlevels_timer)]s.")
+
+ // Now spawn ruins, random budget between 20 and 30 for all zlevels combined.
+ // While this may seem like a high number, the amount of ruin Z levels can be anywhere between 3 and 7.
+ // Note that this budget is not split evenly accross all zlevels
+ log_startup_progress("Seeding ruins...")
+ var/seed_ruins_timer = start_watch()
+ seedRuins(levels_by_trait(SPAWN_RUINS), rand(20, 30), /area/space, GLOB.space_ruins_templates)
+ log_startup_progress("Successfully seeded ruins in [stop_watch(seed_ruins_timer)]s.")
+
+// Loads in the station
+/datum/controller/subsystem/mapping/proc/loadStation()
+ ASSERT(map_datum.map_path)
+ if(!fexists(map_datum.map_path))
+ // Make a VERY OBVIOUS error
+ to_chat(world, "ERROR: The path specified for the map to load is invalid. No station has been loaded!")
+ return
+
+ var/watch = start_watch()
+ log_startup_progress("Loading [map_datum.fluff_name]...")
+ // This should always be Z2, but you never know
+ var/map_z_level = GLOB.space_manager.add_new_zlevel(MAIN_STATION, linkage = CROSSLINKED, traits = list(STATION_LEVEL, STATION_CONTACT, REACHABLE, AI_OK))
+ GLOB.maploader.load_map(file(map_datum.map_path), z_offset = map_z_level)
+ log_startup_progress("Loaded [map_datum.fluff_name] in [stop_watch(watch)]s")
+
+ // Save station name in the DB
+ if(!SSdbcore.IsConnected())
+ return
+ var/datum/db_query/query_set_map = SSdbcore.NewQuery(
+ "UPDATE round SET start_datetime=NOW(), map_name=:mapname, station_name=:stationname WHERE id=:round_id",
+ list("mapname" = map_datum.technical_name, "stationname" = map_datum.fluff_name, "round_id" = GLOB.round_id)
+ )
+ query_set_map.Execute(async = FALSE) // This happens during a time of intense server lag, so should be non-async
+ qdel(query_set_map)
+
+// Loads in lavaland
+/datum/controller/subsystem/mapping/proc/loadLavaland()
+ var/watch = start_watch()
+ log_startup_progress("Loading Lavaland...")
+ var/lavaland_z_level = GLOB.space_manager.add_new_zlevel(MINING, linkage = SELFLOOPING, traits = list(ORE_LEVEL, REACHABLE, STATION_CONTACT, HAS_WEATHER, AI_OK))
+ GLOB.maploader.load_map(file("_maps/map_files/generic/Lavaland.dmm"), z_offset = lavaland_z_level)
+ log_startup_progress("Loaded Lavaland in [stop_watch(watch)]s")
/datum/controller/subsystem/mapping/proc/seedRuins(list/z_levels = null, budget = 0, whitelist = /area/space, list/potentialRuins)
if(!z_levels || !z_levels.len)
@@ -166,11 +236,11 @@ SUBSYSTEM_DEF(mapping)
if(length(GLOB.awaydestinations))
return
- if(GLOB.potentialRandomZlevels && length(GLOB.potentialRandomZlevels))
+ if(length(GLOB.configuration.gateway.enabled_away_missions))
var/watch = start_watch()
log_startup_progress("Loading away mission...")
- var/map = pick(GLOB.potentialRandomZlevels)
+ var/map = pick(GLOB.configuration.gateway.enabled_away_missions)
var/file = file(map)
if(isfile(file))
var/zlev = GLOB.space_manager.add_new_zlevel(AWAY_MISSION, linkage = UNAFFECTED, traits = list(AWAY_LEVEL,BLOCK_TELEPORT))
diff --git a/code/controllers/subsystem/medals.dm b/code/controllers/subsystem/medals.dm
index 5de6cdeb27a..46023427643 100644
--- a/code/controllers/subsystem/medals.dm
+++ b/code/controllers/subsystem/medals.dm
@@ -4,15 +4,15 @@ SUBSYSTEM_DEF(medals)
var/hub_enabled = FALSE
/datum/controller/subsystem/medals/Initialize(timeofday)
- if(config.medal_hub_address && config.medal_hub_password)
+ if(GLOB.configuration.system.medal_hub_address && GLOB.configuration.system.medal_hub_password)
hub_enabled = TRUE
- ..()
+ return ..()
/datum/controller/subsystem/medals/proc/UnlockMedal(medal, client/player)
set waitfor = FALSE
if(!medal || !hub_enabled)
return
- if(isnull(world.SetMedal(medal, player, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("MEDAL ERROR: Could not contact hub to award medal [medal] to player [player.ckey].")
message_admins("Error! Failed to contact hub to award [medal] medal to [player.ckey]!")
@@ -35,7 +35,7 @@ SUBSYSTEM_DEF(medals)
var/newscoreparam = list2params(oldscore)
- if(isnull(world.SetScores(player.ckey, newscoreparam, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetScores(player.ckey, newscoreparam, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("SCORE ERROR: Could not contact hub to set score. Score [score] for player [player.ckey].")
message_admins("Error! Failed to contact hub to set [score] score for [player.ckey]!")
@@ -44,7 +44,7 @@ SUBSYSTEM_DEF(medals)
if(!score || !hub_enabled)
return
- var/scoreget = world.GetScores(player.ckey, score, config.medal_hub_address, config.medal_hub_password)
+ var/scoreget = world.GetScores(player.ckey, score, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)
if(isnull(scoreget))
hub_enabled = FALSE
log_game("SCORE ERROR: Could not contact hub to get score. Score [score] for player [player.ckey].")
@@ -58,7 +58,7 @@ SUBSYSTEM_DEF(medals)
if(!medal || !hub_enabled)
return
- if(isnull(world.GetMedal(medal, player, config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.GetMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
hub_enabled = FALSE
log_game("MEDAL ERROR: Could not contact hub to get medal [medal] for player [player.ckey]")
message_admins("Error! Failed to contact hub to get [medal] medal for [player.ckey]!")
@@ -68,7 +68,7 @@ SUBSYSTEM_DEF(medals)
/datum/controller/subsystem/medals/proc/LockMedal(medal, client/player)
if(!player || !medal || !hub_enabled)
return
- var/result = world.ClearMedal(medal, player, config.medal_hub_address, config.medal_hub_password)
+ var/result = world.ClearMedal(medal, player, GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)
switch(result)
if(null)
hub_enabled = FALSE
@@ -81,6 +81,6 @@ SUBSYSTEM_DEF(medals)
/datum/controller/subsystem/medals/proc/ClearScore(client/player)
- if(isnull(world.SetScores(player.ckey, "", config.medal_hub_address, config.medal_hub_password)))
+ if(isnull(world.SetScores(player.ckey, "", GLOB.configuration.system.medal_hub_address, GLOB.configuration.system.medal_hub_password)))
log_game("MEDAL ERROR: Could not contact hub to clear scores for [player.ckey].")
message_admins("Error! Failed to contact hub to clear scores for [player.ckey]!")
diff --git a/code/controllers/subsystem/mobs.dm b/code/controllers/subsystem/mobs.dm
index 8827de67123..e024a1f3d4e 100644
--- a/code/controllers/subsystem/mobs.dm
+++ b/code/controllers/subsystem/mobs.dm
@@ -9,6 +9,8 @@ SUBSYSTEM_DEF(mobs)
var/static/list/clients_by_zlevel[][]
var/static/list/dead_players_by_zlevel[][] = list(list()) // Needs to support zlevel 1 here, MaxZChanged only happens when CC is created and new_players can login before that.
var/static/list/cubemonkeys = list()
+ /// The amount of giant spiders that exist in the world. Used for mob capping.
+ var/giant_spiders = 0
/datum/controller/subsystem/mobs/stat_entry()
..("P:[GLOB.mob_living_list.len]")
diff --git a/code/controllers/subsystem/nightshift.dm b/code/controllers/subsystem/nightshift.dm
index deffcb6bddf..fe5d17dccd4 100644
--- a/code/controllers/subsystem/nightshift.dm
+++ b/code/controllers/subsystem/nightshift.dm
@@ -14,9 +14,9 @@ SUBSYSTEM_DEF(nightshift)
var/high_security_mode = FALSE
/datum/controller/subsystem/nightshift/Initialize()
- if(!config.enable_night_shifts)
+ if(!GLOB.configuration.general.enable_night_shifts)
can_fire = FALSE
- if(config.randomize_shift_time)
+ if(GLOB.configuration.general.randomise_shift_time)
GLOB.gametime_offset = rand(0, 23) HOURS
return ..()
diff --git a/code/controllers/subsystem/profiler.dm b/code/controllers/subsystem/profiler.dm
index 418af664d92..2d30360edb1 100644
--- a/code/controllers/subsystem/profiler.dm
+++ b/code/controllers/subsystem/profiler.dm
@@ -13,7 +13,7 @@ SUBSYSTEM_DEF(profiler)
..("F:[round(fetch_cost, 1)]ms | W:[round(write_cost, 1)]ms")
/datum/controller/subsystem/profiler/Initialize()
- if(!config.auto_profile)
+ if(!GLOB.configuration.general.enable_auto_profiler)
StopProfiling() //Stop the early start profiler if we dont want it on in the config
flags |= SS_NO_FIRE
return ..()
@@ -22,7 +22,7 @@ SUBSYSTEM_DEF(profiler)
DumpFile()
/datum/controller/subsystem/profiler/Shutdown()
- if(config.auto_profile)
+ if(GLOB.configuration.general.enable_auto_profiler)
DumpFile()
return ..()
diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm
index c86f988bcd4..71c504b3032 100644
--- a/code/controllers/subsystem/shuttles.dm
+++ b/code/controllers/subsystem/shuttles.dm
@@ -1,5 +1,4 @@
#define CALL_SHUTTLE_REASON_LENGTH 12
-
SUBSYSTEM_DEF(shuttle)
name = "Shuttle"
wait = 10
@@ -38,10 +37,11 @@ SUBSYSTEM_DEF(shuttle)
var/list/shoppinglist = list()
var/list/requestlist = list()
var/list/supply_packs = list()
- var/datum/round_event/shuttle_loan/shuttle_loan
var/sold_atoms = ""
var/list/hidden_shuttle_turfs = list() //all turfs hidden from navigation computers associated with a list containing the image hiding them and the type of the turf they are pretending to be
var/list/hidden_shuttle_turf_images = list() //only the images from the above list
+ /// Default refuel delay
+ var/refuel_delay = 20 MINUTES
/datum/controller/subsystem/shuttle/Initialize(start_timeofday)
ordernum = rand(1,9000)
@@ -97,7 +97,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/secondsToRefuel()
var/elapsed = world.time - SSticker.round_start_time
- var/remaining = round((config.shuttle_refuel_delay - elapsed) / 10)
+ var/remaining = round((refuel_delay - elapsed) / 10)
return remaining > 0 ? remaining : 0
/datum/controller/subsystem/shuttle/proc/requestEvac(mob/user, call_reason)
@@ -115,7 +115,7 @@ SUBSYSTEM_DEF(shuttle)
emergency = backup_shuttle
if(secondsToRefuel())
- to_chat(user, "The emergency shuttle is refueling. Please wait another [abs(round(((world.time - SSticker.round_start_time) - config.shuttle_refuel_delay)/600))] minutes before trying again.")
+ to_chat(user, "The emergency shuttle is refueling. Please wait another [abs(round(((world.time - SSticker.round_start_time) - refuel_delay)/600))] minutes before trying again.")
return
switch(emergency.mode)
@@ -135,8 +135,6 @@ SUBSYSTEM_DEF(shuttle)
to_chat(user, "The emergency shuttle has been disabled by Centcom.")
return
- call_reason = trim(html_encode(call_reason))
-
if(length(call_reason) < CALL_SHUTTLE_REASON_LENGTH)
to_chat(user, "Reason is too short. [CALL_SHUTTLE_REASON_LENGTH] character minimum.")
return
diff --git a/code/controllers/subsystem/statistics.dm b/code/controllers/subsystem/statistics.dm
index bfc7d9655d5..63c20742904 100644
--- a/code/controllers/subsystem/statistics.dm
+++ b/code/controllers/subsystem/statistics.dm
@@ -6,7 +6,7 @@ SUBSYSTEM_DEF(statistics)
/datum/controller/subsystem/statistics/Initialize(start_timeofday)
- if(!config.sql_enabled)
+ if(!SSdbcore.IsConnected())
flags |= SS_NO_FIRE // Disable firing if SQL is disabled
return ..()
@@ -18,7 +18,7 @@ SUBSYSTEM_DEF(statistics)
return
else
var/datum/db_query/statquery = SSdbcore.NewQuery(
- "INSERT INTO [format_table_name("legacy_population")] (playercount, admincount, time) VALUES (:playercount, :admincount, NOW())",
+ "INSERT INTO legacy_population (playercount, admincount, time) VALUES (:playercount, :admincount, NOW())",
list(
"playercount" = length(GLOB.clients),
"admincount" = length(GLOB.admins)
diff --git a/code/controllers/subsystem/tgui.dm b/code/controllers/subsystem/tgui.dm
index adc92c627a2..47094b7def7 100644
--- a/code/controllers/subsystem/tgui.dm
+++ b/code/controllers/subsystem/tgui.dm
@@ -119,7 +119,7 @@ SUBSYSTEM_DEF(tgui)
* Close all UIs attached to src_object.
* Returns the number of UIs closed.
*
- * * datum/src_objectThe object/datum which owns the UIs.
+ * * datum/src_object - The object/datum which owns the UIs.
*/
/datum/controller/subsystem/tgui/proc/close_uis(datum/src_object)
if(!src_object.unique_datum_id) // First check if the datum has an UID set
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index e4f5a6d6ecf..14a952cb36f 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -7,10 +7,12 @@ SUBSYSTEM_DEF(ticker)
runlevels = RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME
offline_implications = "The game is no longer aware of when the round ends. Immediate server restart recommended."
- /// Time the world started, relative to world.time
+ /// Time the game should start, relative to world.time
var/round_start_time = 0
+ /// Time that the round started
+ var/time_game_started = 0
/// Default timeout for if world.Reboot() doesnt have a time specified
- var/const/restart_timeout = 600
+ var/const/restart_timeout = 75 SECONDS
/// Current status of the game. See code\__DEFINES\game.dm
var/current_state = GAME_STATE_STARTUP
/// Do we want to force-start as soon as we can
@@ -61,6 +63,8 @@ SUBSYSTEM_DEF(ticker)
var/end_state = "undefined"
/// Time the real reboot kicks in
var/real_reboot_time = 0
+ /// Datum used to generate the end of round scoreboard.
+ var/datum/scoreboard/score = null
/datum/controller/subsystem/ticker/Initialize()
login_music = pick(\
@@ -77,9 +81,9 @@ SUBSYSTEM_DEF(ticker)
switch(current_state)
if(GAME_STATE_STARTUP)
// This is ran as soon as the MC starts firing, and should only run ONCE, unless startup fails
- round_start_time = world.time + (config.pregame_timestart * 10)
+ round_start_time = world.time + (GLOB.configuration.general.lobby_time SECONDS)
to_chat(world, "Welcome to the pre-game lobby!")
- to_chat(world, "Please, setup your character and select ready. Game will start in [config.pregame_timestart] seconds")
+ to_chat(world, "Please, setup your character and select ready. Game will start in [GLOB.configuration.general.lobby_time] seconds")
current_state = GAME_STATE_PREGAME
fire() // TG says this is a good idea
for(var/mob/new_player/N in GLOB.player_list)
@@ -112,10 +116,10 @@ SUBSYSTEM_DEF(ticker)
if(world.time > next_autotransfer)
SSvote.autotransfer()
- next_autotransfer = world.time + config.vote_autotransfer_interval
+ next_autotransfer = world.time + GLOB.configuration.vote.autotransfer_interval_time
var/game_finished = SSshuttle.emergency.mode >= SHUTTLE_ENDGAME || mode.station_was_nuked
- if(config.continuous_rounds)
+ if(GLOB.configuration.gamemode.disable_certain_round_early_end)
mode.check_finished() // some modes contain var-changing code in here, so call even if we don't uses result
else
game_finished |= mode.check_finished()
@@ -127,6 +131,8 @@ SUBSYSTEM_DEF(ticker)
auto_toggle_ooc(TRUE) // Turn it on
declare_completion()
addtimer(CALLBACK(src, .proc/call_reboot), 5 SECONDS)
+ if(GLOB.configuration.vote.enable_map_voting)
+ SSvote.initiate_vote("map", "the server", TRUE) // Start a map vote. Timing is a little tight here but we should be good.
/datum/controller/subsystem/ticker/proc/call_reboot()
if(mode.station_was_nuked)
@@ -136,6 +142,7 @@ SUBSYSTEM_DEF(ticker)
/datum/controller/subsystem/ticker/proc/setup()
cultdat = setupcult()
+ score = new()
// Create and announce mode
if(GLOB.master_mode == "secret")
@@ -144,7 +151,7 @@ SUBSYSTEM_DEF(ticker)
var/list/datum/game_mode/runnable_modes
if(GLOB.master_mode == "random" || GLOB.master_mode == "secret")
- runnable_modes = config.get_runnable_modes()
+ runnable_modes = GLOB.configuration.gamemode.get_runnable_modes()
if(!length(runnable_modes))
to_chat(world, "Unable to choose playable game mode. Reverting to pre-game lobby.")
force_start = FALSE
@@ -152,9 +159,9 @@ SUBSYSTEM_DEF(ticker)
Master.SetRunLevel(RUNLEVEL_LOBBY)
return FALSE
if(GLOB.secret_force_mode != "secret")
- var/datum/game_mode/M = config.pick_mode(GLOB.secret_force_mode)
+ var/datum/game_mode/M = GLOB.configuration.gamemode.pick_mode(GLOB.secret_force_mode)
if(M.can_start())
- mode = config.pick_mode(GLOB.secret_force_mode)
+ mode = GLOB.configuration.gamemode.pick_mode(GLOB.secret_force_mode)
SSjobs.ResetOccupations()
if(!mode)
mode = pickweight(runnable_modes)
@@ -162,7 +169,7 @@ SUBSYSTEM_DEF(ticker)
var/mtype = mode.type
mode = new mtype
else
- mode = config.pick_mode(GLOB.master_mode)
+ mode = GLOB.configuration.gamemode.pick_mode(GLOB.master_mode)
if(!mode.can_start())
to_chat(world, "Unable to start [mode.name]. Not enough players, [mode.required_players] players needed. Reverting to pre-game lobby.")
@@ -261,10 +268,10 @@ SUBSYSTEM_DEF(ticker)
SSdiscord.send2discord_simple_noadmins("**\[Info]** Round has started")
auto_toggle_ooc(FALSE) // Turn it off
- round_start_time = world.time
+ time_game_started = world.time
// Sets the auto shuttle vote to happen after the config duration
- next_autotransfer = world.time + config.vote_autotransfer_initial
+ next_autotransfer = world.time + GLOB.configuration.vote.autotransfer_initial_time
for(var/mob/new_player/N in GLOB.mob_list)
if(N.client)
@@ -276,10 +283,12 @@ SUBSYSTEM_DEF(ticker)
if(playercount >= highpop_trigger)
log_debug("Playercount: [playercount] versus trigger: [highpop_trigger] - loading highpop job config")
- SSjobs.LoadJobs("config/jobs_highpop.txt")
+ SSjobs.LoadJobs(TRUE)
else
log_debug("Playercount: [playercount] versus trigger: [highpop_trigger] - keeping standard job config")
+ SSnightshift.check_nightshift()
+
#ifdef UNIT_TESTS
RunUnitTests()
#endif
@@ -482,7 +491,8 @@ SUBSYSTEM_DEF(ticker)
if(findtext("[handler]","auto_declare_completion_"))
call(mode, handler)()
- scoreboard()
+ // Display the scoreboard window
+ score.scoreboard()
// Declare the completion of the station goals
mode.declare_station_goal_completion()
diff --git a/code/controllers/subsystem/tickets/tickets.dm b/code/controllers/subsystem/tickets/tickets.dm
index 24919f801f5..d5eb31117e2 100644
--- a/code/controllers/subsystem/tickets/tickets.dm
+++ b/code/controllers/subsystem/tickets/tickets.dm
@@ -214,14 +214,18 @@ SUBSYSTEM_DEF(tickets)
"Already Resolved" = "The problem has been resolved already.",
"Mentorhelp" = "Please redirect your question to Mentorhelp, as they are better experienced with these types of questions.",
"Happens Again" = "Thanks, let us know if it continues to happen.",
- "Github Issue Report" = "To report a bug, please go to our Github page. Then go to 'Issues'. Then 'New Issue'. Then fill out the report form. If the report would reveal current-round information, file it after the round ends.",
"Clear Cache" = "To fix a blank screen, go to the 'Special Verbs' tab and press 'Reload UI Resources'. If that fails, clear your BYOND cache (instructions provided with 'Reload UI Resources'). If that still fails, please adminhelp again, stating you have already done the following." ,
"IC Issue" = "This is an In Character (IC) issue and will not be handled by admins. You could speak to Security, Internal Affairs, a Departmental Head, Nanotrasen Representetive, or any other relevant authority currently on station.",
"Reject" = "Reject",
"Man Up" = "Man Up",
- "Appeal on the Forums" = "Appealing a ban must occur on the forums. Privately messaging, or adminhelping about your ban will not resolve it. To appeal your ban, please head to [config.banappeals]"
)
+ if(GLOB.configuration.url.banappeals_url)
+ response_phrases["Appeal on the Forums"] = "Appealing a ban must occur on the forums. Privately messaging, or adminhelping about your ban will not resolve it. To appeal your ban, please head to [GLOB.configuration.url.banappeals_url]"
+
+ if(GLOB.configuration.url.github_url)
+ response_phrases["Github Issue Report"] = "To report a bug, please go to our Github page. Then go to 'Issues'. Then 'New Issue'. Then fill out the report form. If the report would reveal current-round information, file it after the round ends."
+
var/sorted_responses = list()
for(var/key in response_phrases) //build a new list based on the short descriptive keys of the master list so we can send this as the input instead of the full paragraphs to the admin choosing which autoresponse
sorted_responses += key
diff --git a/code/controllers/subsystem/titlescreen.dm b/code/controllers/subsystem/titlescreen.dm
index 7fe59ec9093..90ea775885e 100644
--- a/code/controllers/subsystem/titlescreen.dm
+++ b/code/controllers/subsystem/titlescreen.dm
@@ -16,8 +16,6 @@ SUBSYSTEM_DEF(title)
else if(L.len > 1)
if(use_rare_screens && lowertext(L[1]) == "rare")
title_screens += S
- else if(GLOB.using_map && (lowertext(L[1]) == lowertext(GLOB.using_map.name)))
- title_screens += S
if(!isemptylist(title_screens))
if(length(title_screens) > 1)
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 346297d900f..579a6b7c07c 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -27,7 +27,7 @@ SUBSYSTEM_DEF(vote)
// Calculate how much time is remaining by comparing current time, to time of vote start,
// plus vote duration
- time_remaining = round((started_time + config.vote_period - world.time)/10)
+ time_remaining = round((started_time + GLOB.configuration.vote.vote_time - world.time)/10)
if(time_remaining < 0)
result()
@@ -41,7 +41,7 @@ SUBSYSTEM_DEF(vote)
CHECK_TICK
/datum/controller/subsystem/vote/proc/autotransfer()
- initiate_vote("crew_transfer","the server")
+ initiate_vote("crew transfer", "the server")
/datum/controller/subsystem/vote/proc/reset()
initiator = null
@@ -53,9 +53,9 @@ SUBSYSTEM_DEF(vote)
voting.Cut()
current_votes.Cut()
- if(auto_muted && !config.ooc_allowed && !(config.auto_toggle_ooc_during_round && SSticker.current_state == GAME_STATE_PLAYING))
+ if(auto_muted && !GLOB.ooc_enabled && !(GLOB.configuration.general.auto_disable_ooc && SSticker.current_state == GAME_STATE_PLAYING))
auto_muted = 0
- config.ooc_allowed = !( config.ooc_allowed )
+ GLOB.ooc_enabled = TRUE
to_chat(world, "The OOC channel has been automatically enabled due to vote end.")
log_admin("OOC was toggled automatically due to vote end.")
message_admins("OOC has been toggled on automatically.")
@@ -83,7 +83,7 @@ SUBSYSTEM_DEF(vote)
choices -= sorted_highest
choices = sorted_choices
//default-vote for everyone who didn't vote
- if(!config.vote_no_default && choices.len)
+ if(!GLOB.configuration.vote.disable_default_vote && choices.len)
var/non_voters = (GLOB.clients.len - total_votes)
if(non_voters > 0)
if(mode == "restart")
@@ -95,7 +95,7 @@ SUBSYSTEM_DEF(vote)
choices[GLOB.master_mode] += non_voters
if(choices[GLOB.master_mode] >= greatest_votes)
greatest_votes = choices[GLOB.master_mode]
- else if(mode == "crew_transfer")
+ else if(mode == "crew transfer")
var/factor = 0.5
switch(world.time / (10 * 60)) // minutes
if(0 to 60)
@@ -174,9 +174,19 @@ SUBSYSTEM_DEF(vote)
if(!SSticker.ticker_going)
SSticker.ticker_going = TRUE
to_chat(world, "The round will start soon.")
- if("crew_transfer")
+ if("crew transfer")
if(. == "Initiate Crew Transfer")
- init_shift_change(null, 1)
+ init_shift_change(null, TRUE)
+ if("map")
+ // Find target map.
+ var/datum/map/top_voted_map
+ for(var/x in subtypesof(/datum/map))
+ var/datum/map/M = x
+ // Set top voted map
+ if(. == "[initial(M.fluff_name)] ([initial(M.technical_name)])")
+ top_voted_map = M
+ to_chat(world, "Map for next round: [initial(top_voted_map.fluff_name)] ([initial(top_voted_map.technical_name)])")
+ SSmapping.next_map = new top_voted_map
if(restart)
@@ -186,7 +196,7 @@ SUBSYSTEM_DEF(vote)
/datum/controller/subsystem/vote/proc/submit_vote(ckey, vote)
if(mode)
- if(config.vote_no_dead && usr.stat == DEAD && !usr.client.holder)
+ if(GLOB.configuration.vote.prevent_dead_voting && usr.stat == DEAD && !usr.client.holder)
return 0
if(current_votes[ckey])
choices[choices[current_votes[ckey]]]--
@@ -197,10 +207,10 @@ SUBSYSTEM_DEF(vote)
return vote
return 0
-/datum/controller/subsystem/vote/proc/initiate_vote(vote_type, initiator_key)
+/datum/controller/subsystem/vote/proc/initiate_vote(vote_type, initiator_key, code_invoked = FALSE)
if(!mode)
if(started_time != null && !check_rights(R_ADMIN))
- var/next_allowed_time = (started_time + config.vote_delay)
+ var/next_allowed_time = (started_time + GLOB.configuration.vote.vote_delay)
if(next_allowed_time > world.time)
return 0
@@ -211,8 +221,8 @@ SUBSYSTEM_DEF(vote)
if("gamemode")
if(SSticker.current_state >= 2)
return 0
- choices.Add(config.votable_modes)
- if("crew_transfer")
+ choices.Add(GLOB.configuration.gamemode.votable_modes)
+ if("crew transfer")
if(check_rights(R_ADMIN|R_MOD))
if(SSticker.current_state <= 2)
return 0
@@ -223,6 +233,14 @@ SUBSYSTEM_DEF(vote)
return 0
question = "End the shift?"
choices.Add("Initiate Crew Transfer", "Continue The Round")
+ if("map")
+ if(!(check_rights(R_SERVER) || code_invoked))
+ return FALSE
+ question = "Map for next round"
+ for(var/x in subtypesof(/datum/map))
+ var/datum/map/M = x
+ choices.Add("[initial(M.fluff_name)] ([initial(M.technical_name)])")
+
if("custom")
question = html_encode(input(usr,"What is the vote for?") as text|null)
if(!question) return 0
@@ -246,37 +264,33 @@ SUBSYSTEM_DEF(vote)
log_vote(text)
to_chat(world, {"[text]
Click here or type vote to place your vote.
- You have [config.vote_period/10] seconds to vote."})
+ You have [GLOB.configuration.vote.vote_time / 10] seconds to vote."})
switch(vote_type)
- if("crew_transfer")
- SEND_SOUND(world, sound('sound/ambience/alarm4.ogg'))
- if("gamemode")
- SEND_SOUND(world, sound('sound/ambience/alarm4.ogg'))
- if("custom")
+ if("crew transfer", "gamemode", "custom", "map")
SEND_SOUND(world, sound('sound/ambience/alarm4.ogg'))
if(mode == "gamemode" && SSticker.ticker_going)
SSticker.ticker_going = FALSE
to_chat(world, "Round start has been delayed.")
- if(mode == "crew_transfer" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "crew transfer" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to a crew transfer vote.")
- log_admin("OOC was toggled automatically due to crew_transfer vote.")
+ log_admin("OOC was toggled automatically due to crew transfer vote.")
message_admins("OOC has been toggled off automatically.")
- if(mode == "gamemode" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "gamemode" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to the gamemode vote.")
log_admin("OOC was toggled automatically due to gamemode vote.")
message_admins("OOC has been toggled off automatically.")
- if(mode == "custom" && config.ooc_allowed)
- auto_muted = 1
- config.ooc_allowed = !( config.ooc_allowed )
+ if(mode == "custom" && GLOB.ooc_enabled)
+ auto_muted = TRUE
+ GLOB.ooc_enabled = FALSE
to_chat(world, "The OOC channel has been automatically disabled due to a custom vote.")
log_admin("OOC was toggled automatically due to custom vote.")
message_admins("OOC has been toggled off automatically.")
- time_remaining = round(config.vote_period/10)
+ time_remaining = round(GLOB.configuration.vote.vote_time / 10)
return 1
return 0
@@ -300,31 +314,41 @@ SUBSYSTEM_DEF(vote)
dat += "(Cancel Vote) "
else
dat += "| Name | Rank | Activity |
|---|---|---|
| Heads | ||
| [name] | [heads[name]] | [isactive[name]] |
| Security | ||
| [name] | [sec[name]] | [isactive[name]] |
| Engineering | ||
| [name] | [eng[name]] | [isactive[name]] |
| Medical | ||
| [name] | [med[name]] | [isactive[name]] |
| Science | ||
| [name] | [sci[name]] | [isactive[name]] |
| Service | ||
| [name] | [ser[name]] | [isactive[name]] |
| Supply | ||
| [name] | [sup[name]] | [isactive[name]] |
| Silicon | ||
| [name] | [bot[name]] | [isactive[name]] |
| Miscellaneous | ||
| [name] | [misc[name]] | [isactive[name]] |
"
- message_text += "