diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 69893a3b68a..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<Arbitrary text")
- ```
- * Good:
- ```
- visible_message("Arbitrary text")
- ```
+ * To display messages to all mobs that can view `user`, you should use `visible_message()`.
+
+ ```DM
+ //Bad
+ for(var/mob/M in viewers(user))
+ M.show_message("Arbitrary text")
+
+ //Good
+ user.visible_message("Arbitrary text")
+ ```
* You should not use color macros (`\red, \blue, \green, \black`) to color text,
- instead, you should use span classes. `red text`,
- `blue text`.
- * Bad:
+ instead, you should use span classes. `Red text`, `Blue text`.
+
```
- to_chat("\red Red Text \black black text")
- ```
- * Good:
- ```
- to_chat("Red Textblack text")
+ //Bad
+ to_chat(user, "\red Red text \black Black text")
+
+ //Good
+ to_chat(user, "Red textBlack text")
```
* To use variables in strings, you should **never** use the `text()` operator, use
embedded expressions directly in the string.
- * Bad:
- ```
- to_chat(text("[] is leaking []!", src.name, src.liquid_type))
- ```
- * Good:
- ```
- to_chat("[src] is leaking [liquid_type]")
- ```
+
+ ```DM
+ //Bad
+ to_chat(user, text("[] is leaking []!", name, liquid_type))
+
+ //Good
+ to_chat(user, "[name] is leaking [liquid_type]!")
+ ```
* To reference a variable/proc on the src object, you should **not** use
`src.var`/`src.proc()`. The `src.` in these cases is implied, so you should just use
`var`/`proc()`.
- * Bad:
- ```
- var/user = src.interactor
- src.fillReserves(user)
- ```
- * Good:
- ```
- var/user = interactor
- fillReserves(user)
- ```
+ ```DM
+ //Bad
+ var/user = src.interactor
+ src.fill_reserves(user)
+
+ //Good
+ var/user = interactor
+ fill_reserves(user)
+ ```
### Develop Secure Code
-* Player input must always be escaped safely, we recommend you use stripped_input in all cases where you would use input. Essentially, just always treat input from players as inherently malicious and design with that use case in mind
+* Player input must always be escaped safely, we recommend you use `stripped_input()` in all cases where you would use input. Essentially, just always treat input from players as inherently malicious and design with that use case in mind.
* Calls to the database must be escaped properly - use proper parameters (values starting with a :). You can then replace these with a list of parameters, and these will be properly escaped during the query, and prevent any SQL injection.
- * Good:
- ```dm
- var/datum/db_query/query_watch = SSdbcore.NewQuery("SELECT reason FROM [format_table_name("watch")] WHERE ckey=:target_ckey", list(
- "target_ckey" = target_ckey
- )) // Note the use of parameters on the above line and :target_ckey in the query
- ```
- * Bad:
- ```dm
- var/datum/db_query/query_watch = SSdbcore.NewQuery("SELECT reason FROM [format_table_name("watch")] WHERE ckey='[target_ckey]'")
- ```
+ ```DM
+ //Bad
+ var/datum/db_query/query_watch = SSdbcore.NewQuery("SELECT reason FROM [format_table_name("watch")] WHERE ckey='[target_ckey]'")
+
+ //Good
+ var/datum/db_query/query_watch = SSdbcore.NewQuery("SELECT reason FROM [format_table_name("watch")] WHERE ckey=:target_ckey", list(
+ "target_ckey" = target_ckey
+ )) // Note the use of parameters on the above line and :target_ckey in the query.
+ ```
* All calls to topics must be checked for correctness. Topic href calls can be easily faked by clients, so you should ensure that the call is valid for the state the item is in. Do not rely on the UI code to provide only valid topic calls, because it won't.
@@ -467,13 +483,13 @@ SS13 has a lot of legacy code that's never been updated. Here are some examples
### SQL
* Do not use the shorthand sql insert format (where no column names are specified) because it unnecessarily breaks all queries on minor column changes and prevents using these tables for tracking outside related info such as in a connected site/forum.
-* Use parameters for queries (Mentioned above in) [###Develop Secure Code](###Develop Secure Code)
+* Use parameters for queries, as mentioned above in [Develop Secure Code](#develop-secure-code).
-* Always check your queries for success with if(!query.warn_execute()). By using this standard format, you can ensure the correct log messages are used
+* Always check your queries for success with `if(!query.warn_execute())`. By using this standard format, you can ensure the correct log messages are used.
-* Always qdel() your queries after you are done with them, this cleans up the results and helps things run smoother
+* Always `qdel()` your queries after you are done with them, this cleans up the results and helps things run smoother.
-* All changes to the database's layout(schema) must be specified in the database changelog in SQL, as well as reflected in the schema files
+* All changes to the database's layout (schema) must be specified in the database changelog in SQL, as well as reflected in the schema file.
* Any time the schema is changed the `SQL_VERSION` defines must be incremented, as well as the example config, with an appropriate conversion kit placed
in the SQL/updates folder.
@@ -536,7 +552,7 @@ in the SQL/updates folder.
* External areas, or areas where depressurisation is expected and normal, should use airless turf variants to prevent additional atmospherics load.
* Edits in mapping tools should generally be possible to replicate in-game. For this reason, avoid stacking multiple structures on the same tile (i.e. placing a light and an APC on the same wall.)
### Other Notes
-* Code should be modular where possible; if you are working on a new addition, then strongly consider putting it in its own file unless it makes sense to put it with similar ones (i.e. a new tool would go in the "tools.dm" file)
+* Code should be modular where possible; if you are working on a new addition, then strongly consider putting it in its own file unless it makes sense to put it with similar ones (i.e. a new tool would go in the `tools.dm` file)
* Bloated code may be necessary to add a certain feature, which means there has to be a judgement over whether the feature is worth having or not. You can help make this decision easier by making sure your code is modular.
* You are expected to help maintain the code that you add, meaning that if there is a problem then you are likely to be approached in order to fix any issues, runtimes, or bugs.
@@ -546,38 +562,38 @@ in the SQL/updates folder.
* All new var/proc names should use the American English spelling of words. This is for consistency with BYOND.
### Dream Maker Quirks/Tricks
-Like all languages, Dream Maker has its quirks, some of them are beneficial to us, like these
+Like all languages, Dream Maker has its quirks, some of them are beneficial to us, like these:
#### In-To for-loops
-```for(var/i = 1, i <= some_value, i++)``` is a fairly standard way to write an incremental for loop in most languages (especially those in the C family), but
-DM's ```for(var/i in 1 to some_value)``` syntax is oddly faster than its implementation of the former syntax; where possible, it's advised to use DM's syntax. (
-Note, the ```to``` keyword is inclusive, so it automatically defaults to replacing ```<=```; if you want ```<``` then you should write it as ```1 to
-some_value-1```).
+`for(var/i = 1, i <= some_value, i++)` is a fairly standard way to write an incremental for loop in most languages (especially those in the C family), but
+DM's `for(var/i in 1 to some_value)` syntax is oddly faster than its implementation of the former syntax; where possible, it's advised to use DM's syntax. (
+Note, the `to` keyword is inclusive, so it automatically defaults to replacing `<=`; if you want `<` then you should write it as `1 to
+some_value-1`).
-HOWEVER, if either ```some_value``` or ```i``` changes within the body of the for (underneath the ```for(...)``` header) or if you are looping over a list AND
+HOWEVER, if either `some_value` or `i` changes within the body of the for (underneath the `for(...)` header) or if you are looping over a list AND
changing the length of the list then you can NOT use this type of for-loop!
-### for(var/A in list) VS for(var/i in 1 to list.len)
+### `for(var/A in list)` VS `for(var/i in 1 to list.len)`
The former is faster than the latter, as shown by the following profile results:
-https://file.house/zy7H.png
+https://file.house/zy7H.png
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)
@@ -585,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
@@ -607,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.
@@ -627,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
@@ -648,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/.vscode/settings.json b/.vscode/settings.json
index b6d5ddfed6d..a413f2f4dfd 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -2,4 +2,4 @@
"workbench.editorAssociations": {
"*.dmi": "imagePreview.previewEditor"
}
-}
\ No newline at end of file
+}
diff --git a/_maps/map_files/Delta/delta.dmm b/_maps/map_files/Delta/delta.dmm
index 0a5a95c69ac..dbae276a6c9 100644
--- a/_maps/map_files/Delta/delta.dmm
+++ b/_maps/map_files/Delta/delta.dmm
@@ -235,7 +235,7 @@
"adv" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/light/small{
dir = 8
@@ -433,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"
@@ -482,6 +479,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"afb" = (
@@ -511,9 +516,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -527,8 +531,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -542,14 +546,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/sign/electricshock{
pixel_y = -32
},
/obj/machinery/door/airlock/engineering{
- icon_state = "door_closed";
name = "Fore Starboard Solar Access";
req_access_txt = "10"
},
@@ -611,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{
@@ -658,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,
@@ -701,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"
@@ -723,7 +719,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -754,13 +750,30 @@
/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" = (
@@ -779,21 +792,30 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/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
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -801,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{
@@ -817,19 +839,16 @@
/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
},
@@ -898,8 +917,12 @@
layer = 4;
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" = (
@@ -912,13 +935,6 @@
},
/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{
icon_state = "brown"
},
@@ -939,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" = (
@@ -948,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" = (
@@ -961,32 +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"
- },
-/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,
@@ -1030,11 +1057,6 @@
id = 100000
},
/obj/item/gps,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 1
- },
/obj/machinery/newscaster/security_unit{
pixel_y = 32
},
@@ -1043,30 +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
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1080,8 +1087,8 @@
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"
@@ -1130,13 +1137,20 @@
/obj/machinery/camera{
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
@@ -1144,60 +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_y = 24
+/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_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_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)
@@ -1219,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"
@@ -1239,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
@@ -1262,9 +1296,8 @@
},
/area/security/podbay)
"ahI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -1275,48 +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
- },
/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
- },
-/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,
@@ -1329,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{
@@ -1357,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"
},
@@ -1372,6 +1408,9 @@
dir = 4;
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -1381,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
@@ -1429,29 +1479,14 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/entry)
"aip" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/west,
-/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{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/entry)
+"air" = (
+/obj/effect/decal/warning_stripes/red/partial,
/turf/simulated/floor/engine{
icon_state = "stage_stairs";
name = "reinforced stairs"
@@ -1466,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
@@ -1485,44 +1517,45 @@
/turf/simulated/floor/plasteel,
/area/security/podbay)
"aiu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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
- },
/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
- },
-/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
- },
+/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"
- },
/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" = (
@@ -1534,9 +1567,6 @@
dir = 8
},
/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -1547,9 +1577,6 @@
layer = 2.9
},
/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -1590,37 +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
- },
-/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
+/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)
@@ -1635,11 +1668,12 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"aiT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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" = (
@@ -1661,10 +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
- },
/obj/structure/rack{
dir = 1
},
@@ -1691,19 +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
+/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,
@@ -1716,10 +1741,6 @@
network = list("Security","SS13");
pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/red/hollow,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -1730,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,
@@ -1793,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;
@@ -1844,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"
@@ -1869,32 +1898,31 @@
layer = 4;
pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/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"
},
@@ -1914,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"
},
@@ -1933,21 +1972,33 @@
name = "north bump";
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"
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
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{
@@ -1955,6 +2006,14 @@
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/mecha_part_fabricator/spacepod,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akh" = (
@@ -1964,18 +2023,33 @@
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
},
+/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)
"akw" = (
@@ -2006,59 +2080,36 @@
/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
+/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
+/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
- },
-/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
+/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
+/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;
@@ -2067,7 +2118,6 @@
/turf/simulated/floor/engine,
/area/engine/mechanic_workshop/hanger)
"akI" = (
-/obj/effect/decal/warning_stripes/west,
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -2086,15 +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"
},
/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" = (
@@ -2125,9 +2183,6 @@
},
/area/engine/mechanic_workshop)
"ald" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/chair/office/light{
dir = 8
},
@@ -2145,26 +2200,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -2218,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
},
@@ -2247,7 +2300,6 @@
/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
@@ -2273,19 +2325,13 @@
/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
+/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
@@ -2307,13 +2353,12 @@
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)
@@ -2328,7 +2373,6 @@
/turf/space,
/area/space)
"alG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
layer = 4;
pixel_x = -32
@@ -2348,15 +2392,11 @@
/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
@@ -2367,16 +2407,6 @@
/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;
@@ -2389,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,
@@ -2402,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
@@ -2429,7 +2459,7 @@
dir = 1;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"alS" = (
/obj/structure/table/wood,
/obj/effect/spawner/lootdrop/maintenance,
@@ -2440,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,
@@ -2459,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";
@@ -2476,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;
@@ -2496,36 +2542,66 @@
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)
+/area/maintenance/fore2)
"aml" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -2541,16 +2617,6 @@
},
/turf/simulated/floor/plating,
/area/security/permabrig)
-"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)
"amx" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/sign/securearea{
@@ -2567,38 +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
- },
/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
- },
/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;
@@ -2606,9 +2666,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
@@ -2616,67 +2673,51 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"amF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/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
- },
/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
+/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;
@@ -2689,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{
@@ -2742,36 +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
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitecorner"
},
/area/hallway/secondary/entry)
"anl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -2779,9 +2798,6 @@
},
/area/hallway/secondary/entry)
"ann" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light{
dir = 1
},
@@ -2790,23 +2806,11 @@
icon_state = "arrival"
},
/area/hallway/secondary/entry)
-"ano" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -2827,26 +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
- },
-/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
- },
/obj/machinery/light{
dir = 1
},
@@ -2859,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"
@@ -2880,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,
@@ -2905,17 +2889,17 @@
/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'";
@@ -2934,6 +2918,9 @@
},
/area/hallway/secondary/entry)
"anI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -2942,7 +2929,9 @@
},
/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
},
@@ -2951,36 +2940,21 @@
},
/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{
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
-/turf/simulated/floor/plasteel{
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
-"anM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- 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
@@ -2996,7 +2970,9 @@
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
},
@@ -3005,15 +2981,22 @@
},
/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{
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anQ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- 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{
dir = 8;
@@ -3021,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
},
@@ -3047,21 +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
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -3069,39 +3053,38 @@
},
/area/hallway/secondary/entry)
"anW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Arrivals Hall Starboard";
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 = "arrival"
},
/area/hallway/secondary/entry)
"anX" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/extinguisher_cabinet{
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{
icon_state = "arrival"
},
/area/hallway/secondary/entry)
"anY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "arrival"
@@ -3121,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;
@@ -3131,16 +3116,16 @@
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,
@@ -3155,7 +3140,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aog" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/newscaster{
@@ -3169,11 +3154,8 @@
/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
},
@@ -3181,7 +3163,7 @@
/turf/simulated/floor/plasteel{
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";
@@ -3192,7 +3174,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aon" = (
/obj/structure/cable{
d1 = 1;
@@ -3200,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;
@@ -3220,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)
@@ -3246,19 +3221,11 @@
/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{
@@ -3276,7 +3243,7 @@
/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,
@@ -3299,7 +3266,6 @@
},
/area/hallway/secondary/entry)
"aoB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "arrival"
@@ -3317,15 +3283,11 @@
/turf/simulated/floor/plating,
/area/security/checkpoint2)
"aoE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/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,
@@ -3340,75 +3302,51 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoJ" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
/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{
- icon_state = "redfull"
- },
-/area/maintenance/fsmaint)
-"aoL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
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
- },
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
-/area/maintenance/fsmaint)
-"aoN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aoP" = (
/obj/docking_port/stationary{
dir = 2;
@@ -3428,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,
@@ -3485,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
@@ -3495,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"
},
@@ -3532,18 +3470,6 @@
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,
@@ -3551,7 +3477,7 @@
dir = 9;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apf" = (
/obj/structure/cable{
d1 = 1;
@@ -3560,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{
@@ -3578,20 +3505,16 @@
dir = 5;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"aph" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -3642,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;
@@ -3654,15 +3574,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -3670,9 +3587,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -3681,20 +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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aps" = (
/obj/structure/cable{
d1 = 4;
@@ -3702,12 +3603,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apt" = (
/obj/structure/cable{
d1 = 1;
@@ -3718,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{
@@ -3744,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,
@@ -3759,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,
@@ -3767,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,
@@ -3775,7 +3673,7 @@
dir = 1;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"apF" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -3799,21 +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
- },
+/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
@@ -3828,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"
},
@@ -3893,17 +3793,13 @@
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";
@@ -3913,12 +3809,12 @@
dir = 8;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"apW" = (
/obj/structure/table,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/machinery/kitchen_machine/microwave,
/obj/effect/decal/warning_stripes/yellow/hollow,
@@ -3926,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,
@@ -3951,11 +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
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -3968,18 +3869,27 @@
/obj/machinery/camera{
c_tag = "Arrivals Lobby"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/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"
},
@@ -3989,25 +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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
- },
-/area/hallway/secondary/entry)
"aqg" = (
/obj/structure/cable{
d1 = 1;
@@ -4021,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
@@ -4045,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";
@@ -4083,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{
@@ -4097,7 +4004,7 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aqn" = (
/obj/structure/rack,
/obj/item/crowbar,
@@ -4106,25 +4013,22 @@
/turf/simulated/floor/plasteel{
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";
@@ -4234,7 +4138,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aqG" = (
/obj/machinery/conveyor{
dir = 4;
@@ -4253,7 +4157,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aqI" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -28
@@ -4320,7 +4224,7 @@
dir = 10;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"aqS" = (
/obj/structure/cable{
d1 = 1;
@@ -4329,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,
@@ -4342,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"
@@ -4362,27 +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
- },
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
},
@@ -4402,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"
@@ -4422,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;
@@ -4449,7 +4353,7 @@
pixel_y = 24
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arh" = (
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/cleanable/dirt,
@@ -4457,7 +4361,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ari" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -4466,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{
@@ -4478,7 +4382,7 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aro" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -4534,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"
},
@@ -4542,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"
@@ -4554,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{
@@ -4581,11 +4487,11 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arA" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -4598,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"
},
@@ -4613,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"
},
@@ -4626,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"
},
@@ -4654,13 +4574,12 @@
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{
@@ -4670,7 +4589,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"arJ" = (
/obj/machinery/camera{
c_tag = "Customs Desk";
@@ -4687,7 +4606,7 @@
/turf/simulated/floor/plasteel{
icon_state = "bluefull"
},
-/area/bridge)
+/area/security/customs)
"arK" = (
/obj/structure/cable{
d1 = 1;
@@ -4703,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;
@@ -4722,7 +4642,7 @@
dir = 4;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"arM" = (
/obj/structure/cable{
d1 = 1;
@@ -4736,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"
@@ -4749,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" = (
@@ -4778,7 +4706,7 @@
req_access_txt = "19"
},
/turf/simulated/floor/plasteel,
-/area/bridge)
+/area/security/customs)
"arR" = (
/obj/structure/cable{
d1 = 4;
@@ -4795,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"
@@ -4815,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"
@@ -4844,7 +4784,7 @@
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arV" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb,
@@ -4852,14 +4792,14 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arW" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arX" = (
/obj/machinery/computer/arcade,
/obj/effect/decal/cleanable/dirt,
@@ -4867,7 +4807,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arY" = (
/obj/structure/table/wood,
/obj/item/toy/minimeteor,
@@ -4881,7 +4821,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"arZ" = (
/obj/structure/cable{
d1 = 1;
@@ -4894,7 +4834,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asa" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -4903,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,
@@ -4931,37 +4871,39 @@
},
/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"
+ 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
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark"
- },
-/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
},
/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
- },
/obj/structure/table/wood,
/obj/item/clipboard,
/obj/item/airalarm_electronics,
@@ -4971,25 +4913,17 @@
},
/area/maintenance/electrical_shop)
"asm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
- },
-/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{
@@ -5002,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{
@@ -5020,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"
},
@@ -5048,13 +4978,12 @@
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
@@ -5064,7 +4993,7 @@
dir = 9;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"asx" = (
/obj/structure/cable{
d1 = 1;
@@ -5072,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,
@@ -5088,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;
@@ -5103,33 +5029,35 @@
},
/area/hallway/secondary/entry)
"asB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/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
- },
-/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
+ 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{
@@ -5166,14 +5094,14 @@
"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"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asK" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/dirt,
@@ -5181,7 +5109,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asL" = (
/obj/structure/cable{
d1 = 1;
@@ -5193,13 +5121,13 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asM" = (
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"asN" = (
/obj/structure/table/wood,
/obj/item/coin/iron{
@@ -5213,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,
@@ -5285,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"
},
@@ -5304,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;
@@ -5315,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"
@@ -5412,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"
},
@@ -5423,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"
},
@@ -5455,7 +5398,6 @@
},
/area/maintenance/electrical_shop)
"atn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/computerframe,
/obj/machinery/status_display{
pixel_x = 32
@@ -5469,11 +5411,11 @@
/turf/simulated/floor/plasteel{
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,
@@ -5554,22 +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;
- 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;
@@ -5577,12 +5518,14 @@
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{
@@ -5592,11 +5535,11 @@
dir = 6;
icon_state = "blue"
},
-/area/bridge)
+/area/security/customs)
"atC" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/structure/chair/comfy/brown{
dir = 1
@@ -5653,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"
@@ -5669,14 +5615,6 @@
icon_state = "red"
},
/area/security/checkpoint2)
-"atJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
"atK" = (
/obj/structure/cable{
d2 = 4;
@@ -5712,15 +5650,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atO" = (
/obj/structure/cable{
d1 = 4;
@@ -5735,7 +5670,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atP" = (
/obj/structure/cable{
d1 = 4;
@@ -5743,16 +5678,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atQ" = (
/obj/structure/cable{
d1 = 1;
@@ -5760,29 +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"
},
-/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"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"atS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 5;
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;
@@ -5868,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";
@@ -5894,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"
@@ -5919,7 +5845,7 @@
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/item/circuitboard/microwave,
/obj/item/stack/sheet/glass{
@@ -5997,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"
},
@@ -6013,7 +5940,6 @@
},
/area/maintenance/electrical_shop)
"aup" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/machinery/newscaster{
pixel_x = 32
@@ -6025,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;
@@ -6036,12 +5962,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aus" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6065,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;
@@ -6082,14 +6006,14 @@
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,
@@ -6098,7 +6022,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"auy" = (
/obj/structure/table/wood,
/obj/item/toy/AI,
@@ -6106,10 +6030,10 @@
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"
@@ -6172,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,
@@ -6209,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{
@@ -6230,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;
@@ -6250,7 +6185,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auT" = (
/obj/structure/cable{
d1 = 4;
@@ -6263,7 +6198,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auU" = (
/obj/structure/cable{
d1 = 4;
@@ -6275,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;
@@ -6296,7 +6222,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"auX" = (
/obj/structure/cable{
d1 = 4;
@@ -6309,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;
@@ -6328,7 +6253,7 @@
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{
@@ -6350,9 +6275,8 @@
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
@@ -6381,15 +6305,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -6397,15 +6318,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -6413,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{
@@ -6428,7 +6345,6 @@
},
/area/hallway/secondary/entry)
"avh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 4
},
@@ -6441,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;
@@ -6452,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{
@@ -6463,7 +6379,7 @@
dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avl" = (
/obj/structure/cable{
d1 = 1;
@@ -6473,15 +6389,15 @@
},
/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,
@@ -6489,7 +6405,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avp" = (
/obj/structure/table/wood,
/obj/item/clothing/glasses/regular/hipster,
@@ -6497,7 +6413,7 @@
dir = 5;
icon_state = "dark"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avq" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
@@ -6506,7 +6422,7 @@
},
/obj/item/toy/flash,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"avr" = (
/obj/structure/table/wood,
/obj/item/toy/figure/crew/wizard,
@@ -6514,14 +6430,14 @@
dir = 5;
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" = (
@@ -6556,31 +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
- },
-/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
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -6603,9 +6506,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -6615,31 +6515,17 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"avC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "caution"
@@ -6650,39 +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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "caution"
},
/area/engine/controlroom)
-"avH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/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,
@@ -6698,7 +6563,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avM" = (
/obj/structure/cable{
d1 = 4;
@@ -6714,7 +6579,7 @@
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avN" = (
/obj/structure/cable{
d1 = 4;
@@ -6728,18 +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{
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avP" = (
/obj/structure/cable{
d1 = 4;
@@ -6747,11 +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
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avQ" = (
/obj/structure/cable{
d1 = 4;
@@ -6762,35 +6619,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
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
- },
-/turf/simulated/floor/plasteel{
- 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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avT" = (
/obj/structure/cable{
d1 = 4;
@@ -6798,15 +6631,18 @@
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
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avU" = (
/obj/structure/cable{
d1 = 4;
@@ -6814,12 +6650,15 @@
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
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avV" = (
/obj/structure/cable{
d1 = 4;
@@ -6827,11 +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{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avW" = (
/obj/structure/cable{
d1 = 1;
@@ -6845,119 +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
},
/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
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"avY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"awa" = (
+/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
- },
-/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/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/fsmaint)
+/area/maintenance/fore)
"awe" = (
/obj/structure/disposalpipe/segment{
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
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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{
- 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
},
-/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{
@@ -6966,35 +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
},
-/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"
@@ -7004,17 +6854,22 @@
/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/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/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{
@@ -7029,13 +6884,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
@@ -7045,8 +6903,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -7057,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"
@@ -7067,10 +6924,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -7079,25 +6932,19 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"aws" = (
/obj/structure/cable{
d1 = 1;
@@ -7111,15 +6958,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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;
@@ -7127,15 +6971,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -7149,15 +6990,11 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awv" = (
/obj/structure/cable{
d1 = 1;
@@ -7165,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)
@@ -7181,7 +7020,7 @@
dir = 4
},
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"awz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7210,20 +7049,20 @@
/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,
@@ -7257,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,
@@ -7273,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;
@@ -7283,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;
@@ -7298,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;
@@ -7324,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;
@@ -7352,18 +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
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7378,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"
@@ -7393,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;
@@ -7407,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"
@@ -7422,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"
@@ -7436,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"
@@ -7451,7 +7250,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/item/clothing/suit/radiation,
/obj/item/clothing/head/radiation,
@@ -7459,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{
@@ -7489,11 +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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/fsmaint)
"axb" = (
@@ -7504,23 +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
- },
-/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;
@@ -7528,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;
@@ -7546,7 +7348,6 @@
},
/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{
@@ -7565,213 +7366,196 @@
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{
icon_state = "neutralcorner"
},
/area/hallway/secondary/entry)
"axl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/item/twohanded/required/kirbyplants,
-/turf/simulated/floor/plasteel{
- 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{
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
- },
-/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
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"axu" = (
-/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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"axv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/fore2)
+"axv" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2";
tag = null
},
-/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
-"axw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
+/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/fore2)
+"axw" = (
/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 = "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{
+/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
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
/turf/simulated/floor/plasteel{
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{
@@ -7780,101 +7564,107 @@
/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
},
-/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{
- 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/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/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/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
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
- },
/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
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
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{
name = "south bump";
pixel_y = -24
@@ -7898,7 +7688,6 @@
},
/area/hallway/secondary/entry)
"axG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
@@ -7909,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{
@@ -7923,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" = (
@@ -8005,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" = (
@@ -8054,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{
@@ -8062,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,
@@ -8070,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;
@@ -8097,9 +7880,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8108,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,
@@ -8126,7 +7901,7 @@
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayi" = (
/obj/structure/cable{
d1 = 1;
@@ -8134,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"
@@ -8220,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,
@@ -8275,39 +8050,33 @@
/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{
+/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/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"ayx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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{
icon_state = "neutralcorner"
},
@@ -8332,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,
@@ -8379,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" = (
@@ -8406,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" = (
@@ -8449,7 +8207,7 @@
icon_state = "pipe-c"
},
/turf/simulated/wall,
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"ayT" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6
@@ -8458,7 +8216,7 @@
/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
},
@@ -8472,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{
@@ -8496,58 +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{
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/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
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"azf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8569,19 +8306,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/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;
@@ -8596,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" = (
@@ -8612,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;
@@ -8629,13 +8353,11 @@
},
/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"
@@ -8651,12 +8373,11 @@
/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;
@@ -8676,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"
@@ -8689,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"
@@ -8705,34 +8441,26 @@
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
- },
/obj/machinery/camera{
c_tag = "Fore Hallway North";
dir = 8
@@ -8768,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
},
@@ -8825,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{
@@ -8852,13 +8578,14 @@
},
/area/quartermaster/storage)
"azK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/warning_stripes/yellow,
/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"
@@ -8941,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,
@@ -8967,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" = (
@@ -8978,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{
@@ -9013,36 +8725,32 @@
/turf/simulated/floor/engine,
/area/engine/supermatter)
"aAb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 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{
@@ -9052,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
},
@@ -9071,26 +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
- },
-/obj/effect/decal/warning_stripes/west,
-/turf/simulated/floor/plasteel,
-/area/engine/controlroom)
"aAi" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -9109,38 +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{
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
@@ -9149,33 +8847,33 @@
broken = 1;
icon_state = "wood-broken"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aAq" = (
/obj/structure/sign/nosmoking_2{
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_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;
@@ -9191,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"
},
@@ -9198,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"
@@ -9220,18 +8927,20 @@
/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" = (
@@ -9241,6 +8950,9 @@
/area/crew_quarters/toilet)
"aAC" = (
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -9274,44 +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{
+/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
+ 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;
@@ -9328,22 +9044,21 @@
/obj/machinery/door/airlock{
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)
@@ -9363,9 +9078,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -9373,90 +9087,118 @@
},
/area/quartermaster/sorting)
"aAN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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/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
},
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAP" = (
+/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
},
-/obj/structure/closet/cardboard,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAQ" = (
+/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
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aAR" = (
+/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/plasteel{
dir = 4;
icon_state = "brown"
},
/area/quartermaster/sorting)
"aAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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/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
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAU" = (
+/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
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/quartermaster/storage)
"aAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/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" = (
@@ -9465,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,
@@ -9484,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;
@@ -9498,25 +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
- },
/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
},
@@ -9524,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{
@@ -9574,15 +9312,17 @@
/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
@@ -9602,7 +9342,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBp" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -9613,7 +9353,7 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBq" = (
/obj/machinery/vending/autodrobe,
/obj/machinery/light/small,
@@ -9621,7 +9361,7 @@
dir = 8;
icon_state = "redblue"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBr" = (
/obj/structure/table/wood,
/obj/item/clothing/shoes/jackboots,
@@ -9630,9 +9370,8 @@
/turf/simulated/floor/plasteel{
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;
@@ -9652,7 +9391,7 @@
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBt" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/crayons,
@@ -9660,7 +9399,7 @@
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aBu" = (
/obj/structure/mirror{
pixel_x = -26;
@@ -9682,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,
@@ -9738,11 +9477,11 @@
},
/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
},
@@ -9750,23 +9489,22 @@
/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;
@@ -9774,42 +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;
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -9822,63 +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
- },
/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";
@@ -9895,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{
@@ -9905,17 +9613,6 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
-/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;
@@ -9924,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,
@@ -9973,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;
@@ -10005,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{
@@ -10058,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;
@@ -10081,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" = (
@@ -10115,12 +9840,11 @@
/area/janitor)
"aCt" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aCu" = (
/obj/machinery/light/small,
/obj/machinery/newscaster{
@@ -10133,18 +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
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -10161,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;
@@ -10207,32 +9911,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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
- },
/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"
},
@@ -10242,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{
@@ -10296,28 +9984,9 @@
/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
- },
-/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{
@@ -10335,53 +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"
- },
-/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;
@@ -10396,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;
@@ -10420,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" = (
@@ -10439,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
@@ -10469,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)
@@ -10505,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
},
@@ -10525,11 +10159,13 @@
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"
@@ -10611,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;
@@ -10627,57 +10256,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDw" = (
/obj/structure/cable{
d1 = 4;
@@ -10685,19 +10265,10 @@
icon_state = "4-8";
tag = ""
},
-/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 = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDx" = (
/obj/structure/cable{
d1 = 4;
@@ -10710,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;
@@ -10727,17 +10297,14 @@
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
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDz" = (
/obj/structure/cable{
d1 = 4;
@@ -10745,19 +10312,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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;
@@ -10772,17 +10337,11 @@
/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 = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aDC" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -10791,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;
@@ -10802,119 +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
- },
-/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
- },
-/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
- },
-/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
+/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
- },
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
req_access_txt = "31"
@@ -10922,6 +10449,9 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/sorting)
"aDM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -10934,12 +10464,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
@@ -10953,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" = (
@@ -11011,22 +10537,6 @@
},
/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{
@@ -11098,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" = (
@@ -11113,17 +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"
+/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" = (
@@ -11131,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" = (
@@ -11139,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;
@@ -11173,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" = (
@@ -11201,51 +10722,49 @@
/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
+/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/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/maintenance/fsmaint)
+/area/maintenance/fore)
"aEv" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEx" = (
/obj/structure/cable{
d1 = 4;
@@ -11258,7 +10777,7 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEy" = (
/obj/structure/cable{
d1 = 4;
@@ -11270,7 +10789,7 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEz" = (
/obj/structure/cable{
d1 = 4;
@@ -11278,12 +10797,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aEA" = (
/obj/structure/cable{
d1 = 4;
@@ -11291,36 +10807,27 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/disposalpipe/sortjunction{
dir = 8;
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;
@@ -11328,58 +10835,26 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/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
- },
/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
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -11396,19 +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;
- sortType = 21
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -11416,6 +10888,7 @@
},
/area/quartermaster/sorting)
"aEJ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11427,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;
@@ -11444,13 +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
- },
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -11463,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";
@@ -11533,32 +11003,23 @@
icon_state = "neutralfull"
},
/area/quartermaster/storage)
-"aER" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/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;
@@ -11566,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{
@@ -11723,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" = (
@@ -11733,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
@@ -11762,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,
@@ -11783,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"
},
@@ -11812,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
@@ -11827,20 +11314,24 @@
/turf/simulated/wall,
/area/crew_quarters/bar)
"aFB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
"aFC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/extinguisher_cabinet{
pixel_x = 25
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -11864,32 +11355,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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{
- 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" = (
@@ -11899,12 +11395,19 @@
},
/area/quartermaster/sorting)
"aFK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
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"
@@ -11930,20 +11433,12 @@
/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{
@@ -11974,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" = (
@@ -12012,11 +11507,6 @@
c_tag = "Supermatter South";
network = list("SS13","Engineering")
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -12034,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)
@@ -12064,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"
@@ -12083,12 +11569,14 @@
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
- },
/obj/structure/table/reinforced,
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
@@ -12143,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"
@@ -12177,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" = (
@@ -12213,67 +11705,44 @@
/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/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/crew_quarters/sleep)
"aGs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
req_access_txt = "25"
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/crew_quarters/sleep)
-"aGt" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/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
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
/area/crew_quarters/sleep)
"aGv" = (
@@ -12312,7 +11781,6 @@
},
/area/crew_quarters/bar)
"aGx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/sink/kitchen{
pixel_y = 28
},
@@ -12444,7 +11912,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -12456,6 +11923,7 @@
},
/area/hallway/primary/fore)
"aGI" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12467,17 +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_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -12491,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{
@@ -12530,8 +11992,9 @@
/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"
@@ -12610,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" = (
@@ -12618,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
},
@@ -12645,15 +12104,6 @@
icon_state = "neutralfull"
},
/area/engine/controlroom)
-"aHi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "yellowfull"
- },
-/area/engine/controlroom)
"aHj" = (
/obj/machinery/hydroponics/soil,
/obj/machinery/light/small,
@@ -12661,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
@@ -12687,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
},
@@ -12708,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"
},
@@ -12770,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" = (
@@ -12795,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,
@@ -12803,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" = (
@@ -12857,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;
@@ -12912,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{
@@ -12943,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{
@@ -12974,11 +12381,11 @@
},
/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;
@@ -12986,52 +12393,43 @@
},
/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"
},
+/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 = "dark"
},
/area/crew_quarters/bar)
"aHP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/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"
+ 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
},
@@ -13041,6 +12439,16 @@
},
/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;
@@ -13052,14 +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
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13090,12 +12490,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aHX" = (
/obj/structure/cable{
d1 = 4;
@@ -13103,30 +12500,29 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -13136,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;
@@ -13177,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{
@@ -13189,7 +12581,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "redcorner"
+ icon_state = "browncorner"
},
/area/quartermaster/storage)
"aIe" = (
@@ -13225,18 +12617,24 @@
/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"
@@ -13379,7 +12777,7 @@
in_use = 1
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -13443,9 +12841,6 @@
},
/area/maintenance/incinerator)
"aIB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/item/twohanded/required/kirbyplants,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel,
@@ -13457,9 +12852,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -13470,9 +12862,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -13483,12 +12872,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/machinery/light,
/obj/machinery/status_display{
pixel_y = -32
@@ -13503,9 +12886,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -13520,10 +12900,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -13540,9 +12916,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aII" = (
@@ -13552,9 +12927,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -13565,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,
@@ -13582,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)
@@ -13604,15 +12972,18 @@
/turf/simulated/floor/plating,
/area/hydroponics/abandoned_garden)
"aIN" = (
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aIO" = (
/obj/machinery/door/poddoor{
id_tag = "justice_blast";
@@ -13626,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;
@@ -13638,14 +13011,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
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";
@@ -13655,24 +13025,31 @@
/obj/machinery/newscaster{
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,
@@ -13682,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
},
@@ -13727,6 +13101,9 @@
/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"
@@ -13742,12 +13119,16 @@
/obj/effect/landmark/start{
name = "Bartender"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark"
},
/area/crew_quarters/bar)
"aJb" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
pixel_x = 25
},
@@ -13757,7 +13138,6 @@
},
/area/crew_quarters/bar)
"aJc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -13775,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" = (
@@ -13790,7 +13171,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -13803,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;
@@ -13817,39 +13196,28 @@
/turf/simulated/floor/plating,
/area/quartermaster/office)
"aJi" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/checkpoint/supply)
-"aJl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "red"
+ icon_state = "brown"
},
-/area/security/checkpoint/supply)
+/area/quartermaster/sorting)
+"aJj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "yellow"
+ },
+/area/quartermaster/storage)
+"aJk" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/area/quartermaster/storage)
"aJm" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -13859,21 +13227,15 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -13883,9 +13245,7 @@
/obj/structure/disposalpipe/segment{
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 = 8;
@@ -13897,54 +13257,41 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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";
@@ -13954,17 +13301,17 @@
/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)
"aJx" = (
/turf/simulated/wall,
@@ -14004,9 +13351,6 @@
/turf/simulated/floor/plating,
/area/quartermaster/storage)
"aJF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
@@ -14027,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"
@@ -14060,11 +13404,9 @@
"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{
@@ -14115,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,
@@ -14224,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)
@@ -14235,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";
@@ -14245,14 +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"
+/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{
@@ -14261,7 +13600,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/controlroom)
"aJZ" = (
@@ -14277,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" = (
@@ -14285,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{
@@ -14302,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;
@@ -14311,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;
@@ -14323,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;
@@ -14336,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;
@@ -14358,17 +13706,18 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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,
@@ -14380,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"
},
@@ -14407,14 +13757,12 @@
},
/area/crew_quarters/sleep)
"aKm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/item/radio/intercom{
dir = 0;
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"
@@ -14423,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{
@@ -14431,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{
@@ -14478,10 +13826,6 @@
},
/area/crew_quarters/bar)
"aKt" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/camera{
c_tag = "Fore Hallway North";
dir = 4
@@ -14492,26 +13836,24 @@
},
/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
@@ -14523,7 +13865,6 @@
/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;
@@ -14531,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)
@@ -14542,9 +13882,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -14558,97 +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{
- icon_state = "redfull"
- },
-/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
+ 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;
@@ -14669,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,
@@ -14759,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,
@@ -14841,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"
@@ -14867,22 +14172,19 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -14924,9 +14226,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
name = "Turbine Generator Access";
@@ -14942,9 +14241,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14954,10 +14250,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
@@ -14969,43 +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";
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
- },
/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)
@@ -15016,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
@@ -15047,37 +14313,30 @@
/turf/simulated/floor/plasteel{
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{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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{
- 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{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aLD" = (
/obj/structure/cable{
d1 = 1;
@@ -15085,14 +14344,14 @@
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{
@@ -15106,64 +14365,58 @@
/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/supply{
+/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"
},
/area/crew_quarters/sleep)
"aLI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/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/supply{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"aLL" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -15171,7 +14424,7 @@
/obj/machinery/disposal,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/newscaster{
layer = 3.3;
@@ -15239,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{
@@ -15253,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,
@@ -15288,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"
@@ -15316,9 +14569,9 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -15336,111 +14589,119 @@
},
/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
- },
-/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
+ 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
+/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{
+/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
+/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{
@@ -15468,17 +14729,17 @@
/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
},
-/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{
+ dir = 4;
+ icon_state = "whitebluecorner"
},
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/supply)
+/area/medical/medbay)
"aMx" = (
/obj/structure/cable{
d2 = 8;
@@ -15493,8 +14754,11 @@
/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,
@@ -15519,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;
@@ -15532,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"
@@ -15567,7 +14834,6 @@
/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,
@@ -15580,10 +14846,6 @@
/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)
@@ -15592,6 +14854,7 @@
pixel_x = 22
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aMO" = (
@@ -15602,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,
@@ -15614,18 +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
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -15689,26 +14945,30 @@
/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)
"aMZ" = (
+/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 = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aNa" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -15717,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{
@@ -15735,43 +14994,34 @@
},
/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
- },
/obj/structure/extinguisher_cabinet{
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;
pixel_x = 24
@@ -15791,24 +15041,20 @@
/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
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ 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"
@@ -15831,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;
@@ -15845,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,
@@ -15873,102 +15108,84 @@
name = "west bump";
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
},
-/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/machinery/camera{
- c_tag = "Medbay Storage";
+ c_tag = "Cargo Break Room";
dir = 8
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/area/security/checkpoint/supply)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "yellow"
+ },
+/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,
@@ -15992,14 +15209,17 @@
},
/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)
"aND" = (
@@ -16215,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)
@@ -16251,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{
@@ -16271,9 +15494,10 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/computer/sm_monitor,
/turf/simulated/floor/plasteel,
/area/engine/controlroom)
"aOa" = (
@@ -16288,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;
@@ -16302,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;
@@ -16315,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)
@@ -16330,7 +15565,6 @@
/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";
@@ -16348,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)
@@ -16369,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"
},
@@ -16414,7 +15648,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -16432,43 +15665,28 @@
},
/area/maintenance/gambling_den)
"aOv" = (
+/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/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,
@@ -16528,22 +15746,18 @@
dir = 5;
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;
pixel_x = 28
@@ -16571,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"
@@ -16591,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;
@@ -16605,47 +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{
- icon_state = "redfull"
- },
-/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,
@@ -16719,7 +15908,7 @@
"aPf" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/effect/decal/cleanable/dirt,
/obj/item/twohanded/required/kirbyplants,
@@ -16827,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";
@@ -16842,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" = (
@@ -16855,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";
@@ -16875,9 +16057,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -16890,9 +16069,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -16900,15 +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
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/binary/valve,
/obj/effect/decal/warning_stripes/southwest,
/turf/simulated/floor/plasteel{
@@ -16917,35 +16090,28 @@
},
/area/maintenance/incinerator)
"aPu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/atmos)
-"aPv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/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
+/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
- },
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -16953,9 +16119,6 @@
},
/area/atmos)
"aPy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/light{
dir = 1;
in_use = 1
@@ -16970,9 +16133,6 @@
},
/area/atmos)
"aPz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/item/radio/intercom{
pixel_y = 22
},
@@ -16982,18 +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
- },
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel{
@@ -17002,9 +16160,6 @@
},
/area/maintenance/incinerator)
"aPC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = 32
},
@@ -17017,15 +16172,13 @@
},
/area/atmos)
"aPD" = (
-/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 = 1;
- icon_state = "dark"
+ icon_state = "brown"
},
-/area/atmos)
+/area/quartermaster/storage)
"aPE" = (
/obj/machinery/camera{
c_tag = "Supermatter Entrance";
@@ -17036,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{
@@ -17090,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;
@@ -17105,10 +16259,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -17125,13 +16275,13 @@
},
/area/maintenance/gambling_den)
"aPP" = (
-/obj/structure/dresser,
/obj/machinery/newscaster{
pixel_y = 32
},
/obj/machinery/status_display{
pixel_x = -32
},
+/obj/structure/closet/secure_closet/clown,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17198,13 +16348,13 @@
},
/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)
@@ -17215,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" = (
@@ -17232,21 +16383,14 @@
dir = 5;
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{
@@ -17254,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;
@@ -17296,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"
@@ -17315,9 +16464,9 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -17329,12 +16478,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -17346,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;
@@ -17381,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,
@@ -17411,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,
@@ -17443,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,
@@ -17476,7 +16593,7 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aQu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
@@ -17500,17 +16617,15 @@
/area/quartermaster/storage)
"aQw" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/quartermaster/storage)
+/area/maintenance/gambling_den)
"aQx" = (
/obj/structure/table,
/obj/item/book/manual/chef_recipes,
@@ -17521,8 +16636,7 @@
/area/security/permabrig)
"aQy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -17637,12 +16751,12 @@
},
/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,
@@ -17666,14 +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
+ 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{
@@ -17682,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{
@@ -17696,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;
@@ -17709,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;
@@ -17722,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{
@@ -17737,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,
@@ -17757,8 +16861,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/item/tank/internals/emergency_oxygen,
/obj/item/tank/internals/emergency_oxygen,
@@ -17785,9 +16888,6 @@
/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
@@ -17805,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
@@ -17823,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{
@@ -17902,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"
},
@@ -17925,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"
},
@@ -17951,6 +17057,7 @@
/obj/effect/landmark/start{
name = "Clown"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -17962,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{
@@ -17992,27 +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
- },
/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
},
@@ -18030,11 +17135,17 @@
},
/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,
@@ -18055,64 +17166,30 @@
dir = 5;
icon_state = "dark"
},
-/area/crew_quarters/bar/atrium)
-"aRB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/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
- },
/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
- },
/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
- },
/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
- },
-/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
- },
-/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{
@@ -18120,37 +17197,7 @@
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/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
- },
/obj/machinery/light{
dir = 4
},
@@ -18199,16 +17246,16 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
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_x = 24
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -18223,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;
@@ -18235,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{
@@ -18289,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;
@@ -18327,41 +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)
+/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,
@@ -18490,9 +17521,9 @@
/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" = (
@@ -18552,13 +17583,19 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"aSG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/cyan{
- dir = 4
+/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;
@@ -18570,15 +17607,21 @@
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{
+/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
},
-/obj/effect/decal/warning_stripes/north,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
/area/atmos)
"aSJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
@@ -18626,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"
@@ -18639,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"
},
@@ -18651,18 +17701,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
+/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/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
/turf/simulated/floor/plasteel,
-/area/crew_quarters/theatre)
+/area/maintenance/fore)
"aST" = (
/obj/structure/cable{
d1 = 4;
@@ -18670,18 +17719,13 @@
icon_state = "4-8";
tag = ""
},
-/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 = 4
},
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSU" = (
/obj/structure/cable{
@@ -18690,37 +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
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
- },
+/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
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "redblue"
- },
+/turf/simulated/floor/plasteel,
/area/crew_quarters/theatre)
"aSW" = (
/obj/structure/cable{
@@ -18734,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{
@@ -18750,48 +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
- },
-/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
- },
/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{
+/obj/effect/decal/warning_stripes/yellow/hollow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/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;
@@ -18814,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,
@@ -18833,15 +17884,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -18849,9 +17897,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "dark"
@@ -18864,15 +17909,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/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" = (
@@ -18884,16 +17932,24 @@
/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
@@ -18906,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;
@@ -18921,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;
@@ -18947,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{
@@ -19000,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"
@@ -19007,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"
@@ -19022,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"
@@ -19030,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{
@@ -19069,9 +18103,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -19083,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"
@@ -19186,7 +18212,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/structure/table/reinforced,
/obj/item/reagent_containers/glass/bottle/morphine,
@@ -19317,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" = (
@@ -19335,27 +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
- },
/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" = (
@@ -19402,6 +18429,12 @@
dir = 1;
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;
icon_state = "neutralfull"
@@ -19415,16 +18448,27 @@
dir = 1;
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;
icon_state = "neutralfull"
},
/area/atmos)
"aUc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -19440,16 +18484,23 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
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
},
+/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 = "neutralfull"
@@ -19495,14 +18546,13 @@
/turf/simulated/floor/plating,
/area/atmos)
"aUj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/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{
@@ -19515,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,
@@ -19538,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)
@@ -19553,23 +18604,12 @@
icon_state = "wood-broken"
},
/area/maintenance/gambling_den)
-"aUr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood{
broken = 1;
icon_state = "wood-broken"
@@ -19582,9 +18622,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"aUu" = (
@@ -19594,9 +18631,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/barricade/wooden,
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
@@ -19614,23 +18648,22 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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
+/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
@@ -19640,9 +18673,6 @@
},
/area/crew_quarters/theatre)
"aUy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Mime"
},
@@ -19651,9 +18681,6 @@
},
/area/crew_quarters/theatre)
"aUz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
},
@@ -19663,9 +18690,6 @@
dir = 1
},
/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -19676,43 +18700,50 @@
},
/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,
@@ -19723,13 +18754,13 @@
},
/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
@@ -19741,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{
@@ -19789,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,
@@ -19809,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
@@ -19848,6 +18874,7 @@
pixel_y = 30
},
/obj/item/storage/firstaid/regular,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -19948,49 +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
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/qm)
-"aVd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "brown"
- },
-/area/quartermaster/qm)
-"aVe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20007,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"
@@ -20018,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"
@@ -20079,8 +19067,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 0;
@@ -20259,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{
@@ -20354,14 +19339,9 @@
},
/area/atmos)
"aVK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- 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
@@ -20393,10 +19373,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/green{
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"
@@ -20433,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)
@@ -20477,34 +19449,21 @@
/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_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
},
+/obj/structure/closet/secure_closet/mime,
/turf/simulated/floor/plasteel{
icon_state = "cafeteria"
},
@@ -20520,7 +19479,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/vending/autodrobe,
/turf/simulated/floor/plasteel{
@@ -20536,19 +19495,31 @@
},
/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{
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;
@@ -20564,80 +19535,80 @@
},
/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;
- 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;
@@ -20645,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
},
@@ -20666,36 +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
- },
+/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;
@@ -20703,9 +19656,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -20723,9 +19673,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -20738,9 +19685,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -20763,9 +19707,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
@@ -20778,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"
@@ -20797,10 +19732,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -20814,11 +19749,10 @@
icon_state = "4-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,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -20838,11 +19772,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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;
@@ -20850,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;
@@ -20868,12 +19798,11 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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{
@@ -20882,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{
@@ -20907,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{
@@ -20922,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;
@@ -20938,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";
@@ -20953,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
},
@@ -21102,8 +20033,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -21210,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,
@@ -21319,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";
@@ -21335,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"
@@ -21398,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)
@@ -21412,31 +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
},
+/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;
@@ -21449,10 +20374,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -21504,11 +20425,15 @@
},
/area/crew_quarters/bar/atrium)
"aXG" = (
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "dark"
+/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;
@@ -21518,36 +20443,30 @@
/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";
- tag = ""
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- 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
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
+/area/maintenance/fore)
+"aXK" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -21555,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;
@@ -21565,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{
@@ -21618,128 +20522,102 @@
},
/area/quartermaster/office)
"aXR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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)
+/area/atmos)
+"aXX" = (
+/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 = "browncorner"
+ },
+/area/hallway/primary/central)
+"aXY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/central)
+"aXZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"aYa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ icon_state = "redfull"
+ },
+/area/crew_quarters/kitchen)
+"aYc" = (
+/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 = 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/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -21747,25 +20625,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/structure/disposalpipe/segment{
dir = 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 = "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"
@@ -21775,10 +20653,6 @@
/obj/structure/chair/office/dark{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21798,6 +20672,7 @@
pixel_y = 7
},
/obj/item/gps/mining,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -21888,15 +20763,17 @@
},
/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
@@ -21958,28 +20835,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,
@@ -21987,17 +20862,16 @@
/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
},
@@ -22010,10 +20884,6 @@
},
/area/atmos)
"aYG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -22042,7 +20912,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"
@@ -22098,61 +20971,48 @@
"aYP" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYQ" = (
+/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/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
-"aYR" = (
+/area/maintenance/fore)
+"aYS" = (
+/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
},
-/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 = ""
- },
+/area/maintenance/fore)
+"aYT" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
name = "Hydroponics Junction";
- sortType = 10
+ sortType = 21
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"aYT" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -22175,30 +21035,15 @@
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
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
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/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22209,8 +21054,11 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"aYW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22221,8 +21069,11 @@
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/sleep)
+/area/maintenance/fore)
"aYX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22230,12 +21081,17 @@
tag = ""
},
/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)
"aYY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -22247,7 +21103,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "lightsout"
},
@@ -22274,8 +21129,9 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"aZc" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/light{
dir = 4
},
@@ -22286,9 +21142,8 @@
/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
@@ -22299,17 +21154,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"
@@ -22318,8 +21171,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;
@@ -22327,45 +21186,37 @@
},
/area/quartermaster/office)
"aZh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/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{
@@ -22374,15 +21225,13 @@
},
/area/quartermaster/office)
"aZm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
},
-/turf/simulated/wall,
-/area/quartermaster/storage)
+/area/hallway/primary/fore)
"aZn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
@@ -22398,25 +21247,26 @@
},
/area/quartermaster/storage)
"aZo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
/area/quartermaster/storage)
"aZp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/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,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "purple"
},
/area/quartermaster/storage)
"aZq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "brown"
@@ -22433,23 +21283,24 @@
/turf/simulated/floor/plating,
/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,
/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";
@@ -22465,34 +21316,26 @@
},
/area/quartermaster/storage)
"aZu" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
/area/quartermaster/storage)
"aZv" = (
+/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 = 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{
@@ -22525,12 +21368,9 @@
},
/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";
@@ -22541,17 +21381,14 @@
},
/area/quartermaster/qm)
"aZB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
/area/quartermaster/qm)
"aZC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
@@ -22594,7 +21431,7 @@
network = list("SS13","Security")
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
icon_state = "redcorner"
@@ -22705,20 +21542,12 @@
},
/area/security/permabrig)
"aZN" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/flasher_button{
- id = "Cell 1";
- pixel_y = 27
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- icon_state = "redcorner"
+ dir = 8;
+ icon_state = "neutralfull"
},
-/area/security/permabrig)
+/area/hydroponics)
"aZO" = (
/obj/structure/cable{
d1 = 4;
@@ -22833,11 +21662,9 @@
"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,
@@ -22882,16 +21709,17 @@
/turf/simulated/floor/plasteel,
/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;
pixel_x = 28
@@ -22900,15 +21728,15 @@
/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)
@@ -22936,10 +21764,13 @@
/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)
@@ -22958,9 +21789,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";
@@ -23038,55 +21866,50 @@
/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
- },
-/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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/atmos)
-"bav" = (
+/obj/structure/disposalpipe/segment,
/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,
+/turf/simulated/floor/plasteel{
dir = 8;
- external_pressure_bound = 100;
- on = 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;
@@ -23131,16 +21954,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,
@@ -23160,63 +21980,90 @@
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"baD" = (
/obj/effect/spawner/random_spawners/grille_maybe,
/turf/simulated/floor/plasteel{
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/disposalpipe/segment{
+ dir = 4
+ },
+/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/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
req_access_txt = "35"
},
/turf/simulated/floor/plasteel,
-/area/hydroponics)
+/area/maintenance/fore)
"baI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/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
- },
/obj/machinery/door/firedoor,
/obj/item/radio/intercom{
dir = 0;
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{
@@ -23225,15 +22072,19 @@
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{
@@ -23257,8 +22108,7 @@
"baP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
@@ -23281,7 +22131,7 @@
/turf/simulated/floor/plasteel{
icon_state = "redyellowfull"
},
-/area/crew_quarters/bar/atrium)
+/area/crew_quarters/bar)
"baS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
@@ -23294,16 +22144,15 @@
},
/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
},
@@ -23321,7 +22170,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/autolathe,
/obj/machinery/light_switch{
@@ -23338,15 +22187,21 @@
},
/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{
icon_state = "brown"
},
/area/quartermaster/office)
"baX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
@@ -23419,11 +22274,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;
@@ -23431,15 +22281,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"
@@ -23450,6 +22302,9 @@
/turf/simulated/floor/plating,
/area/quartermaster/miningdock)
"bbj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23461,18 +22316,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;
@@ -23480,6 +22332,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"
@@ -23490,26 +22348,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{
@@ -23606,8 +22448,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -23888,7 +22729,6 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark/start{
name = "Life Support Specialist"
},
@@ -23962,7 +22802,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,
@@ -23973,42 +22813,31 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcd" = (
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bce" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/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
- },
/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,
@@ -24038,7 +22867,7 @@
/area/hydroponics)
"bck" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/firealarm{
dir = 4;
@@ -24049,10 +22878,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bcl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/camera{
c_tag = "Service Hall South";
dir = 4;
@@ -24064,7 +22889,12 @@
/obj/effect/decal/warning_stripes/yellow/partial{
dir = 1
},
-/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)
"bcm" = (
/obj/structure/cable{
@@ -24073,33 +22903,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
- },
-/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"
},
@@ -24111,6 +22927,7 @@
},
/area/crew_quarters/kitchen)
"bcr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -24137,7 +22954,9 @@
"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,
@@ -24145,16 +22964,18 @@
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,
@@ -24176,7 +22997,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";
@@ -24191,14 +23012,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{
@@ -24228,7 +23055,6 @@
},
/area/quartermaster/miningdock)
"bcE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24236,7 +23062,9 @@
},
/area/quartermaster/miningdock)
"bcF" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -24258,9 +23086,6 @@
},
/area/quartermaster/miningdock)
"bcI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/mining/glass{
name = "Cargo Bay";
@@ -24269,12 +23094,9 @@
/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,
@@ -24283,26 +23105,19 @@
},
/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{
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;
@@ -24325,33 +23140,29 @@
},
/area/hallway/primary/fore)
"bcN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/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,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
"bcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/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,
/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,
@@ -24517,17 +23328,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,
@@ -24567,14 +23374,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"
@@ -24611,10 +23416,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)
@@ -24626,24 +23433,18 @@
/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"
},
/area/hydroponics)
"bdy" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "greenblue"
@@ -24656,13 +23457,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
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24676,10 +23472,9 @@
icon_state = "4-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 = 1;
icon_state = "greenblue"
@@ -24698,7 +23493,7 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -24713,8 +23508,11 @@
icon_state = "4-8";
tag = ""
},
-/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 = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -24731,6 +23529,9 @@
/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 = "greenblue"
@@ -24743,10 +23544,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
/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/hydroponics)
"bdF" = (
@@ -24756,15 +23560,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -24778,11 +23585,12 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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{
@@ -24795,8 +23603,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{
@@ -24805,13 +23621,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -24820,12 +23641,16 @@
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,
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "freezerfloor"
+ },
/area/crew_quarters/kitchen)
"bdK" = (
/obj/structure/cable{
@@ -24837,6 +23662,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -24848,12 +23676,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/landmark/start{
name = "Chef"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
},
@@ -24865,10 +23693,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
icon_state = "freezerfloor"
@@ -24877,7 +23703,7 @@
"bdN" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/structure/rack,
/obj/item/stack/packageWrap,
@@ -24955,8 +23781,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;
@@ -24964,8 +23788,10 @@
},
/area/hallway/primary/fore)
"bdX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
@@ -24978,17 +23804,18 @@
},
/area/hallway/primary/fore)
"bdZ" = (
+/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ 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;
@@ -24996,9 +23823,6 @@
},
/area/hallway/primary/fore)
"beb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/arrow{
dir = 1
},
@@ -25011,11 +23835,13 @@
},
/area/hallway/primary/fore)
"bec" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 1;
- initialize_directions = 11
+ icon_state = "pipe-c"
},
/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 = 8;
icon_state = "neutralfull"
@@ -25029,20 +23855,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
+/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
@@ -25057,34 +23877,36 @@
},
/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/disposalpipe/segment,
/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 = "brown"
},
/area/quartermaster/miningdock)
"bel" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/plasticflaps{
opacity = 1
},
@@ -25109,75 +23931,37 @@
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"
- },
-/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,
/area/security/medbay)
"bey" = (
+/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/door/firedoor,
/obj/machinery/door/airlock/mining{
name = "Mining Dock";
@@ -25268,14 +24052,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{
@@ -25290,12 +24071,11 @@
/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"
@@ -25303,7 +24083,6 @@
/area/atmos)
"beM" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -25365,7 +24144,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"beT" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/cultivator,
@@ -25381,18 +24160,18 @@
},
/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{
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/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -25400,10 +24179,6 @@
},
/area/hydroponics)
"beX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/camera{
c_tag = "Hydroponics Backroom";
dir = 1
@@ -25423,9 +24198,8 @@
},
/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{
icon_state = "greenblue"
@@ -25439,7 +24213,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;
@@ -25447,37 +24221,47 @@
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,
@@ -25486,12 +24270,16 @@
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{
@@ -25533,7 +24321,6 @@
},
/area/crew_quarters/kitchen)
"bfo" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
/obj/machinery/door/firedoor,
@@ -25546,7 +24333,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{
@@ -25570,16 +24356,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/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"
@@ -25592,14 +24372,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;
@@ -25625,11 +24409,15 @@
},
/area/quartermaster/miningdock)
"bfy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plasteel{
+ icon_state = "bluecorner"
+ },
+/area/hallway/primary/central)
"bfz" = (
+/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)
"bfA" = (
@@ -25643,61 +24431,53 @@
},
/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/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/quartermaster/miningdock)
"bfG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/obj/effect/landmark/start{
name = "Shaft Miner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -25730,27 +24510,21 @@
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;
@@ -25764,7 +24538,7 @@
/obj/structure/table/glass,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 9;
@@ -25868,10 +24642,13 @@
},
/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)
@@ -25914,13 +24691,12 @@
},
/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";
@@ -25977,16 +24753,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,
@@ -26006,19 +24779,18 @@
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";
@@ -26033,27 +24805,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"
},
+/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,
@@ -26066,22 +24838,23 @@
},
/area/crew_quarters/kitchen)
"bgw" = (
+/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,
+/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)
"bgx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -26099,21 +24872,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,
@@ -26130,54 +24888,43 @@
},
/area/crew_quarters/kitchen)
"bgC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/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"
},
/area/hallway/primary/fore)
"bgF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-y"
+ },
+/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{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/primary/fore)
-"bgG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26186,11 +24933,24 @@
icon_state = "neutralfull"
},
/area/hallway/primary/fore)
+"bgG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/hallway/primary/fore)
"bgH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
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{
dir = 8;
icon_state = "neutralfull"
@@ -26208,29 +24968,29 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bgJ" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/turf/simulated/wall,
+/area/crew_quarters/chief)
"bgK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
+/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;
@@ -26241,54 +25001,44 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bgN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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
- },
/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
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"bgQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/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/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bgS" = (
@@ -26335,16 +25085,14 @@
},
/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{
@@ -26464,15 +25212,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"
@@ -26560,19 +25310,22 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bhx" = (
-/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bhy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/effect/decal/warning_stripes/yellow,
/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,
@@ -26626,13 +25379,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
},
@@ -26646,18 +25399,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{
- icon_state = "redfull"
+/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
@@ -26672,13 +25427,6 @@
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,
@@ -26688,25 +25436,24 @@
},
/area/crew_quarters/kitchen)
"bhO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/hallway/primary/fore)
"bhP" = (
+/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/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{
dir = 8;
@@ -26717,6 +25464,7 @@
/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{
icon_state = "redfull"
},
@@ -26729,6 +25477,9 @@
},
/area/crew_quarters/kitchen)
"bhS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26738,7 +25489,10 @@
},
/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
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26750,12 +25504,26 @@
/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)
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26765,19 +25533,12 @@
},
/area/hallway/primary/fore)
"bhX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"bhY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "browncorner"
@@ -26796,7 +25557,11 @@
},
/area/quartermaster/miningdock)
"bia" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -26805,30 +25570,47 @@
},
/area/quartermaster/miningdock)
"bib" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
-"bic" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/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/quartermaster/miningdock)
+"bic" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel,
+/area/quartermaster/miningdock)
"bid" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/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
},
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bie" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26838,6 +25620,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "brown"
@@ -26850,22 +25633,30 @@
/obj/effect/decal/warning_stripes/yellow/partial{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "brown"
},
/area/quartermaster/miningdock)
"big" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/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/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "purple"
@@ -26878,14 +25669,20 @@
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"
},
/area/quartermaster/miningdock)
"bii" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26898,10 +25695,12 @@
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
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -26911,14 +25710,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;
@@ -26960,13 +25765,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{
@@ -27091,7 +25902,7 @@
tag = ""
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
@@ -27234,17 +26045,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,
@@ -27271,6 +26078,12 @@
dir = 1;
name = "Pure to Ports"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -27281,6 +26094,12 @@
dir = 1;
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;
icon_state = "neutralfull"
@@ -27291,6 +26110,12 @@
dir = 1;
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;
icon_state = "neutralfull"
@@ -27302,6 +26127,12 @@
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"
@@ -27310,7 +26141,10 @@
"biS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -27321,27 +26155,35 @@
/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
+ },
/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;
@@ -27349,37 +26191,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
- },
+/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
@@ -27407,10 +26241,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)
@@ -27421,22 +26258,21 @@
dir = 8
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bjd" = (
+/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/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bje" = (
/obj/structure/sink{
dir = 8;
@@ -27445,7 +26281,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -27456,21 +26292,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
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -27478,6 +26302,9 @@
},
/area/hydroponics)
"bji" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -27487,6 +26314,9 @@
},
/area/hydroponics)
"bjj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -27496,24 +26326,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
},
@@ -27529,17 +26368,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
},
@@ -27549,45 +26387,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{
- icon_state = "redfull"
+ 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
},
@@ -27596,26 +26424,10 @@
},
/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{
- icon_state = "redfull"
- },
-/area/crew_quarters/kitchen)
-"bju" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/kitchen)
-"bjv" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -27623,12 +26435,6 @@
},
/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"
},
@@ -27636,15 +26442,6 @@
icon_state = "redfull"
},
/area/crew_quarters/kitchen)
-"bjx" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redfull"
- },
-/area/crew_quarters/kitchen)
"bjy" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -27655,39 +26452,36 @@
},
/area/crew_quarters/kitchen)
"bjz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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"
},
/area/hallway/primary/fore)
"bjB" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ name = "Kitchen Junction";
+ sortType = 21
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- name = "Kitchen Junction";
- sortType = 24
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -27703,21 +26497,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;
@@ -27745,9 +26539,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"bjJ" = (
@@ -27771,94 +26562,51 @@
},
/area/quartermaster/miningdock)
"bjM" = (
+/obj/structure/disposalpipe/segment,
/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/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
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{
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
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
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{
- 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{
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
},
@@ -27868,12 +26616,6 @@
},
/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,
@@ -27883,38 +26625,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,
@@ -28017,12 +26753,10 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -28096,7 +26830,7 @@
/area/security/main)
"bkj" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/light{
dir = 1;
@@ -28250,46 +26984,30 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bkA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/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
- },
/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
- },
/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
- },
-/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
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -28300,60 +27018,54 @@
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/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{
- dir = 4
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkH" = (
+/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
- },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkI" = (
+/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
- },
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
/area/atmos)
"bkJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28366,13 +27078,8 @@
icon_state = "2-4";
tag = ""
},
-/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/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -28385,10 +27092,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/southeastcorner,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -28402,7 +27105,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)
@@ -28434,7 +27136,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{
@@ -28455,22 +27157,7 @@
icon_state = "neutralfull"
},
/area/hydroponics)
-"bkV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hydroponics/constructable,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -28478,34 +27165,14 @@
icon_state = "neutralfull"
},
/area/hydroponics)
-"bkX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hydroponics)
"bkY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/turf/simulated/floor/plasteel,
/area/hydroponics)
"bla" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -28520,9 +27187,6 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"blb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "greenblue"
@@ -28535,15 +27199,11 @@
icon_state = "1-2";
tag = ""
},
-/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/sleep)
"bld" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -28562,9 +27222,6 @@
},
/area/security/permabrig)
"blf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -28573,15 +27230,11 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -28603,17 +27256,11 @@
},
/area/crew_quarters/kitchen)
"blj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/obj/structure/rack,
/obj/item/storage/box/donkpockets,
/obj/item/storage/box/donkpockets,
@@ -28622,28 +27269,18 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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
- },
/obj/machinery/light,
/obj/machinery/processor,
/obj/machinery/camera{
@@ -28653,9 +27290,6 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"blo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/clipboard,
/obj/item/toy/figure/crew/chef,
@@ -28669,7 +27303,9 @@
},
/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
},
@@ -28679,11 +27315,14 @@
},
/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,
/turf/simulated/floor/plasteel,
/area/hallway/primary/fore)
"bls" = (
@@ -28712,11 +27351,19 @@
},
/area/hallway/primary/fore)
"blv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- 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,
@@ -28725,7 +27372,7 @@
},
/area/hallway/primary/fore)
"blx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "brown"
},
@@ -28770,20 +27417,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/structure/disposalpipe/segment,
+/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,
+/area/quartermaster/miningdock)
"blF" = (
/obj/structure/cable{
d2 = 8;
@@ -28803,27 +27451,42 @@
},
/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/structure/fans/tiny,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/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 = "vault"
+ },
+/area/turret_protected/aisat)
"blH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/quartermaster/miningdock)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/crew_quarters/chief)
"blI" = (
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/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/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/firedoor,
@@ -28831,34 +27494,59 @@
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
+ },
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"blK" = (
+/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/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
+ },
/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{
@@ -28870,15 +27558,16 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"blO" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/construction/hallway)
"blR" = (
/obj/structure/cable{
d1 = 2;
@@ -29017,13 +27706,13 @@
},
/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,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -29086,7 +27775,7 @@
/area/security/hos)
"bmk" = (
/turf/simulated/wall,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bml" = (
/obj/structure/dresser,
/obj/machinery/newscaster{
@@ -29098,7 +27787,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bmm" = (
/obj/structure/bed,
/obj/item/bedsheet/hos,
@@ -29115,7 +27804,7 @@
/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{
@@ -29128,7 +27817,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bmo" = (
/obj/structure/window/reinforced{
dir = 4
@@ -29177,10 +27866,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)
@@ -29285,23 +27977,24 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bmG" = (
+/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/visible/purple{
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/atmos)
"bmH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
@@ -29336,7 +28029,6 @@
/obj/machinery/newscaster{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 4
},
@@ -29403,7 +28095,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bmQ" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
@@ -29422,17 +28114,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"
@@ -29467,19 +28166,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"
},
+/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,
@@ -29513,9 +28216,6 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/kitchen)
"bnc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/table/reinforced,
/obj/item/clothing/suit/chef,
/obj/item/kitchen/rollingpin,
@@ -29544,7 +28244,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,
@@ -29587,21 +28286,26 @@
"bnj" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
-"bnk" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 2;
+ id_tag = "ceprivacy";
+ name = "CE Privacy Shutters"
},
-/obj/structure/cable,
/turf/simulated/floor/plating,
-/area/quartermaster/miningdock)
+/area/crew_quarters/chief)
+"bnk" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/library)
"bnn" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -29614,7 +28318,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"bno" = (
@@ -29670,11 +28373,11 @@
},
/area/security/brig)
"bnt" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -29779,13 +28482,13 @@
/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{
@@ -29793,15 +28496,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
@@ -29818,17 +28512,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{
@@ -29921,27 +28604,21 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bob" = (
+/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"
},
/area/atmos)
"boc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/light{
dir = 4
},
@@ -29956,14 +28633,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{
@@ -29981,17 +28670,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"
@@ -30027,25 +28724,18 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/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,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/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
@@ -30103,45 +28793,44 @@
},
/area/hallway/primary/central)
"bos" = (
+/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/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
+ icon_state = "yellowfull"
},
-/area/hallway/primary/central)
+/area/engine/engineering)
"bot" = (
+/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
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/area/hallway/primary/central)
"bou" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
+ dir = 1;
+ icon_state = "yellow"
},
-/area/hallway/primary/central)
+/area/engine/engineering)
"bov" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -30155,15 +28844,11 @@
},
/area/hallway/primary/central)
"bow" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "browncorner"
- },
-/area/hallway/primary/central)
+/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/engine/engineering)
"box" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -30207,13 +28892,19 @@
},
/area/hallway/primary/central)
"boA" = (
-/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/manifold/hidden/scrubbers,
+/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
-/area/hallway/primary/central)
+/area/engine/engineering)
"boB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -30223,10 +28914,6 @@
/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
},
@@ -30236,6 +28923,9 @@
},
/area/hallway/primary/central)
"boC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30245,9 +28935,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -30261,29 +28948,25 @@
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
"boE" = (
+/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/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"boF" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/quartermaster/miningdock)
@@ -30304,6 +28987,9 @@
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"boK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30313,9 +28999,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "Mining Maintenance";
req_access_txt = "48"
@@ -30345,7 +29028,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"
@@ -30392,11 +29075,11 @@
},
/area/security/prisonershuttle)
"boR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/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;
@@ -30404,6 +29087,9 @@
},
/area/security/brig)
"boS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30413,9 +29099,6 @@
/obj/effect/landmark{
name = "lightsout"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -30432,6 +29115,9 @@
},
/area/security/main)
"boU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30444,9 +29130,6 @@
/obj/effect/landmark/start{
name = "Security Officer"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -30454,11 +29137,11 @@
},
/area/security/main)
"boV" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/secure/briefcase,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/table/reinforced,
+/obj/item/storage/secure/briefcase,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -30479,27 +29162,30 @@
},
/area/security/prisonershuttle)
"boX" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly,
/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/machinery/photocopier,
/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;
@@ -30507,29 +29193,29 @@
tag = ""
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/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 = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/security/main)
"bpb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30547,9 +29233,6 @@
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"
@@ -30560,6 +29243,9 @@
},
/area/security/hos)
"bpc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30572,29 +29258,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;
@@ -30612,9 +29298,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/wood,
/obj/item/folder/red,
/obj/item/stamp/hos,
@@ -30624,15 +29307,15 @@
},
/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
},
@@ -30644,16 +29327,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"
},
@@ -30695,7 +29378,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpj" = (
/obj/structure/cable{
d1 = 4;
@@ -30706,7 +29389,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"bpk" = (
/obj/structure/cable{
d1 = 4;
@@ -30718,7 +29401,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{
@@ -30737,7 +29420,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{
@@ -30768,12 +29451,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{
@@ -30788,17 +29476,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{
@@ -30823,10 +29504,13 @@
/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)
@@ -30959,62 +29643,47 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bpL" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
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,
/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
+/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
+/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
- },
-/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
- },
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light{
dir = 1;
@@ -31023,28 +29692,29 @@
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
-"bpR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "grimy"
+ },
+/area/library)
+"bpT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
-/area/atmos)
-"bpT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bpU" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -31053,16 +29723,16 @@
},
/area/hallway/primary/port)
"bpV" = (
+/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/machinery/light/small{
dir = 1
},
@@ -31072,142 +29742,120 @@
},
/area/hallway/primary/port)
"bpW" = (
+/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 = 4;
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/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/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/disposalpipe/segment{
+ dir = 4
+ },
/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/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqa" = (
+/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 = 4;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqb" = (
+/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/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqc" = (
+/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/effect/decal/cleanable/dirt,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqd" = (
+/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/fsmaint)
+/area/maintenance/fore)
"bqe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
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"
- },
/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -31219,13 +29867,8 @@
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/plating,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bqh" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/newscaster{
@@ -31243,14 +29886,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
@@ -31276,8 +29914,7 @@
/area/hydroponics)
"bqm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -31286,6 +29923,10 @@
},
/area/hallway/primary/central)
"bqn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -31298,10 +29939,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
},
@@ -31314,47 +29951,31 @@
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"
- },
-/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/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/hallway/primary/central)
"bqq" = (
+/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/on{
dir = 1
},
@@ -31364,15 +29985,15 @@
},
/area/hallway/primary/central)
"bqr" = (
+/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/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -31381,15 +30002,15 @@
},
/area/hallway/primary/central)
"bqs" = (
+/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/navbeacon{
codes_txt = "patrol;next_patrol=hall2";
location = "hall1"
@@ -31400,6 +30021,10 @@
},
/area/hallway/primary/central)
"bqt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -31410,10 +30035,6 @@
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
},
@@ -31477,6 +30098,7 @@
/turf/simulated/floor/plating,
/area/bridge)
"bqz" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31492,7 +30114,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall14";
location = "hall13"
@@ -31505,8 +30126,7 @@
"bqA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -31521,11 +30141,11 @@
/turf/simulated/wall/rust,
/area/maintenance/starboard)
"bqJ" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/hologram/holopad,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -31565,31 +30185,29 @@
},
/area/security/prisonershuttle)
"bqQ" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/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;
@@ -31629,15 +30247,15 @@
},
/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
},
@@ -31854,8 +30472,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/structure/table/wood,
/obj/item/clothing/mask/cigarette/cigar,
@@ -31913,7 +30530,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"brl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -31924,7 +30541,7 @@
/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
@@ -31935,7 +30552,7 @@
/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{
@@ -31946,7 +30563,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
@@ -31985,28 +30602,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,
/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{
@@ -32027,7 +30641,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)
@@ -32144,59 +30759,31 @@
/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
- },
/turf/simulated/floor/plating,
-/area/atmos)
+/area/maintenance/starboard2)
"brN" = (
/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
/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
- },
/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
- },
-/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
- },
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/atmos)
@@ -32205,39 +30792,35 @@
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
/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{
+/turf/simulated/floor/plasteel,
+/area/maintenance/starboard2)
+"brT" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall/r_wall,
-/area/atmos)
-"brT" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- 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/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
- },
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=engi3";
location = "engi2"
@@ -32260,13 +30843,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;
@@ -32274,14 +30850,9 @@
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,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"bsa" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/extinguisher_cabinet{
@@ -32291,23 +30862,18 @@
/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,
@@ -32357,8 +30923,8 @@
/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{
icon_state = "neutralcorner"
@@ -32420,17 +30986,12 @@
},
/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)
+/area/library)
"bsq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -32456,15 +31017,17 @@
},
/area/hallway/primary/central)
"bst" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Quartermaster Junction";
+ sortType = 3
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -32518,6 +31081,10 @@
/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;
@@ -32530,26 +31097,25 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/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
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/security/prisonershuttle)
"bsF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/table/reinforced,
/obj/item/phone,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -32558,15 +31124,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/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;
@@ -32579,15 +31145,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
},
/area/security/prisonershuttle)
"bsH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32611,14 +31177,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "redfull"
},
/area/security/prisonershuttle)
"bsI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32626,16 +31193,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -32746,6 +31307,7 @@
tag = ""
},
/obj/effect/decal/warning_stripes/west,
+/obj/machinery/computer/shuttle/labor,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -32757,7 +31319,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
@@ -32770,33 +31332,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,
@@ -32843,12 +31408,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;
@@ -32870,7 +31437,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
@@ -32890,9 +31457,19 @@
/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" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32905,109 +31482,102 @@
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,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"btq" = (
+/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 = 8;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btr" = (
+/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
- },
-/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" = (
+/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
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"btt" = (
+/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
- },
/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" = (
+/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/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,
@@ -33018,10 +31588,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;
@@ -33029,14 +31603,13 @@
},
/area/hallway/primary/port)
"btz" = (
+/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/visible/yellow,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -33091,13 +31664,13 @@
/turf/simulated/floor/plasteel,
/area/hydroponics)
"btE" = (
+/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{
@@ -33106,18 +31679,18 @@
},
/area/hallway/primary/central)
"btF" = (
+/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,
/turf/simulated/floor/plasteel,
-/area/maintenance/fsmaint)
+/area/maintenance/fore)
"btG" = (
/obj/structure/table/glass,
/obj/machinery/computer/med_data/laptop,
@@ -33173,7 +31746,7 @@
/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";
@@ -33189,6 +31762,7 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"btU" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -33201,7 +31775,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/window/brigdoor{
dir = 1
},
@@ -33289,13 +31862,13 @@
/turf/simulated/floor/plating,
/area/security/prisonershuttle)
"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"
@@ -33430,7 +32003,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -33477,7 +32050,6 @@
},
/area/atmos)
"bus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/unary/thermomachine/freezer{
dir = 4
},
@@ -33547,11 +32119,11 @@
},
/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" = (
@@ -33561,59 +32133,68 @@
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,
/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" = (
+/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/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/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/warning_stripes/north,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"buG" = (
@@ -33626,39 +32207,47 @@
/obj/effect/decal/warning_stripes/yellow/partial{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/atmos)
"buH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
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{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellowcorner"
},
/area/hallway/primary/port)
"buJ" = (
+/obj/structure/disposalpipe/junction,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -33757,13 +32346,13 @@
},
/area/hallway/primary/central)
"buV" = (
+/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"
@@ -33797,7 +32386,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bva" = (
/obj/structure/cable{
d1 = 1;
@@ -33811,11 +32400,18 @@
},
/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
@@ -33836,10 +32432,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{
@@ -33886,13 +32479,13 @@
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvm" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/security/prisonershuttle)
"bvn" = (
@@ -33970,6 +32563,9 @@
dir = 1;
network = list("SS13","Minisat")
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -34090,7 +32686,6 @@
/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";
@@ -34124,7 +32719,6 @@
},
/area/atmos)
"bvI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/binary/pump{
dir = 4;
name = "Air to Waste";
@@ -34149,10 +32743,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;
@@ -34165,6 +32762,8 @@
name = "Atmospherics Access";
req_access_txt = "24"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/atmos)
"bvN" = (
@@ -34188,15 +32787,15 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"bvP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34208,40 +32807,37 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"bvQ" = (
+/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,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/atmos)
"bvR" = (
+/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/window{
base_state = "right";
dir = 1;
@@ -34257,6 +32853,9 @@
/turf/simulated/floor/plasteel,
/area/atmos)
"bvS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -34268,10 +32867,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/plasticflaps{
opacity = 1
},
@@ -34289,10 +32884,10 @@
/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;
@@ -34615,35 +33210,26 @@
/turf/simulated/floor/plating,
/area/bridge)
"bwo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/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{
- dir = 4;
- icon_state = "neutralcorner"
+ icon_state = "grimy"
},
-/area/hallway/primary/central)
+/area/library)
"bwp" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/library)
"bwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/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
@@ -34653,26 +33239,27 @@
},
/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;
@@ -34685,7 +33272,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "red"
},
@@ -34811,11 +33397,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;
@@ -34835,11 +33421,15 @@
},
/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
@@ -34867,30 +33457,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" = (
@@ -34898,23 +33493,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
},
+/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
},
@@ -34937,10 +33534,11 @@
tag = ""
},
/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/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,
@@ -34977,29 +33575,26 @@
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/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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -35175,29 +33770,26 @@
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,
/area/quartermaster/miningdock)
"bxz" = (
+/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{
- dir = 8;
- initialize_directions = 11
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -35213,6 +33805,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"
},
@@ -35228,10 +33823,12 @@
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"
},
@@ -35246,6 +33843,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"
},
@@ -35260,6 +33860,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/greengrid,
/area/security/nuke_storage)
"bxE" = (
@@ -35273,7 +33876,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{
@@ -35307,12 +33913,12 @@
},
/area/security/prisonershuttle)
"bxK" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security/glass{
name = "Labor Camp Processing";
req_access_txt = "63"
@@ -35357,6 +33963,8 @@
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"
},
@@ -35399,20 +34007,6 @@
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,
@@ -35431,9 +34025,6 @@
},
/area/turret_protected/ai)
"bxZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -35442,19 +34033,7 @@
},
/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"
- },
-/turf/simulated/floor/greengrid,
-/area/turret_protected/ai)
"byb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35468,9 +34047,6 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/ai_slipper,
/obj/structure/cable{
d1 = 4;
@@ -35486,9 +34062,6 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"byd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35503,10 +34076,6 @@
/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
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35515,9 +34084,6 @@
/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;
@@ -35548,11 +34114,9 @@
"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,
@@ -35588,14 +34152,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,
@@ -35616,43 +34183,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
},
-/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
},
/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,
-/turf/simulated/wall/r_wall,
-/area/engine/break_room)
"byx" = (
/obj/structure/cable{
d1 = 1;
@@ -35665,12 +34223,9 @@
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,
+/turf/simulated/floor/plasteel,
/area/engine/break_room)
"byz" = (
/obj/machinery/status_display{
@@ -35693,6 +34248,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"
@@ -35705,7 +34263,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"
@@ -35721,6 +34281,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"
@@ -35738,7 +34301,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/pen,
@@ -35750,26 +34312,30 @@
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"
},
/area/hallway/primary/port)
"byG" = (
+/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/visible/cyan{
- dir = 6;
- initialize_directions = 6
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -35829,35 +34395,27 @@
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/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/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"byL" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"byL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -35870,28 +34428,24 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/maintenance/fore)
+"byM" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/fsmaint)
-"byM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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,
@@ -35907,17 +34461,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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)
"byP" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35930,7 +34485,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -36088,10 +34642,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" = (
@@ -36157,13 +34708,13 @@
/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/structure/cable{
d1 = 2;
d2 = 4;
@@ -36215,8 +34766,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -36263,18 +34813,6 @@
icon_state = "redcorner"
},
/area/security/brig)
-"bzu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/construction/hallway)
"bzv" = (
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
@@ -36288,66 +34826,52 @@
},
/area/turret_protected/ai)
"bzx" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 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
- },
-/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
+/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
+/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
- },
/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,
@@ -36362,27 +34886,23 @@
},
/area/engine/gravitygenerator)
"bzF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/engine/gravitygenerator)
-"bzG" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/area/crew_quarters/locker)
+"bzG" = (
+/obj/effect/spawner/window/reinforced,
/obj/structure/sign/electricshock{
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/engine/gravitygenerator)
"bzH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = 32
},
@@ -36391,6 +34911,7 @@
on = 1
},
/obj/effect/decal/warning_stripes/northwest,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bzI" = (
@@ -36398,9 +34919,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -36410,13 +34928,6 @@
/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
},
@@ -36482,7 +34993,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/break_room)
"bzP" = (
@@ -36491,36 +35001,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
- },
-/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;
@@ -36529,10 +35026,11 @@
tag = ""
},
/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/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)
@@ -36560,15 +35058,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,
@@ -36581,32 +35077,29 @@
},
/area/atmos)
"bAc" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+/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/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -36672,34 +35165,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
+ 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)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plasteel,
+/area/engine/engineering)
"bAo" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plasteel,
-/area/storage/primary)
+/area/maintenance/fore)
"bAp" = (
/obj/structure/table/reinforced,
/obj/item/aiModule/reset,
@@ -36709,16 +35204,16 @@
/turf/simulated/floor/plasteel,
/area/storage/tech)
"bAq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- 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/simple/hidden/supply,
/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{
@@ -36862,7 +35357,7 @@
"bAI" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/light/small,
/obj/structure/closet/crate,
@@ -36878,11 +35373,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,
@@ -36998,8 +35492,7 @@
/area/security/brig)
"bAR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
@@ -37011,33 +35504,13 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/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/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/security/brig)
"bAT" = (
/obj/machinery/light/small{
dir = 4
@@ -37163,40 +35636,20 @@
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,
-/area/turret_protected/ai)
"bBf" = (
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/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;
@@ -37210,34 +35663,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"
@@ -37245,66 +35690,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
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA"
- },
-/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
- },
/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
- },
/obj/machinery/camera{
c_tag = "Gravity Generation Access";
dir = 4;
@@ -37319,20 +35738,20 @@
/turf/simulated/floor/plasteel,
/area/engine/gravitygenerator)
"bBu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall,
-/area/engine/break_room)
+/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
- },
/turf/simulated/floor/plating,
/area/engine/break_room)
"bBw" = (
@@ -37342,9 +35761,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
@@ -37363,7 +35779,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plating,
/area/engine/break_room)
"bBy" = (
@@ -37379,9 +35794,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
@@ -37390,26 +35802,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
- },
-/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
- },
/obj/machinery/firealarm{
pixel_y = 24
},
@@ -37419,32 +35825,10 @@
icon_state = "yellow"
},
/area/engine/break_room)
-"bBC" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 9;
- icon_state = "yellow"
- },
-/area/engine/break_room)
-"bBD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
- },
-/area/engine/break_room)
"bBE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "yellow"
+ dir = 4;
+ icon_state = "cautioncorner"
},
/area/engine/break_room)
"bBF" = (
@@ -37452,9 +35836,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/power/apc{
dir = 1;
@@ -37477,10 +35858,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "caution"
@@ -37499,22 +35876,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/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
- },
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -37576,13 +35948,19 @@
},
/area/atmos)
"bBO" = (
+/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/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -37645,9 +36023,17 @@
},
/area/storage/tech)
"bBV" = (
+/obj/structure/disposalpipe/segment,
+/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
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
"bBW" = (
/obj/structure/cable{
d1 = 1;
@@ -37655,9 +36041,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/plasticflaps{
opacity = 1
},
@@ -37752,6 +36135,10 @@
/turf/simulated/wall,
/area/storage/primary)
"bCf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -37763,10 +36150,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -37795,6 +36178,9 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bCh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37812,9 +36198,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -37839,15 +36222,15 @@
},
/area/bridge)
"bCi" = (
+/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 = 4
},
@@ -37859,16 +36242,16 @@
},
/area/bridge)
"bCj" = (
+/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
},
@@ -37939,8 +36322,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -37963,8 +36345,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
@@ -38061,8 +36442,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/door/window/brigdoor/southright{
req_access_txt = "30"
@@ -38087,8 +36467,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -38207,8 +36586,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/light{
dir = 1
@@ -38342,16 +36720,14 @@
"bCE" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Central Ring Hallway East";
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -38468,13 +36844,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" = (
@@ -38535,6 +36911,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bDa" = (
@@ -38582,9 +36959,6 @@
},
/area/engine/gravitygenerator)
"bDe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
@@ -38598,6 +36972,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"
@@ -38605,20 +36985,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" = (
@@ -38633,6 +37018,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" = (
@@ -38648,8 +37039,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" = (
@@ -38660,6 +37056,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" = (
@@ -38669,10 +37071,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" = (
@@ -38682,29 +37087,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" = (
@@ -38714,10 +37103,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" = (
@@ -38732,11 +37124,13 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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" = (
@@ -38746,10 +37140,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" = (
@@ -38759,15 +37154,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" = (
@@ -38777,21 +37175,26 @@
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" = (
+/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/scrubbers{
- dir = 1;
- 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{
dir = 8;
@@ -38805,21 +37208,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 = 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
@@ -38836,9 +37226,11 @@
icon_state = "4-8";
tag = ""
},
-/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{
dir = 8;
@@ -38858,65 +37250,55 @@
icon_state = "2-8";
tag = ""
},
+/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 = "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
- },
-/turf/simulated/wall/r_wall,
-/area/atmos)
"bDB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/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/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
- },
+/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/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{
@@ -38934,16 +37316,16 @@
},
/area/storage/tech)
"bDG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -39133,15 +37515,15 @@
},
/area/bridge)
"bDW" = (
+/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/door/firedoor,
/obj/machinery/door/airlock/command/glass{
name = "Bridge";
@@ -39172,16 +37554,16 @@
},
/area/bridge)
"bDZ" = (
+/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"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -39190,12 +37572,10 @@
/area/bridge)
"bEa" = (
/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
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39385,8 +37765,7 @@
"bEp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -39510,7 +37889,6 @@
/turf/simulated/floor/greengrid,
/area/turret_protected/ai)
"bEF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 8
},
@@ -39526,15 +37904,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"
@@ -39547,39 +37924,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
- },
/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"
},
-/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,
@@ -39591,42 +37961,16 @@
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
- },
/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;
@@ -39643,9 +37987,6 @@
},
/area/engine/break_room)
"bES" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "caution"
},
@@ -39680,14 +38021,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"
@@ -39701,15 +38043,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;
@@ -39717,13 +38061,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 = "neutralfull"
},
/area/engine/break_room)
"bFa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/status_display{
pixel_x = 32;
pixel_y = 32
@@ -39734,6 +38079,7 @@
},
/area/engine/break_room)
"bFb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "yellow"
@@ -39750,7 +38096,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{
@@ -39762,9 +38107,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
@@ -39778,6 +38120,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" = (
@@ -39789,12 +38132,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,
@@ -39918,11 +38267,11 @@
},
/area/hallway/primary/central)
"bFu" = (
-/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/spawner/window/reinforced,
+/obj/structure/cable,
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -39975,13 +38324,13 @@
},
/area/bridge)
"bFA" = (
+/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{
@@ -40111,7 +38460,7 @@
"bFN" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "darkblue"
@@ -40373,36 +38722,34 @@
},
/area/turret_protected/ai)
"bGr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/engine/gravitygenerator)
-"bGs" = (
-/obj/effect/spawner/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/maintenance/port)
+"bGs" = (
+/obj/effect/spawner/window/reinforced,
/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
},
@@ -40413,23 +38760,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;
- 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
},
@@ -40457,8 +38801,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" = (
@@ -40482,7 +38827,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -40517,10 +38861,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
/obj/item/lightreplacer,
@@ -40531,6 +38871,9 @@
},
/area/engine/break_room)
"bGG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40543,9 +38886,30 @@
icon_state = "2-4";
tag = ""
},
+/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"
+ },
+/area/engine/break_room)
+"bGH" = (
/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
},
@@ -40554,32 +38918,17 @@
icon_state = "neutralfull"
},
/area/engine/break_room)
-"bGH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
"bGI" = (
+/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/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -40589,82 +38938,91 @@
},
/area/engine/break_room)
"bGJ" = (
+/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
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering";
req_access_txt = "32"
},
+/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/engine/break_room)
"bGK" = (
+/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/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bGL" = (
+/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/east,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/break_room)
"bGM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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/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
- },
-/obj/effect/landmark{
- name = "lightsout"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40672,6 +39030,9 @@
},
/area/engine/break_room)
"bGN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40689,30 +39050,38 @@
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"
},
+/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/engine/break_room)
"bGO" = (
+/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
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -40731,17 +39100,24 @@
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"
},
/area/storage/tech)
"bGQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -40759,9 +39135,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40769,7 +39147,6 @@
},
/area/hallway/primary/port)
"bGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 4
},
@@ -40803,7 +39180,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{
@@ -40818,8 +39195,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;
@@ -40839,25 +39216,23 @@
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bGW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -40905,9 +39280,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;
@@ -40915,9 +39287,6 @@
},
/area/storage/primary)
"bHd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Civilian"
},
@@ -40927,41 +39296,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
+/obj/effect/spawner/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/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{
@@ -40985,13 +39354,13 @@
/turf/simulated/wall,
/area/bridge/meeting_room)
"bHl" = (
+/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/firedoor,
/obj/machinery/door/airlock/command{
@@ -41007,8 +39376,7 @@
"bHm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -41182,13 +39550,13 @@
},
/area/hallway/primary/central)
"bHC" = (
+/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,
/turf/simulated/floor/plasteel{
@@ -41205,7 +39573,7 @@
},
/obj/machinery/door/airlock/maintenance,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHE" = (
/obj/structure/cable{
d1 = 4;
@@ -41215,7 +39583,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHF" = (
/obj/structure/cable{
d1 = 4;
@@ -41225,12 +39593,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,
@@ -41243,7 +39611,7 @@
tag = ""
},
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bHI" = (
/obj/structure/cable{
d1 = 2;
@@ -41255,7 +39623,7 @@
/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,
@@ -41315,14 +39683,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"
},
@@ -41453,8 +39821,7 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -41462,6 +39829,7 @@
},
/area/security/brig)
"bHZ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41474,7 +39842,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -41486,31 +39853,28 @@
/turf/simulated/floor/plating,
/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
- },
/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"
@@ -41530,9 +39894,6 @@
},
/area/turret_protected/ai)
"bIk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -41547,27 +39908,21 @@
},
/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
- },
/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
},
@@ -41585,7 +39940,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)
@@ -41640,9 +39994,6 @@
/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,
@@ -41657,9 +40008,6 @@
/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
@@ -41669,17 +40017,14 @@
},
/area/crew_quarters/chief)
"bIw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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/crew_quarters/chief)
"bIx" = (
@@ -41695,10 +40040,8 @@
/area/engine/break_room)
"bIz" = (
/obj/structure/disposalpipe/sortjunction{
- name = "CE's Junction"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ name = "CE's Junction";
+ sortType = 5
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -41712,16 +40055,16 @@
},
/area/engine/break_room)
"bIB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/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;
@@ -41729,35 +40072,32 @@
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 = "neutralfull"
},
/area/engine/break_room)
"bID" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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
},
@@ -41767,30 +40107,25 @@
},
/area/engine/break_room)
"bIG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "purplecorner"
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
-/area/engine/break_room)
+/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;
@@ -41812,25 +40147,6 @@
/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{
@@ -41868,6 +40184,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;
@@ -41900,6 +40217,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" = (
@@ -41910,6 +40233,9 @@
},
/area/storage/primary)
"bIU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "yellowcorner"
},
@@ -41922,29 +40248,6 @@
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{
- icon_state = "red"
- },
-/area/security/checkpoint/engineering)
"bIX" = (
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -42009,6 +40312,7 @@
},
/area/hallway/primary/central)
"bJe" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 26;
@@ -42021,7 +40325,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -42153,7 +40456,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"bJu" = (
/obj/structure/cable{
d1 = 4;
@@ -42166,7 +40469,7 @@
req_access_txt = "4"
},
/turf/simulated/floor/plasteel,
-/area/security/detectives_office)
+/area/maintenance/starboard2)
"bJv" = (
/obj/structure/cable{
d1 = 4;
@@ -42238,12 +40541,12 @@
},
/area/security/detectives_office)
"bJz" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -42310,7 +40613,7 @@
dir = 4
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -42328,6 +40631,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"
},
@@ -42341,6 +40647,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"
},
@@ -42350,9 +40659,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -42371,13 +40677,15 @@
},
/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" = (
@@ -42386,6 +40694,12 @@
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/greengrid,
/area/turret_protected/ai)
"bJU" = (
@@ -42395,10 +40709,15 @@
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/greengrid,
/area/turret_protected/ai)
"bJV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -42409,6 +40728,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/greengrid,
/area/turret_protected/ai)
"bJW" = (
@@ -42417,6 +40742,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" = (
@@ -42427,6 +40755,9 @@
/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"
},
@@ -42442,6 +40773,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"
},
@@ -42458,9 +40792,6 @@
d2 = 2;
icon_state = "0-2"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -42478,12 +40809,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;
@@ -42510,26 +40841,23 @@
},
/area/crew_quarters/chief)
"bKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
/area/crew_quarters/chief)
"bKf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
/area/crew_quarters/chief)
"bKg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -42542,8 +40870,11 @@
icon_state = "2-4";
tag = ""
},
-/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{
icon_state = "dark"
@@ -42553,9 +40884,6 @@
/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)
@@ -42563,9 +40891,6 @@
/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;
@@ -42590,79 +40915,52 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
+ },
/turf/simulated/floor/plasteel,
/area/crew_quarters/chief)
"bKl" = (
+/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{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "yellow"
},
/area/engine/break_room)
-"bKm" = (
+"bKp" = (
+/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 = 9
- },
-/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{
@@ -42673,26 +40971,11 @@
icon_state = "neutralfull"
},
/area/engine/break_room)
-"bKp" = (
-/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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/engine/break_room)
"bKq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42705,9 +40988,11 @@
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
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -42720,22 +41005,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/structure/disposalpipe/junction{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/security/checkpoint/engineering)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ 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;
@@ -42753,33 +41038,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
- },
/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{
@@ -42818,21 +41088,26 @@
icon_state = "4-8";
tag = ""
},
+/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/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{
@@ -42912,6 +41187,7 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKL" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/phone,
@@ -42923,7 +41199,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bKM" = (
@@ -43017,23 +41292,21 @@
},
/area/crew_quarters/captain)
"bLa" = (
+/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"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -43098,14 +41371,14 @@
},
/area/storage/tools)
"bLj" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/machinery/disposal,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -43117,16 +41390,16 @@
},
/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" = (
@@ -43224,7 +41497,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -43343,18 +41616,10 @@
/turf/space,
/area/space/nearstation)
"bLN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/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
- },
/obj/machinery/firealarm{
dir = 1;
pixel_y = -24
@@ -43364,18 +41629,13 @@
},
/area/turret_protected/ai)
"bLP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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"
- },
-/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{
@@ -43404,10 +41664,8 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43422,9 +41680,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43440,9 +41695,6 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
name = "MiniSat External Access";
@@ -43460,10 +41712,13 @@
icon_state = "4-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
/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{
dir = 4;
icon_state = "yellow"
@@ -43476,11 +41731,12 @@
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)
"bLZ" = (
@@ -43492,29 +41748,30 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
/area/storage/primary)
"bMa" = (
+/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,
/obj/machinery/door/airlock/public/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)
"bMb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/airlock/public/glass,
@@ -43547,7 +41804,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
@@ -43571,15 +41827,13 @@
d2 = 8;
icon_state = "1-8"
},
-/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/plasteel{
icon_state = "dark"
},
/area/engine/break_room)
"bMf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 4
},
@@ -43597,10 +41851,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"
@@ -43624,6 +41875,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;
@@ -43637,7 +41889,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -43692,28 +41943,22 @@
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/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{
dir = 7;
icon_state = "yellow"
},
/area/engine/break_room)
"bMu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 7;
icon_state = "yellow"
@@ -43735,40 +41980,38 @@
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
+/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{
@@ -43786,12 +42029,11 @@
},
/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{
@@ -43814,12 +42056,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,
@@ -43839,7 +42080,6 @@
},
/area/storage/primary)
"bMJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
@@ -43964,15 +42204,14 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bMS" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -43980,7 +42219,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -44062,6 +42300,7 @@
},
/area/crew_quarters/captain)
"bNc" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44073,7 +42312,6 @@
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,
@@ -44162,12 +42400,12 @@
},
/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
},
@@ -44284,7 +42522,7 @@
"bNy" = (
/obj/effect/decal/warning_stripes/east,
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel,
/area/security/brig)
@@ -44296,7 +42534,6 @@
/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,
@@ -44309,26 +42546,26 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"bND" = (
-/obj/structure/chair{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/chair{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
},
/area/security/processing)
"bNE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel,
/area/security/processing)
"bNF" = (
@@ -44347,6 +42584,11 @@
},
/area/security/processing)
"bNH" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Brig Equipment Storage";
+ sortType = 8
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44355,25 +42597,20 @@
},
/obj/machinery/hologram/holopad,
/obj/effect/decal/warning_stripes/yellow/hollow,
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Brig Equipment Storage";
- sortType = 8
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/security/brig)
"bNI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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/processing)
"bNK" = (
@@ -44392,10 +42629,6 @@
/turf/simulated/floor/plating,
/area/security/brig)
"bNL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
/obj/machinery/camera{
c_tag = "AI Chamber South";
dir = 1;
@@ -44413,10 +42646,6 @@
/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{
@@ -44434,30 +42663,28 @@
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,
/area/turret_protected/aisat)
"bNS" = (
+/obj/structure/disposalpipe/sortjunction{
+ name = "Atmospherics Junction";
+ sortType = 6
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/sortjunction{
- name = "Atmospherics Junction";
- sortType = 6
- },
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 5
},
@@ -44475,18 +42702,20 @@
},
/area/engine/break_room)
"bNU" = (
+/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/engineering/glass{
name = "Engineering";
req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/break_room)
"bNW" = (
@@ -44505,7 +42734,6 @@
},
/area/engine/break_room)
"bNY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -44532,6 +42760,12 @@
},
/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"
@@ -44544,6 +42778,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"
@@ -44567,7 +42807,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"
@@ -44585,7 +42830,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 4
},
@@ -44598,17 +42842,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)
@@ -44621,37 +42868,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{
- 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;
+ name = "west bump";
pixel_x = -24
},
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "cautioncorner"
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
},
-/area/hallway/primary/port)
+/turf/simulated/floor/plasteel{
+ dir = 9;
+ icon_state = "yellow"
+ },
+/area/engine/break_room)
"bOo" = (
/obj/structure/cable{
d1 = 1;
@@ -44659,25 +42902,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;
+/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,
@@ -44689,7 +42931,6 @@
},
/area/storage/tech)
"bOr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/firealarm{
dir = 1;
@@ -44705,8 +42946,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" = (
@@ -44736,13 +42978,12 @@
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,
@@ -44772,13 +43013,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"
@@ -44820,6 +43062,7 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOH" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
req_access = null;
@@ -44833,7 +43076,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -44846,6 +43088,7 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"bOJ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -44856,7 +43099,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/item/pen,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
@@ -44870,6 +43112,10 @@
},
/area/bridge/meeting_room)
"bOL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44877,10 +43123,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -44972,13 +43214,13 @@
},
/area/hallway/primary/central)
"bOX" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/chair/comfy/brown,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -45329,15 +43571,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"
@@ -45381,19 +43618,14 @@
},
/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
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -45413,7 +43645,7 @@
tag = ""
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/warning_stripes/north,
@@ -45435,9 +43667,6 @@
},
/area/turret_protected/aisat)
"bPK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 9
@@ -45447,24 +43676,20 @@
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{
@@ -45586,8 +43811,6 @@
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"
@@ -45608,9 +43831,6 @@
},
/area/quartermaster/office)
"bQc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/door/window/eastleft{
@@ -45630,6 +43850,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"
@@ -45645,23 +43871,22 @@
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"
},
/area/engine/break_room)
"bQg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -45686,13 +43911,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)
@@ -45711,6 +43933,7 @@
/obj/machinery/ai_status_display{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -45782,7 +44005,6 @@
dir = 2;
icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 8
@@ -45793,13 +44015,19 @@
network = list("Engineering","SS13");
pixel_y = -22
},
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "yellow"
},
/area/engine/break_room)
"bQq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
@@ -45815,53 +44043,22 @@
/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{
- icon_state = "redfull"
+ 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
@@ -45872,9 +44069,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,
@@ -45893,14 +44094,16 @@
},
/area/hallway/primary/starboard)
"bQA" = (
+/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/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bQB" = (
@@ -45918,7 +44121,7 @@
/area/storage/primary)
"bQC" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/teleport/hub,
/obj/effect/decal/warning_stripes/southwest,
@@ -45967,7 +44170,7 @@
"bQH" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Command Meeting Room";
@@ -45981,6 +44184,7 @@
/turf/simulated/wall,
/area/blueshield)
"bQJ" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -45989,7 +44193,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -45997,7 +44200,7 @@
"bQK" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/porta_turret{
dir = 4
@@ -46054,13 +44257,13 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bQQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/machinery/door/window{
base_state = "right";
@@ -46183,12 +44386,12 @@
/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" = (
@@ -46203,11 +44406,11 @@
},
/area/hallway/primary/starboard)
"bRe" = (
-/obj/effect/decal/warning_stripes/east,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/east,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -46216,11 +44419,11 @@
/turf/simulated/floor/plasteel,
/area/security/brig)
"bRf" = (
-/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/light/small,
@@ -46230,14 +44433,14 @@
/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/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -46256,17 +44459,21 @@
/turf/simulated/floor/plasteel,
/area/security/brig)
"bRh" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/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;
@@ -46276,10 +44483,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -46358,21 +44561,11 @@
},
/turf/simulated/floor/plating,
/area/security/seceqstorage)
-"bRq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/chair/stool/bar,
-/turf/simulated/floor/plasteel{
- icon_state = "redyellowfull"
- },
-/area/crew_quarters/bar/atrium)
"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"
},
@@ -46405,7 +44598,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "AI Minisatellite West";
dir = 8;
@@ -46422,26 +44614,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
- },
-/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
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
/obj/structure/showcase{
density = 0;
@@ -46455,87 +44646,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
- },
-/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
- },
/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
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
/area/turret_protected/aisat)
"bRD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
+/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
- },
-/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
- },
-/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;
@@ -46544,31 +44679,11 @@
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
-"bRH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bRI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/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
- },
/obj/machinery/light/small{
dir = 8
},
@@ -46576,23 +44691,12 @@
icon_state = "dark"
},
/area/construction/hallway)
-"bRK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/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
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -46602,9 +44706,6 @@
dir = 1;
layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/sign/vacuum{
pixel_y = 32
},
@@ -46620,10 +44721,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
/obj/structure/transit_tube{
icon_state = "S-NE"
},
@@ -46660,7 +44757,6 @@
/turf/space,
/area/space/nearstation)
"bRS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 1
},
@@ -46686,7 +44782,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"
},
@@ -46738,8 +44835,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;
@@ -46752,8 +44852,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
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -46777,14 +44880,17 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
},
@@ -46796,6 +44902,9 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -46810,9 +44919,12 @@
icon_state = "4-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 = 9
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -46830,34 +44942,20 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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,
@@ -46869,18 +44967,16 @@
},
/area/hallway/primary/central)
"bSh" = (
+/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/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -46900,17 +44996,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
- },
-/turf/simulated/floor/plating,
-/area/engine/engineering)
"bSk" = (
/obj/structure/cable{
d1 = 1;
@@ -46918,61 +45003,27 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- 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
- },
-/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
+ 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")
@@ -46993,6 +45044,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"
@@ -47005,20 +45058,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/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
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47026,54 +45071,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
- },
-/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
- },
-/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
- },
-/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;
@@ -47086,27 +45088,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
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/port)
"bSx" = (
/obj/structure/cable{
d1 = 1;
@@ -47119,7 +45107,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47132,10 +45119,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -47155,16 +45138,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
@@ -47291,13 +45270,13 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bSQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/chair/comfy/brown{
dir = 1
},
@@ -47330,8 +45309,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -47413,15 +45391,15 @@
/turf/simulated/floor/plasteel,
/area/storage/tools)
"bTf" = (
+/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,
/turf/simulated/floor/plasteel{
@@ -47537,6 +45515,12 @@
/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"
@@ -47548,6 +45532,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"
@@ -47560,13 +45550,16 @@
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;
@@ -47578,6 +45571,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"
},
@@ -47595,42 +45594,17 @@
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"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
-"bTy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/ai_slipper,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "vault"
+ icon_state = "dark"
},
/area/turret_protected/aisat)
"bTz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -47641,19 +45615,11 @@
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"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -47666,16 +45632,9 @@
d2 = 8;
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"
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "grimy"
@@ -47695,30 +45654,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"
},
+/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"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -47729,6 +45696,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 = 8;
icon_state = "vault"
@@ -47745,6 +45718,12 @@
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"
@@ -47757,24 +45736,17 @@
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 = 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"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/turret_protected/aisat)
"bTK" = (
/obj/machinery/hologram/holopad,
/obj/structure/cable{
@@ -47782,20 +45754,29 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/turret_protected/aisat)
"bTL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -47811,6 +45792,12 @@
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"
@@ -47822,35 +45809,25 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/construction/hallway)
"bTO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/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"
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -47862,6 +45839,10 @@
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"
},
@@ -47873,6 +45854,12 @@
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"
@@ -47884,6 +45871,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{
icon_state = "dark"
},
@@ -47895,7 +45888,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{
@@ -47906,11 +45902,16 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/transit_tube/station{
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"
},
@@ -47922,24 +45923,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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;
@@ -47947,9 +45933,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -47964,7 +45947,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -47977,9 +45959,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- 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"
@@ -47999,13 +45980,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"
},
@@ -48014,24 +45998,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 = "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_x = 24
},
/obj/machinery/light/small{
dir = 4
@@ -48089,13 +46078,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)
@@ -48141,11 +46127,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" = (
@@ -48155,10 +46142,23 @@
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"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-y"
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -48171,117 +46171,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/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Break Room";
+ req_access_txt = "10"
+ },
+/obj/machinery/door/firedoor,
+/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/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/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
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/sign/poster/contraband/atmosia_independence{
+ pixel_x = 32
},
-/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
},
@@ -48301,17 +46276,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"
@@ -48326,37 +46312,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;
@@ -48369,19 +46338,20 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -48424,8 +46394,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";
@@ -48454,6 +46423,9 @@
icon_state = "pipe-c"
},
/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/keycard_auth{
+ pixel_y = 26
+ },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -48499,13 +46471,13 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain)
"bUX" = (
+/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/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet/black,
@@ -48614,9 +46586,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -48657,16 +46626,18 @@
},
/area/hallway/primary/starboard)
"bVj" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/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"
},
@@ -48716,13 +46687,13 @@
},
/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;
@@ -48769,8 +46740,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -48834,9 +46804,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -48845,20 +46812,11 @@
pixel_x = -32
},
/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
},
/area/engine/break_room)
-"bVz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/wall,
-/area/engine/break_room)
"bVA" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -48901,9 +46859,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -48936,9 +46891,6 @@
/area/crew_quarters/courtroom)
"bVH" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light/small{
dir = 4
},
@@ -48946,16 +46898,7 @@
icon_state = "dark"
},
/area/construction/hallway)
-"bVI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/aisat)
"bVJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48973,20 +46916,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
- },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48996,31 +46933,20 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
-"bVM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/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
- },
/obj/structure/showcase{
density = 0;
dir = 4;
@@ -49034,46 +46960,24 @@
icon_state = "dark"
},
/area/turret_protected/aisat)
-"bVP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/turret_protected/aisat)
-"bVQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/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
- },
/obj/structure/showcase{
density = 0;
dir = 8;
@@ -49088,23 +46992,19 @@
},
/area/turret_protected/aisat)
"bVU" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/obj/machinery/light/small{
dir = 8
},
@@ -49117,10 +47017,8 @@
},
/area/construction/hallway)
"bVW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -49298,13 +47196,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)
@@ -49321,13 +47216,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)
@@ -49337,13 +47229,9 @@
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)
@@ -49366,7 +47254,6 @@
/area/magistrateoffice)
"bWt" = (
/obj/effect/spawner/window/reinforced,
-/obj/structure/cable,
/turf/simulated/floor/plating,
/area/engine/engineering)
"bWu" = (
@@ -49376,46 +47263,51 @@
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{
- 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{
- 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{
- 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
},
@@ -49423,15 +47315,17 @@
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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cautioncorner"
@@ -49444,56 +47338,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{
- icon_state = "yellowcorner"
- },
-/area/hallway/primary/port)
"bWC" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/security/seceqstorage)
-"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
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/port)
-"bWF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/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;
@@ -49501,10 +47365,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"
@@ -49513,16 +47373,13 @@
"bWI" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ 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;
@@ -49534,37 +47391,36 @@
},
/area/hallway/primary/port)
"bWK" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
"bWM" = (
/turf/simulated/floor/plasteel{
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"
@@ -49626,13 +47482,13 @@
},
/area/crew_quarters/heads/hop)
"bWW" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/command{
id_tag = "captainofficedoor";
name = "Captain's Office";
@@ -49669,8 +47525,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -49702,7 +47557,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/light,
/turf/simulated/floor/plasteel{
@@ -49729,15 +47584,15 @@
/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
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -49774,15 +47629,15 @@
},
/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/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -49838,9 +47693,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
@@ -49850,8 +47702,7 @@
/area/hallway/primary/port)
"bXB" = (
/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -49884,20 +47735,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;
- 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;
@@ -49905,9 +47754,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1379;
@@ -49926,7 +47772,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -49938,7 +47783,6 @@
},
/area/turret_protected/aisat)
"bXI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -49949,6 +47793,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"
@@ -49959,7 +47805,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -50076,7 +47922,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)
@@ -50087,12 +47932,10 @@
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";
@@ -50106,11 +47949,6 @@
/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{
@@ -50125,30 +47963,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
- },
/turf/simulated/floor/plasteel{
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)
@@ -50163,9 +47991,6 @@
icon_state = "1-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -50176,9 +48001,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -50193,10 +48015,9 @@
/turf/simulated/wall,
/area/library)
"bYo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southwest,
@@ -50242,13 +48063,13 @@
},
/area/crew_quarters/heads/hop)
"bYs" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"bYu" = (
@@ -50279,13 +48100,13 @@
},
/area/crew_quarters/captain/bedroom)
"bYz" = (
+/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/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -50304,6 +48125,12 @@
"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"
@@ -50356,9 +48183,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/lattice/catwalk,
/turf/space,
/area/space/nearstation)
@@ -50428,6 +48252,7 @@
/turf/simulated/floor/plating,
/area/magistrateoffice)
"bYQ" = (
+/obj/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/machinery/door/poddoor/shutters{
density = 0;
@@ -50437,7 +48262,6 @@
name = "Magistrate Privacy Shutters";
opacity = 0
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/magistrateoffice)
"bYR" = (
@@ -50466,12 +48290,10 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -50519,8 +48341,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -50616,6 +48437,8 @@
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"
@@ -50726,72 +48549,39 @@
/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/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"bZx" = (
/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" = (
+/obj/structure/disposalpipe/sortjunction{
+ name = "Engineering Junction";
+ sortType = 4
+ },
/obj/structure/cable{
d1 = 1;
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
- },
/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/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"bZA" = (
@@ -50801,9 +48591,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)
@@ -50819,10 +48606,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -50866,17 +48649,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,
@@ -50884,11 +48656,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;
@@ -50905,7 +48673,7 @@
name = "3maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"bZJ" = (
/obj/structure/table/wood,
/obj/machinery/computer/library,
@@ -50925,13 +48693,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"
},
@@ -51003,8 +48778,7 @@
/area/library)
"bZT" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/item/radio/intercom{
dir = 8;
@@ -51094,7 +48868,7 @@
/obj/machinery/dye_generator,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "barber"
@@ -51166,13 +48940,13 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"can" = (
+/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 = 5
},
@@ -51186,8 +48960,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -51241,8 +49014,7 @@
pixel_x = 28
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -51305,7 +49077,7 @@
/area/crew_quarters/courtroom)
"caC" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -51399,8 +49171,7 @@
/area/magistrateoffice)
"caN" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -51519,7 +49290,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"
},
@@ -51530,13 +49303,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");
@@ -51604,11 +49378,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{
@@ -51651,11 +49423,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{
@@ -51682,6 +49452,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"
},
@@ -51698,13 +49469,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;
@@ -51721,6 +49490,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 = "yellowfull"
},
@@ -51730,36 +49505,37 @@
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/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/engine/engineering)
"cbr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- 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{
- 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
- },
+/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
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
@@ -51769,9 +49545,6 @@
/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";
@@ -51781,9 +49554,6 @@
/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"
@@ -51795,9 +49565,6 @@
/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"
@@ -51809,9 +49576,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbx" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
@@ -51832,7 +49596,7 @@
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cbz" = (
/obj/machinery/suit_storage_unit/captain,
/obj/machinery/light{
@@ -51843,30 +49607,13 @@
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;
@@ -51883,7 +49630,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cbF" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -51907,24 +49654,36 @@
},
/area/library)
"cbH" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- 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{
- 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
+/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
@@ -51947,9 +49706,6 @@
},
/area/library)
"cbL" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -51976,9 +49732,6 @@
},
/area/library)
"cbO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -52003,14 +49756,16 @@
/turf/simulated/floor/plating,
/area/hallway/primary/central)
"cbR" = (
+/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/south,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cbS" = (
@@ -52063,8 +49818,7 @@
"cbV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -52171,15 +49925,15 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"cci" = (
+/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/structure/chair/comfy/brown{
dir = 8
},
@@ -52189,15 +49943,15 @@
/turf/simulated/floor/carpet/black,
/area/crew_quarters/captain/bedroom)
"ccj" = (
+/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_scrubber/on{
dir = 1
},
@@ -52206,6 +49960,10 @@
},
/area/crew_quarters/captain/bedroom)
"cck" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -52218,10 +49976,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -52408,8 +50162,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -52473,7 +50226,7 @@
"ccC" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/structure/filingcabinet/security,
/turf/simulated/floor/plasteel{
@@ -52613,7 +50366,9 @@
},
/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"
},
@@ -52653,6 +50408,7 @@
pixel_x = -32
},
/obj/effect/decal/warning_stripes/southwest,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdf" = (
@@ -52671,19 +50427,17 @@
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
},
@@ -52691,19 +50445,14 @@
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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -52713,7 +50462,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdl" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -52723,22 +50471,17 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cdm" = (
-/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/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
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -52756,11 +50499,6 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cdo" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -52792,9 +50530,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;
@@ -52814,45 +50549,7 @@
},
/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{
@@ -52863,18 +50560,17 @@
},
/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
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -52893,7 +50589,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"
@@ -52918,8 +50613,7 @@
/area/crew_quarters/heads/hop)
"cdG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
@@ -53084,20 +50778,20 @@
"cdV" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/captain/bedroom)
"cdW" = (
+/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{
@@ -53252,16 +50946,16 @@
},
/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{
@@ -53444,47 +51138,31 @@
/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
- },
-/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{
+/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
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -53499,19 +51177,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"
@@ -53523,18 +51203,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"
@@ -53553,24 +51251,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" = (
@@ -53579,9 +51289,6 @@
/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{
@@ -53649,7 +51356,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;
@@ -53657,7 +51364,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -53665,17 +51371,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"
@@ -53685,27 +51385,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_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -53751,11 +51438,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{
@@ -53796,7 +51491,6 @@
},
/area/library)
"cfB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small,
/obj/structure/closet/radiation,
/obj/machinery/firealarm{
@@ -53947,13 +51641,13 @@
},
/area/blueshield)
"cfQ" = (
+/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/command{
id_tag = "captainofficedoor";
@@ -54057,13 +51751,13 @@
},
/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{
@@ -54079,7 +51773,7 @@
"cgg" = (
/obj/structure/closet/secure_closet,
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/structure/window/reinforced{
dir = 8
@@ -54107,7 +51801,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -54115,6 +51809,10 @@
/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
@@ -54127,10 +51825,6 @@
d2 = 4;
icon_state = "0-4"
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -54158,8 +51852,7 @@
/area/magistrateoffice)
"cgl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
@@ -54168,8 +51861,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -54238,6 +51930,11 @@
/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" = (
@@ -54250,12 +51947,9 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"cgC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
@@ -54304,7 +51998,7 @@
},
/area/hallway/primary/central)
"cgG" = (
-/obj/effect/spawner/window/reinforced,
+/obj/effect/spawner/window/reinforced/plasma,
/turf/simulated/floor/plating,
/area/engine/engineering)
"cgH" = (
@@ -54375,6 +52069,7 @@
},
/area/engine/engineering)
"cgP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cgQ" = (
@@ -54382,19 +52077,6 @@
/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{
@@ -54405,27 +52087,6 @@
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,
@@ -54445,31 +52106,26 @@
},
/area/library)
"cgY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/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
- },
+/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{
@@ -54478,10 +52134,7 @@
},
/area/hallway/primary/port)
"chc" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -54501,9 +52154,6 @@
"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"
@@ -54640,22 +52290,25 @@
/turf/simulated/wall/rust,
/area/teleporter)
"chw" = (
+/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"chx" = (
+/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
},
@@ -54666,16 +52319,16 @@
/turf/simulated/floor/plating,
/area/teleporter)
"chy" = (
+/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
},
@@ -54696,16 +52349,9 @@
},
/turf/simulated/floor/plasteel,
/area/teleporter)
-"chB" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plasteel{
- icon_state = "bluecorner"
- },
-/area/hallway/primary/central)
"chC" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -54727,16 +52373,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;
@@ -54797,10 +52443,6 @@
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/item/pen,
-/obj/machinery/requests_console{
- name = "Detective Requests Console";
- pixel_y = -30
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -54812,13 +52454,13 @@
},
/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{
@@ -54892,31 +52534,13 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101;
- on = 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
- },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -54928,28 +52552,26 @@
},
/area/tcommsat/chamber)
"chX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/tcommsat/chamber)
"cia" = (
+/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/engineering/glass{
name = "Engineering";
req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cib" = (
@@ -54964,13 +52586,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;
@@ -54982,6 +52600,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" = (
@@ -55070,63 +52689,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
@@ -55139,47 +52730,37 @@
},
/area/library)
"civ" = (
+/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{
- 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"
},
@@ -55252,6 +52833,10 @@
},
/area/ntrep)
"ciH" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55260,21 +52845,21 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "NT Representative's Office";
dir = 1
},
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/ntrep)
"ciI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -55298,10 +52883,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -55369,6 +52950,10 @@
/turf/simulated/floor/plating,
/area/blueshield)
"ciO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -55392,15 +52977,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
/area/blueshield)
"ciP" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -55409,16 +52994,12 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/camera{
c_tag = "Blueshield's Office";
dir = 1
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -55456,13 +53037,13 @@
/turf/simulated/wall,
/area/crew_quarters/captain/bedroom)
"ciU" = (
+/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 = "Teleporter Maintenance";
@@ -55517,8 +53098,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -55580,8 +53160,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -55628,13 +53207,13 @@
},
/area/crew_quarters/courtroom)
"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";
@@ -55642,11 +53221,8 @@
},
/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
- },
/obj/structure/transit_tube{
icon_state = "D-NE"
},
@@ -55654,6 +53230,12 @@
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" = (
@@ -55663,7 +53245,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cjn" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
@@ -55673,20 +53255,20 @@
/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)
@@ -55715,8 +53297,18 @@
/area/security/range)
"cju" = (
/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" = (
@@ -55748,6 +53340,12 @@
"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" = (
@@ -55755,17 +53353,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,
@@ -55784,17 +53400,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;
@@ -55824,7 +53436,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cjN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -55854,13 +53465,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;
@@ -55911,93 +53518,33 @@
"cjV" = (
/obj/machinery/shieldgen,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cjW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/obj/machinery/door/airlock/maintenance,
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cjY" = (
+/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,
/area/teleporter)
-"cjZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/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
- },
-/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
- },
-/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;
@@ -56021,11 +53568,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"ckf" = (
/obj/structure/cable{
d1 = 4;
@@ -56033,29 +53577,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
+/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;
@@ -56063,23 +53599,26 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
},
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
},
-/area/library)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
"ckj" = (
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -56092,12 +53631,18 @@
},
/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/structure/extinguisher_cabinet{
pixel_x = 26
@@ -56129,13 +53674,13 @@
},
/area/crew_quarters/heads/hop)
"ckq" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"ckr" = (
@@ -56163,6 +53708,7 @@
/turf/simulated/floor/plating,
/area/ntrep)
"cku" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -56174,7 +53720,6 @@
name = "NT Representative's Office";
req_access_txt = "73"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -56186,6 +53731,7 @@
},
/area/bridge/meeting_room)
"ckw" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -56197,7 +53743,6 @@
name = "Blueshield's Office";
req_access_txt = "67"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -56226,14 +53771,14 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"ckB" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -56303,15 +53848,15 @@
},
/area/hallway/primary/central)
"ckI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -56334,8 +53879,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -56395,46 +53939,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
- },
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"ckU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -56446,9 +53993,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -56456,17 +54000,17 @@
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
},
@@ -56477,17 +54021,17 @@
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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -56495,17 +54039,17 @@
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
},
@@ -56516,17 +54060,17 @@
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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -56535,8 +54079,12 @@
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;
@@ -56552,16 +54100,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cla" = (
/obj/structure/cable{
d1 = 4;
@@ -56580,7 +54123,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/security/range)
+/area/maintenance/starboard2)
"clb" = (
/obj/structure/cable{
d1 = 4;
@@ -56634,8 +54177,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
@@ -56703,8 +54245,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" = (
@@ -56722,17 +54265,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,
@@ -56750,13 +54289,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";
@@ -56789,10 +54324,6 @@
/turf/simulated/wall/r_wall/rust,
/area/engine/engine_smes)
"clx" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/light/small{
dir = 8
},
@@ -56800,7 +54331,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cly" = (
/obj/structure/cable{
d1 = 1;
@@ -56808,28 +54339,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;
@@ -56837,10 +54371,8 @@
icon_state = "1-2";
tag = ""
},
-/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{
icon_state = "grimy"
},
@@ -56881,6 +54413,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"
},
@@ -56905,7 +54439,6 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -56952,13 +54485,13 @@
},
/area/crew_quarters/heads/hop)
"clM" = (
+/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
},
@@ -56978,8 +54511,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/carpet,
@@ -56997,13 +54529,13 @@
},
/area/crew_quarters/heads/hop)
"clQ" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -57062,13 +54594,13 @@
},
/area/bridge/meeting_room)
"clV" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -57100,15 +54632,15 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"clZ" = (
+/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 = 4
},
@@ -57119,16 +54651,16 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"cma" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -57138,6 +54670,10 @@
/turf/simulated/floor/plasteel,
/area/teleporter)
"cmb" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -57149,30 +54685,25 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/turf/simulated/floor/plasteel,
/area/teleporter)
"cmc" = (
+/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/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/teleporter)
@@ -57251,15 +54782,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{
@@ -57267,46 +54798,36 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmq" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cmr" = (
/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)
"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)
"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" = (
@@ -57321,6 +54842,13 @@
},
/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" = (
@@ -57363,7 +54891,7 @@
/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,
@@ -57574,20 +55102,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;
@@ -57620,6 +55134,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"
},
@@ -57643,6 +55158,8 @@
/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" = (
@@ -57651,7 +55168,6 @@
/obj/machinery/newscaster{
pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -57670,16 +55186,16 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
"cnq" = (
+/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
- },
/turf/simulated/floor/plasteel{
icon_state = "wood"
},
@@ -57724,8 +55240,7 @@
"cnw" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -57781,8 +55296,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -57795,7 +55309,7 @@
/obj/machinery/light,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/southwestcorner,
/turf/simulated/floor/plasteel,
@@ -57822,13 +55336,16 @@
/turf/simulated/floor/plating,
/area/teleporter)
"cnH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/transit_tube{
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)
"cnJ" = (
@@ -57882,9 +55399,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -57896,18 +55410,18 @@
/turf/simulated/wall,
/area/crew_quarters/locker)
"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
@@ -57931,29 +55445,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" = (
/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,
@@ -57988,7 +55512,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;
@@ -58034,13 +55557,16 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"coi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/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" = (
@@ -58053,15 +55579,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
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -58071,9 +55594,6 @@
/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"
@@ -58084,22 +55604,7 @@
/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,
@@ -58120,27 +55625,17 @@
/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
- },
/obj/machinery/field/generator{
anchored = 1
},
@@ -58178,9 +55673,8 @@
},
/area/library)
"coy" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/carpet,
/area/library)
@@ -58189,7 +55683,6 @@
pixel_x = 32
},
/obj/machinery/libraryscanner,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -58287,7 +55780,7 @@
/obj/item/storage/fancy/donut_box,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -58348,13 +55841,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"
},
@@ -58392,22 +55885,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,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"coW" = (
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -58426,14 +55904,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{
@@ -58441,12 +55919,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{
@@ -58457,21 +55936,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"
},
@@ -58481,6 +55963,12 @@
/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"
},
@@ -58511,7 +55999,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;
@@ -58553,13 +56041,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;
@@ -58595,7 +56079,6 @@
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cps" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -58604,6 +56087,12 @@
/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"
},
@@ -58617,16 +56106,18 @@
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
+ },
/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
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -58637,20 +56128,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" = (
@@ -58660,11 +56160,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" = (
@@ -58675,27 +56187,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
@@ -58706,9 +56223,6 @@
},
/area/engine/engine_smes)
"cpC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -58716,9 +56230,6 @@
},
/area/engine/engine_smes)
"cpD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light{
dir = 4
},
@@ -58731,35 +56242,19 @@
},
/area/engine/engine_smes)
"cpE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/engine/engine_smes)
-"cpF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
+/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
@@ -58774,17 +56269,17 @@
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,
@@ -58802,7 +56297,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"
},
@@ -58835,9 +56329,6 @@
/turf/simulated/floor/plasteel,
/area/hallway/primary/central)
"cpP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
@@ -58955,16 +56446,15 @@
},
/area/bridge/meeting_room)
"cpY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- 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/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -58972,6 +56462,9 @@
},
/area/bridge/meeting_room)
"cqb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -58979,9 +56472,6 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -58989,10 +56479,10 @@
},
/area/bridge/meeting_room)
"cqc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/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{
@@ -59004,13 +56494,13 @@
},
/area/bridge/meeting_room)
"cqd" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/structure/disposalpipe/junction{
dir = 4;
icon_state = "pipe-j2"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -59020,15 +56510,15 @@
},
/area/bridge/meeting_room)
"cqe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_y = 32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -59038,6 +56528,9 @@
},
/area/bridge/meeting_room)
"cqf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -59047,9 +56540,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -59059,6 +56549,9 @@
},
/area/bridge/meeting_room)
"cqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -59068,9 +56561,6 @@
name = "HIGH VOLTAGE";
pixel_y = 32
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -59080,10 +56570,10 @@
},
/area/bridge/meeting_room)
"cqh" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -59093,15 +56583,11 @@
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{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/warning_stripes/northeastcorner,
@@ -59114,16 +56600,15 @@
},
/area/bridge/meeting_room)
"cqk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -59131,10 +56616,10 @@
},
/area/bridge/meeting_room)
"cql" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/warning_stripes/north,
@@ -59155,10 +56640,10 @@
},
/area/hallway/primary/central)
"cqn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/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{
@@ -59170,6 +56655,9 @@
},
/area/hallway/primary/central)
"cqo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -59179,9 +56667,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -59191,17 +56676,15 @@
},
/area/hallway/primary/central)
"cqp" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/structure/disposalpipe/junction{
dir = 1;
icon_state = "pipe-j2"
},
+/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{
icon_state = "neutralcorner"
@@ -59257,13 +56740,13 @@
},
/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
},
@@ -59296,9 +56779,8 @@
},
/area/crew_quarters/locker)
"cqy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/manifold/hidden/blue{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -59306,7 +56788,7 @@
},
/area/crew_quarters/locker)
"cqz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/atmospherics/pipe/simple/hidden/blue{
dir = 9
},
/turf/simulated/floor/plasteel{
@@ -59315,9 +56797,8 @@
},
/area/crew_quarters/locker)
"cqA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -59325,7 +56806,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{
@@ -59337,34 +56818,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
},
/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
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqF" = (
/obj/structure/cable{
d1 = 1;
@@ -59381,7 +56861,7 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cqG" = (
/obj/structure/cable{
d1 = 4;
@@ -59389,27 +56869,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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,
@@ -59418,10 +56886,6 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -59437,9 +56901,6 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -59457,9 +56918,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,
@@ -59486,18 +56944,10 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cqV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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;
@@ -59507,30 +56957,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
- },
-/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
- },
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
"cra" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
id_tag = "engstorage";
@@ -59540,19 +56981,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"crb" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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;
@@ -59568,10 +56999,10 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cre" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/decal/warning_stripes/northwestcorner,
@@ -59600,27 +57031,6 @@
/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{
@@ -59675,7 +57085,6 @@
},
/obj/item/clipboard,
/obj/item/toy/figure/crew/librarian,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -59711,16 +57120,6 @@
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)
"cru" = (
/obj/structure/cable{
d1 = 1;
@@ -59729,8 +57128,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -60046,13 +57444,13 @@
},
/area/bridge/meeting_room)
"crQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -60098,8 +57496,7 @@
"crT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
@@ -60107,13 +57504,16 @@
},
/area/hallway/primary/central)
"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"
@@ -60133,7 +57533,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;
@@ -60141,19 +57541,13 @@
},
/area/crew_quarters/locker)
"crZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
+/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"
@@ -60178,20 +57572,17 @@
},
/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{
@@ -60201,7 +57592,7 @@
/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,
@@ -60210,12 +57601,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,
@@ -60224,7 +57615,7 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"csi" = (
/turf/simulated/wall,
/area/crew_quarters/fitness)
@@ -60292,11 +57683,14 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"csr" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/transit_tube,
-/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/space,
/area/space/nearstation)
"css" = (
@@ -60349,13 +57743,16 @@
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"csy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/transit_tube{
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" = (
@@ -60400,33 +57797,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{
@@ -60442,27 +57822,41 @@
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)
"csL" = (
+/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
},
@@ -60490,8 +57884,7 @@
/area/bridge/meeting_room)
"csO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/light{
dir = 8
@@ -60561,8 +57954,7 @@
/area/bridge/meeting_room)
"csU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/machinery/light{
dir = 4
@@ -60624,10 +58016,7 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
@@ -60636,18 +58025,12 @@
/area/hallway/primary/central)
"ctc" = (
/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)
"ctd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -60657,28 +58040,22 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/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 = "neutral"
},
/area/hallway/primary/central)
-"ctg" = (
-/obj/structure/disposalpipe/segment{
+"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 = 1;
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cti" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -60688,9 +58065,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -60702,37 +58076,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
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"ctm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- 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"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
-/area/crew_quarters/locker)
+/area/medical/research)
"ctn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Civilian"
@@ -60743,9 +58110,6 @@
},
/area/crew_quarters/locker)
"cto" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table,
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
@@ -60754,44 +58118,38 @@
},
/area/crew_quarters/locker)
"ctp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/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"
@@ -60811,20 +58169,14 @@
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" = (
@@ -60925,7 +58277,6 @@
},
/area/engine/engineering)
"ctG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/status_display{
pixel_x = 32
},
@@ -60939,9 +58290,6 @@
},
/area/library)
"ctI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/transit_tube{
icon_state = "D-SW"
},
@@ -60949,6 +58297,12 @@
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" = (
@@ -61001,7 +58355,6 @@
/area/library)
"ctP" = (
/obj/structure/bookcase,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -61034,20 +58387,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
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Library"
@@ -61067,13 +58408,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"
},
@@ -61280,7 +58624,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -25
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -61288,8 +58632,12 @@
},
/area/hallway/primary/central)
"cuo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/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"
@@ -61306,21 +58654,9 @@
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"
@@ -61338,9 +58674,11 @@
/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;
@@ -61349,6 +58687,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"
@@ -61356,6 +58700,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" = (
@@ -61365,6 +58715,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"
@@ -61373,6 +58729,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"
@@ -61382,25 +58744,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
- },
+/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"
@@ -61408,34 +58781,34 @@
/area/crew_quarters/locker)
"cuC" = (
/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
+ },
+/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{
icon_state = "neutralcorner"
},
/area/crew_quarters/locker)
"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
},
@@ -61443,17 +58816,17 @@
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
},
@@ -61462,17 +58835,17 @@
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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -61480,17 +58853,17 @@
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
},
@@ -61499,7 +58872,7 @@
dir = 4
},
/turf/simulated/floor/plasteel,
-/area/crew_quarters/fitness)
+/area/maintenance/starboard2)
"cuJ" = (
/obj/structure/cable{
d1 = 1;
@@ -61507,22 +58880,21 @@
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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -61535,16 +58907,16 @@
},
/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
},
@@ -61639,10 +59011,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_x = 24
},
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
@@ -61704,17 +59075,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;
@@ -61727,7 +59088,7 @@
dir = 1;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cve" = (
/obj/structure/cable{
d1 = 4;
@@ -61743,17 +59104,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;
@@ -61772,10 +59123,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{
@@ -61788,50 +59138,54 @@
},
/area/library)
"cvi" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/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,
@@ -61844,6 +59198,9 @@
/obj/machinery/newscaster{
pixel_x = -32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -61852,7 +59209,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"
},
@@ -61862,6 +59221,12 @@
/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"
},
@@ -61870,9 +59235,8 @@
/obj/machinery/newscaster{
pixel_x = 32
},
-/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 = "dark"
@@ -62104,27 +59468,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{
- 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{
- 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"
},
@@ -62134,9 +59502,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;
@@ -62147,12 +59512,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -62165,18 +59527,15 @@
/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"
@@ -62186,35 +59545,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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"
@@ -62224,10 +59564,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/obj/effect/landmark{
name = "lightsout"
},
@@ -62238,16 +59574,14 @@
/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
@@ -62262,69 +59596,62 @@
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)
-"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 = 8;
- initialize_directions = 11
- },
-/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
- },
+/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
+/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{
@@ -62408,10 +59735,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;
@@ -62419,9 +59742,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cwE" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -62453,9 +59775,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/table/wood,
/obj/item/paicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -62464,7 +59787,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/wood,
/obj/item/folder,
/obj/item/pen,
@@ -62515,7 +59837,7 @@
"cwM" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
@@ -62529,7 +59851,6 @@
/obj/machinery/status_display{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -62611,8 +59932,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 10
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -62719,9 +60039,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{
@@ -62841,14 +60158,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,
@@ -62860,6 +60174,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"
@@ -62877,46 +60192,52 @@
},
/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{
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
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/crew_quarters/fitness)
"cxy" = (
-/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{
@@ -62924,18 +60245,13 @@
icon_state = "neutral"
},
/area/crew_quarters/fitness)
-"cxz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plasteel{
- icon_state = "dark"
- },
-/area/crew_quarters/fitness)
"cxA" = (
/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"
},
@@ -62944,7 +60260,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -62954,18 +60273,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,
@@ -63026,9 +60356,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/engine/engine_smes)
"cxL" = (
@@ -63040,18 +60367,12 @@
/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"
},
@@ -63072,7 +60393,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;
@@ -63088,7 +60409,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/item/clothing/shoes/magboots{
pixel_x = 4;
@@ -63104,7 +60425,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{
@@ -63112,16 +60433,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"
},
@@ -63130,25 +60450,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_y = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -63157,12 +60487,18 @@
/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/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -63177,9 +60513,12 @@
},
/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{
@@ -63325,8 +60664,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63419,10 +60757,7 @@
},
/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
},
@@ -63431,9 +60766,6 @@
},
/area/crew_quarters/locker/locker_toilet)
"cyD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/shower{
dir = 8
},
@@ -63442,32 +60774,28 @@
},
/area/crew_quarters/locker/locker_toilet)
"cyE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
/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
+/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
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -63491,9 +60819,6 @@
/turf/simulated/floor/plasteel,
/area/gateway)
"cyJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/urinal{
pixel_y = 28
},
@@ -63511,9 +60836,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/closet/wardrobe/white,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63527,9 +60849,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -63542,9 +60861,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/chair/stool,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63558,9 +60874,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table,
/obj/item/folder,
/obj/item/pen,
@@ -63576,11 +60889,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table,
/obj/item/paicard,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -63593,9 +60906,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -63615,10 +60925,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Civilian"
@@ -63629,16 +60935,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
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -63649,10 +60954,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -63773,13 +61074,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{
@@ -63788,14 +61089,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"
@@ -63812,13 +61117,13 @@
/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
},
@@ -63883,7 +61188,7 @@
/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{
@@ -63893,7 +61198,7 @@
/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,
@@ -63943,6 +61248,12 @@
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" = (
@@ -63960,10 +61271,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"
@@ -63974,7 +61291,7 @@
dir = 1;
icon_state = "yellow"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"czw" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -63991,12 +61308,11 @@
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{
@@ -64008,22 +61324,7 @@
icon_state = "dark"
},
/area/library)
-"czz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/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
},
@@ -64032,55 +61333,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
- },
-/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
@@ -64284,9 +61559,6 @@
},
/area/assembly/showroom)
"czU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/urinal{
pixel_y = 28
},
@@ -64373,6 +61645,12 @@
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"
},
@@ -64381,13 +61659,25 @@
/obj/machinery/door/airlock{
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)
"cAf" = (
/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" = (
@@ -64397,10 +61687,21 @@
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" = (
@@ -64430,14 +61731,12 @@
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{
icon_state = "neutralcorner"
@@ -64500,7 +61799,6 @@
},
/area/crew_quarters/fitness)
"cAv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
@@ -64537,24 +61835,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
- },
/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"
@@ -64568,6 +61860,12 @@
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" = (
@@ -64577,17 +61875,26 @@
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
- },
/obj/effect/landmark{
name = "lightsout"
},
@@ -64600,7 +61907,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,
@@ -64610,30 +61917,19 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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;
@@ -64641,9 +61937,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"
},
@@ -64667,10 +61961,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/warning_stripes/east,
/turf/simulated/floor/plasteel,
/area/engine/engineering)
@@ -64680,17 +61970,10 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
@@ -64698,11 +61981,8 @@
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -64710,7 +61990,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAR" = (
/obj/structure/cable{
d2 = 8;
@@ -64737,17 +62017,13 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cAT" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/item/storage/fancy/donut_box,
/turf/simulated/floor/plasteel{
@@ -64755,9 +62031,6 @@
},
/area/library)
"cAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
dir = 1;
@@ -64768,9 +62041,6 @@
},
/area/library)
"cAV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = -32
},
@@ -64787,7 +62057,6 @@
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -64797,9 +62066,6 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/filingcabinet,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -64809,9 +62075,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -64820,16 +62083,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"
@@ -64839,14 +62092,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{
@@ -64857,7 +62103,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cBe" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty{
@@ -64894,9 +62140,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass,
/turf/simulated/floor/plasteel{
@@ -65112,25 +62355,24 @@
/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)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cBI" = (
/obj/structure/cable{
d1 = 2;
@@ -65139,9 +62381,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" = (
@@ -65156,9 +62396,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)
@@ -65169,9 +62406,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" = (
@@ -65181,7 +62415,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" = (
@@ -65191,9 +62427,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)
@@ -65204,9 +62437,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock{
name = "Unisex Restrooms"
},
@@ -65218,27 +62448,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
@@ -65248,9 +62469,6 @@
},
/area/crew_quarters/locker)
"cBR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -65262,10 +62480,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -65275,6 +62489,8 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -65358,14 +62574,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
- },
/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" = (
@@ -65403,7 +62627,7 @@
/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{
id_tag = "engineering_east_airlock";
@@ -65428,11 +62652,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{
@@ -65446,11 +62668,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{
@@ -65473,74 +62693,66 @@
},
/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/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/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
},
/area/engine/engineering)
"cCp" = (
+/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/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "yellowfull"
},
/area/engine/engineering)
"cCq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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;
@@ -65548,9 +62760,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;
@@ -65563,7 +62774,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,
@@ -65580,33 +62790,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{
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,
@@ -65731,19 +62940,6 @@
/obj/item/folder/red,
/turf/simulated/floor/carpet,
/area/assembly/showroom)
-"cCU" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/obj/structure/sink{
- dir = 8;
- 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,
@@ -65765,6 +62961,12 @@
"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"
@@ -65817,6 +63019,7 @@
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" = (
@@ -65864,19 +63067,19 @@
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"
},
@@ -65970,6 +63173,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"
},
@@ -65984,7 +63190,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/engine/engineering)
"cDB" = (
/obj/structure/rack,
@@ -66011,9 +63217,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
},
@@ -66036,11 +63239,13 @@
/area/engine/engineering)
"cDF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ 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;
@@ -66057,31 +63262,24 @@
/turf/simulated/floor/plating,
/area/engine/engineering)
"cDH" = (
+/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
- },
/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/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,
@@ -66117,7 +63315,7 @@
/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
@@ -66130,41 +63328,40 @@
/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/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,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66174,7 +63371,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66186,7 +63383,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cDW" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
@@ -66194,33 +63391,31 @@
name = "Library Junction";
sortType = 17
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/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)
+/area/maintenance/port)
"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{
@@ -66232,7 +63427,7 @@
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEb" = (
/obj/item/twohanded/required/kirbyplants,
/obj/item/radio/intercom{
@@ -66289,7 +63484,6 @@
/turf/simulated/floor/plating,
/area/assembly/showroom)
"cEj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 8;
pixel_x = -12;
@@ -66321,13 +63515,7 @@
},
/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)
@@ -66421,9 +63609,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)
@@ -66437,9 +63622,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{
@@ -66449,52 +63640,21 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"cEE" = (
+/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/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)
+/area/maintenance/port)
"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
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
-"cEJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEK" = (
/obj/structure/cable{
d1 = 4;
@@ -66535,7 +63695,7 @@
/obj/structure/table/reinforced,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cEP" = (
/obj/effect/decal/warning_stripes/south,
/obj/machinery/door/poddoor/shutters{
@@ -66662,10 +63822,6 @@
/area/crew_quarters/locker/locker_toilet)
"cFc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Central Ring Hallway East";
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
@@ -66673,16 +63829,17 @@
},
/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)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitebluefull"
+ },
+/area/medical/medbay)
"cFf" = (
/obj/effect/decal/warning_stripes/northeastcorner,
/turf/simulated/floor/plasteel{
@@ -66731,7 +63888,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -66744,23 +63900,21 @@
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"
@@ -66781,9 +63935,7 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -66802,9 +63954,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutralcorner"
@@ -66817,29 +63966,11 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutralcorner"
- },
-/area/crew_quarters/sleep)
"cFu" = (
/obj/structure/cable{
d1 = 4;
@@ -66847,9 +63978,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Dorm Hallway Starboard"
},
@@ -66865,9 +63993,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -66880,9 +64005,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
@@ -66895,15 +64017,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -66916,12 +64036,8 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -66936,27 +64052,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
- },
-/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"
@@ -66966,7 +64084,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutralcorner"
@@ -67014,10 +64131,8 @@
/turf/simulated/floor/plasteel,
/area/crew_quarters/fitness)
"cFJ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/machinery/status_display{
layer = 4;
@@ -67039,15 +64154,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/maintenance{
name = "Library Maintenance";
req_access_txt = "12"
},
/turf/simulated/floor/plasteel,
-/area/library)
+/area/maintenance/port)
"cFN" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
id_tag = "sw_maint_airlock";
@@ -67061,23 +64173,21 @@
id_tag = "sw_maint_sensor";
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
- },
/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";
@@ -67087,62 +64197,70 @@
pixel_x = -24;
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;
@@ -67153,25 +64271,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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cFY" = (
/obj/structure/cable{
d1 = 4;
@@ -67179,43 +64286,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{
@@ -67233,16 +64312,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/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;
@@ -67256,72 +64337,87 @@
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/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGf" = (
+/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/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/fpmaint2)
+/area/maintenance/port)
"cGg" = (
+/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
- },
/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
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67334,50 +64430,59 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/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/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGi" = (
+/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
- },
/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)
"cGj" = (
+/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67389,53 +64494,60 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/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/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGl" = (
+/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGm" = (
+/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/light/small{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67447,14 +64559,13 @@
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,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGo" = (
/obj/structure/cable{
d1 = 4;
@@ -67462,12 +64573,15 @@
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,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGp" = (
/obj/structure/cable{
d1 = 4;
@@ -67478,8 +64592,11 @@
/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/port)
"cGq" = (
/obj/structure/cable{
d1 = 4;
@@ -67487,14 +64604,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/landmark{
name = "blobstart"
},
+/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/port)
"cGr" = (
/obj/structure/cable{
d1 = 4;
@@ -67502,9 +64622,12 @@
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/maintenance/fpmaint2)
+/area/maintenance/port)
"cGs" = (
/obj/structure/cable{
d1 = 4;
@@ -67512,16 +64635,16 @@
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,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGt" = (
/obj/structure/cable{
d1 = 4;
@@ -67529,14 +64652,21 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -67549,59 +64679,59 @@
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
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGv" = (
+/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/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ 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
+ name = "West Maintenance External Access"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cGx" = (
-/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/manifold/hidden/scrubbers{
- dir = 8;
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4;
initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -67714,65 +64844,47 @@
},
/area/hallway/primary/central)
"cGE" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/sortjunction{
dir = 1;
name = "Medbay Junction";
sortType = 13
},
-/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 = "neutralcorner"
- },
-/area/hallway/primary/central)
-"cGF" = (
/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/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "neutralcorner"
+ },
+/area/hallway/primary/central)
+"cGF" = (
/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
+ },
/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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
-"cGH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/wood,
/area/maintenance/starboard)
"cGI" = (
/obj/structure/disposalpipe/segment{
@@ -67781,7 +64893,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
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" = (
@@ -67791,7 +64912,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/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/maintenance/starboard)
"cGK" = (
@@ -67811,18 +64940,21 @@
},
/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
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -67833,6 +64965,9 @@
/obj/effect/landmark{
name = "blobstart"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -67843,6 +64978,9 @@
dir = 10
},
/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cGP" = (
@@ -67857,16 +64995,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;
@@ -67875,6 +65014,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"
@@ -67882,19 +65027,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"
@@ -67907,6 +65056,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"
@@ -67921,6 +65076,12 @@
dir = 4;
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"
@@ -67945,7 +65106,6 @@
},
/area/crew_quarters/fitness)
"cHa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -67968,39 +65128,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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cHg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cHh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHi" = (
/obj/structure/cable{
d1 = 1;
@@ -68008,29 +65144,26 @@
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
- },
/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
- },
/obj/machinery/light/small,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -68042,41 +65175,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
-"cHm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -68085,18 +65192,15 @@
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cHp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -68104,25 +65208,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
- },
/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;
@@ -68130,14 +65227,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;
@@ -68152,30 +65246,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;
@@ -68183,34 +65266,23 @@
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
- },
-/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/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -68247,7 +65319,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHF" = (
@@ -68263,7 +65335,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHG" = (
@@ -68280,7 +65352,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHH" = (
@@ -68300,7 +65372,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHI" = (
@@ -68308,22 +65380,21 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- 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{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"cHJ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/plasteel{
icon_state = "neutral"
@@ -68334,12 +65405,12 @@
dir = 4;
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{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "bluecorner"
},
@@ -68408,98 +65479,52 @@
dir = 8;
icon_state = "pipe-c"
},
-/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 = "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
+/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" = (
@@ -68513,18 +65538,12 @@
},
/area/crew_quarters/sleep)
"cIc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/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"
@@ -68535,9 +65554,6 @@
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -68546,8 +65562,8 @@
/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;
@@ -68558,7 +65574,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
@@ -68570,13 +65585,10 @@
},
/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{
name = "south bump";
pixel_y = -24
@@ -68594,9 +65606,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -68605,9 +65614,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -68616,9 +65622,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -68628,9 +65631,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/door/airlock/glass{
name = "Cabin"
},
@@ -68640,66 +65640,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"
- },
/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{
@@ -68715,26 +65718,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{
+/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)
@@ -68746,20 +65746,26 @@
/turf/simulated/wall,
/area/maintenance/electrical)
"cIz" = (
+/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/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/maintenance/fpmaint2)
+/area/maintenance/port)
"cIA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/wall,
@@ -68777,21 +65783,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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"cIF" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cIG" = (
/obj/structure/cable{
d1 = 1;
@@ -68799,14 +65790,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)
@@ -68867,22 +65857,15 @@
},
/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/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel{
@@ -68906,8 +65889,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" = (
@@ -68943,9 +65926,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;
@@ -69015,8 +65995,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,
@@ -69027,7 +66008,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"cJo" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -69039,12 +66020,16 @@
/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{
- icon_state = "neutralcorner"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJs" = (
@@ -69053,7 +66038,7 @@
},
/obj/structure/closet/secure_closet/medical3,
/turf/simulated/floor/plasteel{
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cJt" = (
@@ -69063,17 +66048,16 @@
},
/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_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" = (
@@ -69081,16 +66065,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"
@@ -69101,6 +66082,7 @@
dir = 4;
initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cJy" = (
@@ -69140,9 +66122,8 @@
},
/area/crew_quarters/fitness)
"cJD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -69204,12 +66185,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{
@@ -69218,14 +66199,6 @@
},
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
-"cJN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"cJO" = (
/obj/machinery/light/small{
dir = 4
@@ -69234,22 +66207,11 @@
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
- },
-/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,
@@ -69267,7 +66229,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,
@@ -69292,16 +66254,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
@@ -69330,67 +66294,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
- },
-/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;
@@ -69413,7 +66347,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,
@@ -69434,7 +66370,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
dir = 8
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/toxins/xenobiology)
"cKn" = (
/mob/living/simple_animal/slime,
@@ -69444,13 +66382,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;
@@ -69468,21 +66400,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,
@@ -69595,23 +66539,8 @@
/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{
icon_state = "bluecorner"
},
@@ -69657,10 +66586,10 @@
},
/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"
@@ -69720,23 +66649,19 @@
/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;
@@ -69753,8 +66678,7 @@
network = list("SS13","Medical")
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cLe" = (
@@ -69770,9 +66694,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
@@ -69785,45 +66706,35 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
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";
@@ -69832,6 +66743,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;
@@ -69843,31 +66758,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
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"cLk" = (
/obj/structure/cable{
d1 = 4;
@@ -69879,6 +66772,9 @@
dir = 5
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cLl" = (
@@ -69894,18 +66790,21 @@
/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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -69914,13 +66813,17 @@
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" = (
@@ -69978,11 +66881,12 @@
},
/area/crew_quarters/fitness)
"cLv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- 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,
@@ -70005,19 +66909,23 @@
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;
@@ -70038,7 +66946,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{
@@ -70086,21 +66994,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;
@@ -70141,19 +67049,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,
@@ -70200,15 +67109,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;
@@ -70222,16 +67131,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
@@ -70240,19 +67143,13 @@
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;
pixel_y = 28
@@ -70261,27 +67158,21 @@
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,
@@ -70299,8 +67190,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" = (
@@ -70312,14 +67209,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
@@ -70334,7 +67223,7 @@
},
/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/medical/research)
"cMk" = (
@@ -70347,8 +67236,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" = (
@@ -70383,13 +67280,13 @@
"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"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cMt" = (
@@ -70400,13 +67297,7 @@
},
/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"
@@ -70428,23 +67319,16 @@
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
},
+/obj/structure/closet/radiation,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cMB" = (
@@ -70467,13 +67351,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;
@@ -70485,65 +67368,35 @@
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
- },
/obj/structure/plasticflaps,
/turf/simulated/floor/plasteel,
/area/medical/medbay2)
"cMG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cMI" = (
/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"
},
/area/maintenance/starboard)
-"cMK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
- },
-/area/maintenance/starboard)
"cML" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
@@ -70589,7 +67442,6 @@
},
/area/crew_quarters/fitness)
"cMR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
@@ -70598,24 +67450,15 @@
},
/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
- },
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
@@ -70652,21 +67495,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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/electrical)
"cNc" = (
/obj/structure/cable{
d1 = 1;
@@ -70674,39 +67504,25 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/maintenance/electrical)
-"cNd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/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;
@@ -70714,20 +67530,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{
@@ -70766,7 +67580,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{
@@ -70776,7 +67592,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{
@@ -70810,7 +67628,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,
@@ -70833,12 +67653,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;
@@ -70850,12 +67667,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" = (
@@ -70871,12 +67688,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;
@@ -70900,12 +67714,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;
@@ -70967,50 +67778,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{
@@ -71023,9 +67815,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{
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNF" = (
@@ -71034,29 +67831,39 @@
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{
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNH" = (
-/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 = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNI" = (
@@ -71064,8 +67871,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 = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNJ" = (
@@ -71073,33 +67883,45 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/medical/research)
"cNK" = (
/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 = "whitepurplefull"
},
/area/medical/research)
"cNL" = (
/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 = "whitepurplecorner"
},
/area/medical/research)
"cNM" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/west,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/research)
"cNN" = (
@@ -71107,16 +67929,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/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
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -71124,23 +67947,34 @@
/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{
icon_state = "bluecorner"
},
/area/hallway/primary/aft)
"cNQ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/warning_stripes/east,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/decal/warning_stripes/east,
+/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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitebluecorner"
@@ -71150,6 +67984,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"
},
@@ -71158,58 +67995,81 @@
/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"
+ dir = 9;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cNU" = (
-/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{
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay)
-"cNV" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner"
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"cNV" = (
+/obj/structure/disposalpipe/segment,
+/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{
+ icon_state = "white"
},
/area/medical/medbay)
"cNW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cNX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
},
/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
+ dir = 10
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"cNZ" = (
@@ -71227,56 +68087,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;
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{
@@ -71287,34 +68129,27 @@
pixel_y = 5
},
/obj/item/storage/box/masks,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/gloves{
+ pixel_x = 5;
+ pixel_y = 5
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitebluecorner"
},
/area/medical/medbay)
"cOe" = (
-/obj/structure/table,
/obj/item/radio/intercom{
dir = 1;
pixel_y = 25
},
-/obj/item/storage/box/gloves{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/storage/box/beakers,
+/obj/structure/closet/secure_closet/medical1,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whiteblue"
},
/area/medical/medbay)
-"cOf" = (
-/obj/structure/closet/walllocker/emerglocker/north,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay)
"cOg" = (
/obj/effect/spawner/window/reinforced,
/turf/simulated/floor/plating,
@@ -71334,22 +68169,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"
@@ -71377,15 +68219,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;
@@ -71396,9 +68243,6 @@
/turf/space,
/area/space/nearstation)
"cOn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
@@ -71409,7 +68253,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cOp" = (
@@ -71516,6 +68359,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"
@@ -71530,6 +68376,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"
@@ -71585,7 +68437,9 @@
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{
@@ -71594,24 +68448,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{
@@ -71626,11 +68483,13 @@
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,
@@ -71647,26 +68506,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
- },
-/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
@@ -71676,7 +68531,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{
@@ -71692,7 +68550,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,
@@ -71701,7 +68562,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,
@@ -71715,7 +68579,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,
@@ -71723,7 +68590,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{
@@ -71732,20 +68602,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
+/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{
@@ -71756,23 +68617,22 @@
/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cPf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/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
+ dir = 6
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -71788,7 +68648,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/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"
@@ -71800,69 +68662,44 @@
/turf/simulated/floor/plasteel,
/area/maintenance/electrical)
"cPj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 4;
+ d1 = 2;
d2 = 8;
- icon_state = "4-8";
+ icon_state = "2-8";
tag = ""
},
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
+"cPk" = (
/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 = "red"
- },
-/area/security/checkpoint/science)
-"cPk" = (
-/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/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{
- icon_state = "redfull"
+ 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;
@@ -71871,103 +68708,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 = 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"
@@ -71979,10 +68783,6 @@
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{
icon_state = "bluecorner"
},
@@ -71991,56 +68791,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"
- },
-/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"
- },
-/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"
+ 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"
+ icon_state = "white"
},
/area/medical/medbay)
"cPF" = (
@@ -72048,33 +68823,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"
- },
-/area/medical/medbay)
-"cPG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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"
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cPI" = (
@@ -72082,25 +68840,17 @@
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"
+ 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{
icon_state = "whitebluecorner"
},
@@ -72123,9 +68873,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitebluecorner"
@@ -72136,84 +68883,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
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "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
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay)
+/turf/simulated/floor/plasteel,
+/area/medical/research)
"cPU" = (
/obj/structure/table/glass,
/obj/item/storage/firstaid/brute{
@@ -72230,20 +68938,16 @@
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{
@@ -72266,8 +68970,7 @@
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cPX" = (
@@ -72292,9 +68995,14 @@
/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/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
@@ -72302,28 +69010,27 @@
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"
},
/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
@@ -72347,6 +69054,7 @@
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cQe" = (
@@ -72434,7 +69142,6 @@
},
/area/crew_quarters/fitness)
"cQo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair{
dir = 4
},
@@ -72473,30 +69180,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
- },
/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;
@@ -72504,27 +69200,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{
+/obj/machinery/door/firedoor,
+/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"
+/obj/machinery/door/airlock/research{
+ name = "Research Break Room";
+ req_access_txt = "47"
},
-/turf/simulated/floor/plasteel,
-/area/security/checkpoint/science)
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/research)
"cQx" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -72564,6 +69251,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" = (
@@ -72609,7 +69298,9 @@
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{
@@ -72624,14 +69315,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
+/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{
@@ -72642,7 +69334,9 @@
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,
@@ -72682,7 +69376,16 @@
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,
@@ -72695,14 +69398,8 @@
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
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cQN" = (
@@ -72712,11 +69409,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQO" = (
@@ -72725,19 +69421,15 @@
dir = 1;
on = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitehall"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/toxins/xenobiology)
"cQQ" = (
@@ -72750,15 +69442,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
},
+/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" = (
@@ -72768,23 +69459,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -72798,73 +69474,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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
- },
-/area/medical/research)
"cQX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
-/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{
@@ -72874,18 +69547,25 @@
/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{
@@ -72896,16 +69576,15 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
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" = (
@@ -72932,7 +69611,8 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/medical/medbay)
"cRm" = (
@@ -72942,99 +69622,56 @@
},
/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"
},
/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"
},
/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{
@@ -73047,8 +69684,7 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "neutral"
+ icon_state = "whitebluefull"
},
/area/medical/medbay2)
"cRu" = (
@@ -73058,6 +69694,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 = "whiteblue"
},
@@ -73077,15 +69715,13 @@
/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
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Toilet"
@@ -73103,11 +69739,15 @@
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" = (
@@ -73126,6 +69766,7 @@
},
/area/crew_quarters/fitness)
"cRB" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -73137,7 +69778,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{
@@ -73146,17 +69786,22 @@
},
/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
@@ -73190,6 +69835,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" = (
@@ -73213,7 +69860,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/landmark{
name = "blobstart"
},
@@ -73221,7 +69867,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cRO" = (
/obj/structure/cable{
d1 = 1;
@@ -73230,7 +69876,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{
@@ -73244,19 +69892,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"
},
@@ -73271,7 +69916,9 @@
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{
@@ -73281,7 +69928,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{
@@ -73290,44 +69939,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
+ 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
+/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
- },
-/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"
},
@@ -73339,19 +69959,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" = (
@@ -73380,41 +69996,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;
- on = 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;
@@ -73422,9 +70029,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"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cSe" = (
@@ -73442,13 +70054,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" = (
@@ -73463,7 +70077,7 @@
/obj/machinery/status_display{
pixel_x = 32
},
-/turf/simulated/floor/greengrid,
+/turf/simulated/floor/plasteel,
/area/toxins/xenobiology)
"cSi" = (
/obj/machinery/light/small{
@@ -73478,46 +70092,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
+ 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{
- icon_state = "red"
- },
-/area/security/checkpoint/science)
+/area/medical/research)
"cSl" = (
/obj/machinery/light/small{
dir = 1
@@ -73543,15 +70125,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"
@@ -73621,13 +70196,6 @@
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"cSw" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
- },
-/area/hallway/primary/aft)
"cSx" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -73692,7 +70260,6 @@
},
/area/medical/medbay)
"cSE" = (
-/obj/structure/bed/roller,
/obj/machinery/light,
/obj/structure/sign/chemistry{
pixel_y = -32
@@ -73702,6 +70269,7 @@
dir = 1;
network = list("Medical","SS13")
},
+/obj/structure/bed/roller,
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -73721,74 +70289,79 @@
/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
- },
-/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
+/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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"
- },
-/area/medical/medbay)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/maintenance/starboardsolar)
"cSO" = (
/obj/structure/sign/greencross,
/turf/simulated/wall,
@@ -73810,6 +70383,8 @@
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"
},
@@ -73828,9 +70403,8 @@
},
/area/medical/medbay3)
"cSS" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -73856,7 +70430,6 @@
},
/area/medical/medbay3)
"cSU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
name = "Medbay Toilet";
req_access_txt = "5"
@@ -73932,16 +70505,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"
@@ -73950,7 +70521,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
@@ -73962,7 +70533,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,
@@ -74004,7 +70575,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small{
dir = 8
},
@@ -74012,7 +70582,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cTp" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -74025,6 +70595,9 @@
},
/area/toxins/xenobiology)
"cTq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
@@ -74033,9 +70606,6 @@
tag = ""
},
/obj/structure/cable,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/toxins/xenobiology)
"cTr" = (
@@ -74045,11 +70615,11 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -74064,7 +70634,9 @@
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{
@@ -74090,7 +70662,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{
@@ -74099,9 +70673,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{
@@ -74124,7 +70705,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,
@@ -74136,33 +70719,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" = (
@@ -74172,28 +70748,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";
@@ -74203,12 +70778,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"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cTE" = (
@@ -74218,12 +70792,18 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+/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" = (
@@ -74235,16 +70815,15 @@
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,
@@ -74257,7 +70836,9 @@
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,
@@ -74270,73 +70851,54 @@
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
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
},
/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{
- icon_state = "redfull"
+ 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
@@ -74345,49 +70907,48 @@
/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
},
@@ -74396,12 +70957,11 @@
},
/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
},
@@ -74414,13 +70974,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)
@@ -74440,29 +70997,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)
@@ -74493,10 +71042,9 @@
},
/area/medical/medbay)
"cUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/light{
dir = 8
@@ -74507,7 +71055,6 @@
},
/area/medical/medbay)
"cUf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera{
c_tag = "Medbay Entrance Hall";
dir = 8;
@@ -74519,57 +71066,27 @@
},
/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
},
/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
- },
-/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
},
@@ -74577,28 +71094,29 @@
dir = 8;
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
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 1;
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"
+ icon_state = "white"
},
/area/medical/medbay)
"cUl" = (
@@ -74610,8 +71128,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"
@@ -74634,7 +71152,6 @@
},
/area/medical/medbay3)
"cUp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -74667,12 +71184,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"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cUu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -74689,25 +71216,22 @@
dir = 8;
initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/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
},
@@ -74719,15 +71243,15 @@
},
/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
},
@@ -74738,15 +71262,15 @@
/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
},
@@ -74757,15 +71281,15 @@
/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
},
@@ -74778,34 +71302,33 @@
},
/area/maintenance/starboard)
"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
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/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
},
@@ -74815,15 +71338,15 @@
/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
},
@@ -74837,15 +71360,15 @@
},
/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
},
@@ -74854,17 +71377,17 @@
},
/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
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -74877,15 +71400,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{
@@ -74962,7 +71485,7 @@
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 9
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -74970,13 +71493,10 @@
},
/area/crew_quarters/fitness)
"cUM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- icon_state = "neutralcorner"
+ icon_state = "neutral"
},
-/area/crew_quarters/fitness)
+/area/maintenance/starboard)
"cUN" = (
/turf/simulated/floor/plasteel{
dir = 8;
@@ -74995,11 +71515,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,
@@ -75011,6 +71531,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" = (
@@ -75042,7 +71564,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,
@@ -75054,65 +71585,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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/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
- },
-/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
- },
/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{
@@ -75120,12 +71645,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"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cVg" = (
@@ -75135,12 +71662,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" = (
@@ -75152,79 +71681,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
},
/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{
@@ -75255,33 +71741,21 @@
/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
- },
/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" = (
@@ -75309,6 +71783,7 @@
},
/area/toxins/lab)
"cVv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurple"
@@ -75349,52 +71824,25 @@
/area/toxins/lab)
"cVz" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- 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
- },
-/turf/simulated/floor/plasteel{
- 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)
@@ -75415,8 +71863,8 @@
pixel_y = -3
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitegreencorner"
+ dir = 9;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cVF" = (
@@ -75425,7 +71873,7 @@
/obj/item/toy/figure/crew/chemist,
/turf/simulated/floor/plasteel{
dir = 1;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cVG" = (
@@ -75446,20 +71894,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;
@@ -75473,14 +71916,20 @@
"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{
@@ -75501,6 +71950,14 @@
/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"
@@ -75508,54 +71965,25 @@
/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"
},
/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{
- icon_state = "redfull"
- },
-/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;
@@ -75563,6 +71991,8 @@
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"
@@ -75575,6 +72005,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"
},
@@ -75587,15 +72022,15 @@
/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"
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cVW" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/machinery/newscaster{
pixel_x = -32
},
@@ -75604,33 +72039,21 @@
icon_state = "neutralcorner"
},
/area/medical/medbay3)
-"cVX" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- icon_state = "redbluefull"
- },
-/area/medical/medbay3)
"cVY" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
/area/medical/medbay3)
-"cVZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/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;
@@ -75638,7 +72061,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cWc" = (
@@ -75700,33 +72123,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
- },
/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
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -75734,54 +72147,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/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
- },
/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
- },
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
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;
@@ -75789,6 +72212,9 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -75796,26 +72222,25 @@
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
- },
/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
},
-/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "red"
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
},
-/area/security/checkpoint/science)
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurple"
+ },
+/area/medical/research)
"cWv" = (
/obj/structure/cable{
d1 = 2;
@@ -75823,6 +72248,9 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -75830,13 +72258,16 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWw" = (
-/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
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"cWx" = (
/obj/structure/cable{
d1 = 1;
@@ -75844,13 +72275,15 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/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{
@@ -75858,7 +72291,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{
@@ -75867,11 +72299,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{
@@ -75880,25 +72311,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" = (
@@ -75912,12 +72345,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;
@@ -75939,12 +72369,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;
@@ -75966,12 +72393,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;
@@ -75984,16 +72408,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" = (
@@ -76008,11 +72429,10 @@
d2 = 4;
icon_state = "1-4"
},
-/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 = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cWK" = (
@@ -76022,11 +72442,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/xenobiology)
"cWL" = (
@@ -76049,7 +72466,7 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/item/stock_parts/matter_bin{
pixel_x = 3;
@@ -76058,34 +72475,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{
- 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,
@@ -76117,16 +72537,23 @@
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,
@@ -76134,30 +72561,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" = (
@@ -76170,7 +72583,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,
@@ -76180,21 +72595,26 @@
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{
icon_state = "orangecorner"
},
@@ -76209,7 +72629,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreen"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cXg" = (
@@ -76219,9 +72639,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{
@@ -76229,9 +72647,7 @@
},
/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,
@@ -76241,9 +72657,7 @@
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{
@@ -76252,6 +72666,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"
},
@@ -76259,9 +72679,14 @@
"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"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"cXm" = (
@@ -76276,8 +72701,8 @@
},
/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"
@@ -76287,29 +72712,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"
},
/area/medical/medbay)
"cXq" = (
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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";
@@ -76320,81 +72751,6 @@
icon_state = "whiteblue"
},
/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"
- },
-/area/medical/medbay)
"cXy" = (
/obj/structure/cable{
d1 = 1;
@@ -76407,6 +72763,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"
},
@@ -76423,8 +72781,14 @@
d2 = 8;
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"
+ icon_state = "white"
},
/area/medical/medbay3)
"cXA" = (
@@ -76456,7 +72820,7 @@
},
/turf/simulated/floor/plasteel{
dir = 4;
- icon_state = "whitebluecorner"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cXC" = (
@@ -76467,33 +72831,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/machinery/hologram/holopad,
/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
- },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -76514,14 +72864,6 @@
"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"
- },
-/area/medical/medbay3)
"cXL" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
@@ -76570,7 +72912,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;
@@ -76578,47 +72920,28 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
-/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;
@@ -76627,31 +72950,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;
@@ -76659,13 +72962,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;
@@ -76673,13 +72972,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;
@@ -76687,11 +72983,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;
@@ -76704,29 +72997,22 @@
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
- },
/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,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -76742,26 +73028,21 @@
},
/area/toxins/xenobiology)
"cYj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/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
- },
/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,
@@ -76776,7 +73057,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,
@@ -76784,7 +73068,6 @@
/turf/simulated/floor/plasteel,
/area/toxins/lab)
"cYo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
@@ -76793,21 +73076,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,
@@ -76819,7 +73087,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,
@@ -76832,12 +73099,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,
@@ -76854,25 +73122,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"
- },
-/area/toxins/lab)
+/area/medical/research)
"cYy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/lab)
"cYz" = (
@@ -76881,27 +73139,33 @@
/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{
icon_state = "orangecorner"
},
@@ -76912,28 +73176,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"
+ 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"
+ icon_state = "white"
},
/area/medical/chemistry)
"cYH" = (
@@ -76941,9 +73217,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" = (
@@ -76965,15 +73244,10 @@
icon_state = "whitebluecorner"
},
/area/medical/medbay)
-"cYK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 8;
- 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"
},
@@ -76986,89 +73260,50 @@
},
/area/medical/medbay)
"cYN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
+/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"
+ 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
- },
-/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;
@@ -77077,7 +73312,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay3)
"cYW" = (
@@ -77085,27 +73320,32 @@
pixel_x = 26
},
/turf/simulated/floor/plasteel{
- icon_state = "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"
@@ -77121,6 +73361,9 @@
dir = 8;
network = list("SS13","Medical")
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -77131,7 +73374,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel{
@@ -77140,7 +73383,6 @@
},
/area/medical/surgery)
"cZc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/clothing/accessory/stethoscope,
@@ -77150,6 +73392,7 @@
},
/area/maintenance/starboard)
"cZd" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -77160,7 +73403,7 @@
/obj/structure/sign/examroom{
pixel_x = 32
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"cZe" = (
@@ -77235,19 +73478,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
},
@@ -77255,30 +73494,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
- },
-/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"
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZq" = (
@@ -77291,7 +73518,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";
@@ -77317,15 +73543,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
- },
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/west,
/obj/effect/decal/warning_stripes/east,
@@ -77335,9 +73561,6 @@
},
/area/medical/research)
"cZv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/folder,
/obj/item/pen,
@@ -77347,12 +73570,16 @@
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,
@@ -77365,23 +73592,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;
@@ -77390,8 +73610,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/lab)
"cZB" = (
@@ -77404,9 +73623,9 @@
/obj/machinery/hologram/holopad{
pixel_x = -16
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/lab)
"cZC" = (
@@ -77444,7 +73663,7 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"cZE" = (
@@ -77459,14 +73678,12 @@
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" = (
@@ -77477,13 +73694,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,
@@ -77493,12 +73724,13 @@
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
},
@@ -77507,34 +73739,12 @@
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{
@@ -77545,6 +73755,8 @@
"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"
},
@@ -77557,36 +73769,40 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner"
+ 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"
},
/area/medical/medbay3)
"cZR" = (
-/turf/simulated/floor/plasteel{
- icon_state = "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{
- icon_state = "whitebluecorner"
+ dir = 6;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"cZT" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -77604,14 +73820,13 @@
initialize_directions = 11
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
+/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;
@@ -77619,8 +73834,9 @@
},
/area/medical/medbay3)
"cZV" = (
-/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{
icon_state = "neutral"
},
@@ -77645,14 +73861,11 @@
icon_state = "whitebluecorner"
},
/area/medical/surgery)
-"cZZ" = (
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
- },
-/area/medical/medbay3)
"daa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ dir = 1;
+ icon_state = "whiteblue"
},
/area/medical/medbay3)
"dab" = (
@@ -77731,9 +73944,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;
@@ -77744,28 +73965,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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
"dap" = (
/obj/structure/cable{
d1 = 4;
@@ -77773,13 +73986,16 @@
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/fpmaint2)
+/area/maintenance/port)
"daq" = (
/obj/structure/cable{
d1 = 4;
@@ -77787,14 +74003,17 @@
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
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dar" = (
/obj/structure/cable{
d1 = 4;
@@ -77802,11 +74021,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;
@@ -77814,12 +74036,17 @@
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,
@@ -77828,9 +74055,7 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
+/turf/simulated/floor/plasteel,
/area/medical/chemistry)
"dau" = (
/turf/simulated/floor/plasteel{
@@ -77839,18 +74064,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
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -77862,39 +74081,56 @@
d2 = 2;
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
},
-/turf/simulated/floor/plasteel{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
- icon_state = "whitepurplecorner"
+ initialize_directions = 11
},
-/area/medical/research)
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "neutralfull"
+ },
+/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
- },
+/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/poster/official/nanotrasen_logo{
pixel_x = 32;
pixel_y = 32
@@ -77905,73 +74141,81 @@
},
/area/medical/research)
"daC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"daF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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)
+"daF" = (
+/obj/machinery/light{
+ dir = 1;
+ on = 1
+ },
+/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,
-/area/toxins/lab)
-"daI" = (
+/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" = (
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
},
/area/toxins/lab)
"daJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
+ icon_state = "white"
},
/area/toxins/lab)
"daK" = (
@@ -77979,8 +74223,7 @@
/obj/item/clipboard,
/obj/item/toy/figure/crew/scientist,
/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/lab)
"daL" = (
@@ -78000,9 +74243,9 @@
/obj/item/disk/tech_disk{
pixel_y = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/lab)
"daM" = (
@@ -78015,6 +74258,7 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/turf/simulated/floor/plasteel{
+ dir = 8;
icon_state = "purplefull"
},
/area/hallway/primary/aft)
@@ -78022,7 +74266,6 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/sign/chemistry{
pixel_x = 32;
pixel_y = 32
@@ -78042,17 +74285,14 @@
},
/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)
@@ -78068,18 +74308,30 @@
/turf/simulated/floor/plating,
/area/medical/surgery)
"daT" = (
-/turf/simulated/floor/plasteel{
- dir = 10;
- icon_state = "whitegreen"
+/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
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 6;
- icon_state = "whitegreen"
+ icon_state = "white"
},
/area/medical/chemistry)
"daV" = (
@@ -78089,171 +74341,129 @@
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{
- 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"
},
/area/medical/medbay)
"dba" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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"
},
/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"
+/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)
-"dbf" = (
+/area/toxins/mixing)
+"dbi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/medbay)
+"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"
- },
-/area/medical/medbay)
-"dbg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whiteblue"
- },
-/area/medical/medbay)
-"dbh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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"
- },
-/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
- },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dbm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "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;
@@ -78261,19 +74471,18 @@
},
/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
+/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;
@@ -78285,7 +74494,7 @@
pixel_x = 32
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -78294,7 +74503,7 @@
"dbr" = (
/obj/effect/decal/cleanable/fungus,
/turf/simulated/wall,
-/area/medical/surgery1)
+/area/medical/surgery)
"dbs" = (
/obj/structure/sign/examroom,
/turf/simulated/wall,
@@ -78309,16 +74518,14 @@
/obj/machinery/door/firedoor,
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "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"
+ icon_state = "whitebluefull"
},
/area/medical/medbay3)
"dbv" = (
@@ -78329,12 +74536,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
},
@@ -78364,19 +74568,33 @@
/turf/simulated/floor/plating,
/area/medical/surgery)
"dbB" = (
+/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/gambling_den)
+/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
+/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;
@@ -78389,9 +74607,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dbE" = (
@@ -78401,14 +74616,12 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/maintenance/gambling_den)
"dbF" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -78416,7 +74629,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -78429,19 +74641,33 @@
},
/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{
@@ -78461,16 +74687,6 @@
"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
@@ -78481,18 +74697,23 @@
},
/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" = (
@@ -78500,6 +74721,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"
},
@@ -78509,15 +74736,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"
},
@@ -78531,23 +74751,28 @@
/obj/machinery/door/window/eastleft,
/obj/item/folder,
/obj/item/pen,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- 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" = (
@@ -78555,9 +74780,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" = (
@@ -78565,12 +74791,23 @@
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"
@@ -78585,9 +74822,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"
@@ -78600,13 +74845,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" = (
@@ -78626,10 +74875,13 @@
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)
@@ -78644,9 +74896,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{
@@ -78655,14 +74905,9 @@
/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{
@@ -78671,29 +74916,33 @@
},
/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{
- 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{
@@ -78701,9 +74950,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{
@@ -78712,9 +74959,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"
+ icon_state = "whiteyellow"
},
/area/medical/medbay)
"dcn" = (
@@ -78724,9 +74977,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"
+ icon_state = "white"
},
/area/medical/medbay)
"dco" = (
@@ -78736,11 +74992,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)
"dcr" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -78753,19 +75012,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"
},
/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{
@@ -78774,26 +75032,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "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)
@@ -78810,6 +75057,13 @@
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"
},
@@ -78826,6 +75080,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"
},
@@ -78837,68 +75097,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"
- },
-/area/medical/medbay)
-"dcy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-y"
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/medbay)
-"dcz" = (
+"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/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"
},
/area/medical/medbay)
"dcA" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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/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/maintenance/starboard)
"dcC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -78910,11 +75184,14 @@
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/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -78922,19 +75199,19 @@
},
/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"
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/medbay3)
"dcE" = (
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner"
+ icon_state = "white"
},
/area/medical/medbay3)
"dcF" = (
@@ -78948,7 +75225,6 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- icon_state = "door_locked";
locked = 1;
name = "Maintenance Access"
},
@@ -79019,17 +75295,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)
@@ -79040,25 +75315,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;
@@ -79067,13 +75334,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"
@@ -79086,27 +75357,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
+/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
@@ -79126,20 +75392,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,
@@ -79149,16 +75422,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,
@@ -79174,35 +75447,24 @@
icon_state = "1-2";
tag = ""
},
-/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/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
- },
/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
@@ -79210,15 +75472,15 @@
/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/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{
@@ -79259,7 +75521,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,
@@ -79271,7 +75536,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,
@@ -79279,7 +75547,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{
@@ -79301,103 +75572,97 @@
/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{
- 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{
- 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{
- 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{
- 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_y = -32
},
@@ -79406,7 +75671,10 @@
/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,
@@ -79419,7 +75687,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{
@@ -79428,11 +75698,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{
- icon_state = "whitepurplecorner"
+ icon_state = "whitepurple"
},
/area/toxins/lab)
"ddH" = (
@@ -79453,7 +75723,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,
@@ -79461,11 +75733,14 @@
/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)
@@ -79476,7 +75751,18 @@
},
/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"
},
@@ -79490,14 +75776,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
},
@@ -79509,21 +75798,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{
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddP" = (
@@ -79532,9 +75819,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/item/radio/intercom{
dir = 1;
name = "Station Intercom (General)";
@@ -79548,7 +75832,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreencorner"
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddQ" = (
@@ -79558,22 +75842,18 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light_switch{
pixel_x = 4;
pixel_y = -22
},
/turf/simulated/floor/plasteel{
- 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
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/medical/surgery)
@@ -79583,24 +75863,14 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
+ icon_state = "whiteyellowcorner"
},
/area/medical/medbay)
"ddU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -79628,40 +75898,55 @@
pixel_x = 28
},
/turf/simulated/floor/plasteel{
- icon_state = "whitegreencorner"
+ dir = 4;
+ icon_state = "whiteyellow"
},
/area/medical/chemistry)
"ddW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner"
- },
-/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
+/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"
},
+/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{
- icon_state = "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{
@@ -79672,14 +75957,9 @@
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
- },
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
},
@@ -79691,14 +75971,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;
@@ -79709,11 +75990,14 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
-/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/medical/medbay)
+/area/maintenance/starboard)
"ded" = (
/obj/structure/cable{
d1 = 1;
@@ -79721,31 +76005,37 @@
icon_state = "1-2";
tag = ""
},
-/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{
icon_state = "whitebluefull"
},
/area/medical/medbay)
"deh" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
/area/medical/medbay)
"dej" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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
+/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,
@@ -79761,10 +76051,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dem" = (
@@ -79772,10 +76060,6 @@
icon_state = "whitebluefull"
},
/area/medical/surgery)
-"den" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/wall/r_wall,
-/area/maintenance/fpmaint2)
"deo" = (
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -79790,7 +76074,6 @@
/area/medical/surgery)
"deq" = (
/obj/machinery/door/airlock/maintenance{
- icon_state = "door_locked";
locked = 1;
name = "Maintenance Access"
},
@@ -79818,7 +76101,6 @@
/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)
@@ -79837,10 +76119,8 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dew" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -79869,9 +76149,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;
@@ -79976,14 +76261,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_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80006,7 +76300,10 @@
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{
@@ -80019,7 +76316,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{
@@ -80027,11 +76326,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
+ dir = 5
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"deO" = (
/obj/structure/cable{
d1 = 4;
@@ -80039,12 +76341,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;
@@ -80052,13 +76357,18 @@
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,
@@ -80068,15 +76378,17 @@
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" = (
@@ -80084,8 +76396,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"deT" = (
@@ -80093,47 +76404,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
@@ -80143,10 +76459,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,
@@ -80183,13 +76510,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)
@@ -80203,13 +76527,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)
@@ -80225,13 +76546,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)
@@ -80247,25 +76565,14 @@
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
},
@@ -80274,8 +76581,20 @@
},
/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)
@@ -80292,14 +76611,9 @@
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
- },
/obj/machinery/door/firedoor,
/obj/machinery/ai_status_display{
pixel_y = -32
@@ -80322,11 +76636,12 @@
name = "Mech Bay";
req_access_txt = "29"
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/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{
@@ -80347,9 +76662,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -80377,6 +76689,8 @@
"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"
@@ -80407,36 +76721,40 @@
},
/area/medical/medbay)
"dfE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
name = "Patient Room";
req_access_txt = "5"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
},
/area/medical/medbay)
"dfG" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/medical/medbay)
+/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;
@@ -80445,6 +76763,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"
@@ -80463,10 +76782,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;
@@ -80505,7 +76823,6 @@
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
"dfP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/wood{
dir = 8
},
@@ -80515,14 +76832,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,
@@ -80531,23 +76847,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
- },
-/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;
@@ -80555,10 +76858,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -80580,11 +76879,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;
@@ -80592,30 +76886,28 @@
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"
},
/area/toxins/explab)
-"dgc" = (
+"dgb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/toxins/explab)
-"dgd" = (
+"dgc" = (
/turf/simulated/floor/plasteel{
- icon_state = "purplefull"
+ icon_state = "white"
},
/area/toxins/explab)
"dge" = (
@@ -80630,15 +76922,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"
+ icon_state = "white"
},
/area/toxins/explab)
"dgh" = (
@@ -80648,21 +76939,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{
@@ -80670,35 +76970,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
},
/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
+/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
+ 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;
@@ -80730,6 +77034,7 @@
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
"dgq" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -80742,7 +77047,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
/area/toxins/misc_lab)
@@ -80758,11 +77062,11 @@
req_access_txt = "47"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dgs" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/structure/table/reinforced,
/obj/item/paicard,
@@ -80770,7 +77074,9 @@
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{
@@ -80782,37 +77088,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{
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;
@@ -80824,7 +77109,6 @@
},
/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{
@@ -80833,36 +77117,28 @@
},
/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{
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay)
-"dgA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -80872,13 +77148,14 @@
},
/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
},
@@ -80891,7 +77168,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"
@@ -80902,13 +77178,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"
+ dir = 9;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgG" = (
@@ -80935,8 +77213,8 @@
pixel_y = 30
},
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitebluecorner"
+ dir = 5;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dgI" = (
@@ -80960,6 +77238,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"
@@ -80967,7 +77246,7 @@
/area/medical/genetics_cloning)
"dgK" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/machinery/dna_scannernew,
/turf/simulated/floor/plasteel{
@@ -80983,9 +77262,6 @@
},
/area/medical/genetics_cloning)
"dgM" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- on = 1
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitebluecorner"
@@ -80999,6 +77275,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"
@@ -81023,37 +77300,34 @@
},
/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"
- },
-/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
- },
+/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 = "whitebluecorner"
+ dir = 1;
+ icon_state = "neutral"
},
-/area/medical/medbay)
+/area/maintenance/apmaint)
"dgS" = (
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
@@ -81061,12 +77335,13 @@
},
/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" = (
@@ -81092,9 +77367,8 @@
},
/area/medical/medbay)
"dgW" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -81108,11 +77382,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81172,7 +77443,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dhh" = (
@@ -81182,6 +77452,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"
@@ -81244,7 +77515,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{
@@ -81258,10 +77528,8 @@
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dhs" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/starboard)
@@ -81296,12 +77564,14 @@
},
/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,
@@ -81310,7 +77580,9 @@
dir = 0;
pixel_x = -28
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhz" = (
/obj/structure/girder,
@@ -81325,7 +77597,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;
@@ -81333,21 +77605,26 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -81361,9 +77638,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -81389,16 +77663,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
- },
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dhH" = (
/obj/structure/cable{
d1 = 1;
@@ -81411,16 +77687,20 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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;
@@ -81428,10 +77708,13 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/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" = (
@@ -81445,50 +77728,54 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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
- },
-/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
},
/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" = (
@@ -81501,7 +77788,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)
@@ -81510,37 +77796,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
},
/turf/simulated/floor/plasteel{
- 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{
+/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
},
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel{
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/toxins/explab)
"dhS" = (
@@ -81559,58 +77851,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{
- 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
- },
/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{
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/explab)
"dhV" = (
/obj/structure/disposalpipe/segment{
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
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"dhW" = (
/obj/structure/disposalpipe/segment{
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
},
-/obj/effect/decal/warning_stripes/yellow/hollow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"dhX" = (
/obj/machinery/door/firedoor,
@@ -81618,31 +77932,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/effect/decal/warning_stripes/west,
+/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,
-/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/medical/research)
"dhZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -81650,9 +77974,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)
@@ -81660,7 +77981,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)
@@ -81668,26 +77988,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel,
@@ -81697,7 +78011,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{
@@ -81721,23 +78037,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
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -81750,6 +78058,8 @@
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"
},
@@ -81759,27 +78069,21 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dik" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/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" = (
@@ -81793,13 +78097,15 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ 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{
@@ -81867,7 +78173,9 @@
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,
@@ -81875,72 +78183,50 @@
c_tag = "Brig Security Equipment Lockers";
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
-"div" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
/area/hallway/primary/aft)
"dix" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Paramedic Office";
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
- },
-/obj/machinery/hologram/holopad,
/turf/simulated/floor/plasteel{
- icon_state = "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"
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"diA" = (
@@ -81956,6 +78242,7 @@
},
/area/medical/genetics_cloning)
"diB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitebluecorner"
@@ -81967,18 +78254,25 @@
},
/area/medical/genetics_cloning)
"diD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ tag = ""
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/medical/genetics_cloning)
-"diE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/turf/simulated/floor/plasteel{
+ dir = 0;
+ icon_state = "blue"
+ },
+/area/maintenance/apmaint)
+"diE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -81989,9 +78283,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurplecorner"
@@ -82011,9 +78302,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical/glass{
id_tag = null;
@@ -82026,6 +78314,7 @@
},
/area/medical/genetics_cloning)
"diI" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -82038,12 +78327,10 @@
icon_state = "2-8";
tag = ""
},
-/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,
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"diJ" = (
@@ -82053,10 +78340,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitepurplecorner"
@@ -82083,7 +78366,6 @@
},
/area/medical/medbay)
"diM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
@@ -82124,7 +78406,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -82209,7 +78490,6 @@
},
/area/maintenance/gambling_den)
"dja" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/wood{
dir = 8
},
@@ -82233,12 +78513,15 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -82248,9 +78531,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/girder,
/obj/structure/grille,
/obj/machinery/door/poddoor{
@@ -82262,8 +78542,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,
@@ -82275,11 +78561,17 @@
icon_state = "4-8";
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
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ dir = 8;
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/explab)
"djg" = (
/obj/structure/cable{
@@ -82288,23 +78580,23 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/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/manifold/hidden/supply,
/turf/simulated/floor/plasteel,
/area/medical/research)
"djh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ 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
- },
/obj/machinery/door/airlock/maintenance,
/obj/structure/barricade/wooden,
/obj/effect/decal/warning_stripes/east,
@@ -82318,15 +78610,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- 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{
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"djk" = (
/obj/structure/cable{
d1 = 1;
@@ -82339,21 +78633,21 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+/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;
@@ -82361,158 +78655,147 @@
icon_state = "4-8";
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
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/medical/research)
"djn" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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
- },
/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
- },
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/machinery/light_switch{
pixel_x = -26;
@@ -82534,13 +78817,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;
@@ -82553,15 +78836,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;
@@ -82574,52 +78857,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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/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"
},
/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;
@@ -82631,95 +78918,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{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/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"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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
},
/turf/simulated/floor/plasteel{
- 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
- },
-/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
- },
-/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)
@@ -82728,7 +78980,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,
@@ -82737,21 +78989,11 @@
"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
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -82763,18 +79005,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
- },
/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" = (
@@ -82787,19 +79039,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
@@ -82809,15 +79066,9 @@
},
/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
},
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics_cloning)
-"dkc" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1;
initialize_directions = 11
@@ -82826,10 +79077,22 @@
icon_state = "white"
},
/area/medical/genetics_cloning)
+"dkc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
+/area/medical/genetics_cloning)
"dkd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -82844,9 +79107,11 @@
},
/area/medical/medbay)
"dkf" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- 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{
dir = 8;
@@ -82854,33 +79119,42 @@
},
/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{
- icon_state = "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"
},
@@ -82929,9 +79203,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,
@@ -82940,12 +79214,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
@@ -82976,12 +79252,8 @@
/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{
@@ -82995,29 +79267,33 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- 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,
@@ -83040,12 +79316,15 @@
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{
@@ -83053,16 +79332,13 @@
name = "Experimentor Control";
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,
@@ -83072,27 +79348,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" = (
@@ -83107,15 +79368,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
- },
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -83123,19 +79384,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;
@@ -83143,36 +79400,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{
- dir = 4
- },
+/obj/effect/decal/warning_stripes/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "whitepurplecorner"
+ },
/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" = (
@@ -83182,21 +79446,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;
@@ -83208,22 +79483,23 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- 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,
+/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
},
@@ -83239,29 +79515,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{
icon_state = "whitepurplecorner"
},
/area/medical/research)
"dkY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
+ dir = 6
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitebluecorner"
+ dir = 8;
+ icon_state = "whiteblue"
},
/area/medical/paramedic)
"dkZ" = (
@@ -83281,46 +79565,45 @@
},
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "whitebluecorner"
+ 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
- },
-/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_x = 24
},
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
@@ -83331,7 +79614,7 @@
name = "Paramedic"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/paramedic)
"dlg" = (
@@ -83347,9 +79630,6 @@
},
/area/medical/genetics_cloning)
"dlh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Medbay West Hallway";
@@ -83384,7 +79664,6 @@
},
/area/medical/medbay)
"dll" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -83400,42 +79679,20 @@
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"
- },
-/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
+/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"
- },
-/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"
},
@@ -83473,7 +79730,9 @@
/turf/simulated/floor/plasteel,
/area/engine/engine_smes)
"dlu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -83493,6 +79752,9 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"dly" = (
@@ -83511,8 +79773,14 @@
/turf/simulated/wall,
/area/medical/surgery)
"dlA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10;
+ initialize_directions = 10
+ },
/turf/simulated/floor/plasteel{
icon_state = "redbluefull"
},
@@ -83531,20 +79799,20 @@
},
/area/crew_quarters/fitness)
"dlD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
+/obj/effect/decal/warning_stripes/south,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4;
- icon_state = "whitebluecorner"
+ initialize_directions = 11
},
-/area/medical/medbay)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plasteel,
+/area/hallway/secondary/exit)
"dlE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/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"
@@ -83558,7 +79826,6 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dlG" = (
@@ -83587,11 +79854,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,
@@ -83599,35 +79864,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,
@@ -83635,7 +79894,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{
@@ -83644,6 +79907,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"
@@ -83665,7 +79930,13 @@
},
/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,
@@ -83675,8 +79946,7 @@
icon_state = "4-8"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreen"
+ icon_state = "white"
},
/area/medical/chemistry)
"dlX" = (
@@ -83687,7 +79957,7 @@
tag = ""
},
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dlY" = (
/obj/machinery/firealarm{
@@ -83696,7 +79966,10 @@
},
/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,
@@ -83705,7 +79978,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{
@@ -83715,8 +79991,7 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurple"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dmb" = (
@@ -83731,7 +80006,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/table/reinforced,
/obj/machinery/door_control{
id = "rdprivacy";
@@ -83739,51 +80013,35 @@
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"
+ 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;
pixel_x = 28
@@ -83806,67 +80064,62 @@
},
/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_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "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
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
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
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -83883,7 +80136,6 @@
/turf/simulated/floor/plating,
/area/medical/cmo)
"dmv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 8
},
@@ -83912,7 +80164,7 @@
/obj/structure/girder,
/obj/effect/decal/cleanable/fungus,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dmz" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -83924,9 +80176,9 @@
},
/area/medical/surgeryobs)
"dmA" = (
+/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{
icon_state = "dark"
},
@@ -83938,7 +80190,7 @@
},
/area/medical/surgeryobs)
"dmC" = (
-/obj/item/twohanded/required/kirbyplants,
+/obj/machinery/vending/medical,
/obj/machinery/light{
dir = 1;
on = 1
@@ -83955,20 +80207,12 @@
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
- },
-/obj/machinery/door/airlock/maintenance,
-/turf/simulated/floor/plasteel,
-/area/hallway/secondary/construction)
"dmF" = (
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
@@ -83987,10 +80231,8 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
"dmI" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plating,
/area/hallway/secondary/construction)
@@ -84070,7 +80312,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"
@@ -84082,7 +80323,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{
@@ -84106,7 +80349,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,
@@ -84114,7 +80359,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{
@@ -84122,23 +80369,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;
@@ -84146,97 +80396,75 @@
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
- },
-/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
- },
-/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
- },
/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
},
@@ -84244,14 +80472,13 @@
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
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/engine,
/area/toxins/misc_lab)
"dnn" = (
/obj/machinery/ai_status_display{
@@ -84259,16 +80486,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" = (
@@ -84283,10 +80503,8 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/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"
@@ -84299,7 +80517,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair/office/light{
dir = 1;
pixel_y = 3
@@ -84308,16 +80525,23 @@
name = "Research Director"
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/crew_quarters/hor)
"dnr" = (
/obj/machinery/alarm{
dir = 4;
- 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,
@@ -84325,43 +80549,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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"dnv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
- },
-/area/medical/research)
-"dnw" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/assembly/chargebay)
"dnx" = (
/obj/structure/cable{
d1 = 1;
@@ -84374,14 +80567,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,
@@ -84400,25 +80592,21 @@
},
/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
- },
/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{
icon_state = "purplecorner"
},
@@ -84429,7 +80617,15 @@
name = "Mech Bay";
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/chargebay)
"dnG" = (
/obj/structure/extinguisher_cabinet{
@@ -84466,13 +80662,12 @@
network = list("Medical","SS13")
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitebluecorner"
+ 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,
@@ -84490,20 +80685,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";
@@ -84520,9 +80704,7 @@
},
/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,
@@ -84531,20 +80713,7 @@
icon_state = "whiteblue"
},
/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"
- },
-/area/medical/genetics)
"dnQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sink{
dir = 4;
pixel_x = 12
@@ -84565,15 +80734,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,
@@ -84588,7 +80749,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,
@@ -84626,7 +80789,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{
@@ -84641,32 +80806,9 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
- },
-/area/medical/medbay)
-"doa" = (
-/obj/machinery/dna_scannernew,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/effect/decal/warning_stripes/southeast,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/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
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8;
@@ -84676,6 +80818,14 @@
icon_state = "white"
},
/area/medical/medbay)
+"doa" = (
+/obj/machinery/dna_scannernew,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/decal/warning_stripes/southeast,
+/turf/simulated/floor/plasteel,
+/area/medical/genetics)
"doe" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
@@ -84732,6 +80882,7 @@
},
/area/medical/surgeryobs)
"doi" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
initialize_directions = 11
@@ -84744,7 +80895,6 @@
d2 = 8;
icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -84789,7 +80939,12 @@
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/plasteel{
icon_state = "whitebluefull"
},
@@ -84810,7 +80965,6 @@
},
/area/hallway/secondary/construction)
"doq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -84818,10 +80972,8 @@
},
/area/maintenance/starboard)
"dor" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -84852,22 +81004,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{
@@ -84875,13 +81023,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{
@@ -84890,7 +81048,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark{
name = "blobstart"
},
@@ -84898,31 +81055,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"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreen"
+ 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{
@@ -84947,23 +81103,6 @@
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
- },
-/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitepurplecorner"
- },
-/area/toxins/mixing)
"doI" = (
/obj/item/radio/intercom{
dir = 4;
@@ -84972,7 +81111,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,
@@ -84987,7 +81133,10 @@
/obj/item/clipboard,
/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{
@@ -84998,7 +81147,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{
@@ -85025,12 +81176,12 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"doN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
@@ -85040,20 +81191,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{
@@ -85072,12 +81214,16 @@
},
/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" = (
@@ -85085,15 +81231,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
- },
/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{
@@ -85102,9 +81249,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/landmark/start{
name = "Cyborg"
},
@@ -85112,40 +81256,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
- },
/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"
@@ -85157,10 +81290,6 @@
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{
icon_state = "purplecorner"
},
@@ -85171,7 +81300,9 @@
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,
@@ -85180,14 +81311,16 @@
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;
@@ -85195,19 +81328,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
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -85219,7 +81351,7 @@
},
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
- icon_state = "whiteblue"
+ icon_state = "white"
},
/area/medical/paramedic)
"dpg" = (
@@ -85229,19 +81361,11 @@
pixel_x = 24
},
/turf/simulated/floor/plasteel{
- icon_state = "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";
@@ -85254,9 +81378,6 @@
},
/area/medical/genetics)
"dpj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/chair/office/light{
dir = 8
},
@@ -85269,43 +81390,25 @@
},
/area/medical/genetics)
"dpk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plasteel{
dir = 1;
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
- },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitepurple"
@@ -85318,33 +81421,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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
- },
-/area/medical/medbay)
"dpr" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -85357,9 +81437,13 @@
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 = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
icon_state = "white"
@@ -85372,10 +81456,12 @@
icon_state = "4-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
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -85393,7 +81479,12 @@
/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/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dpv" = (
/obj/structure/cable{
@@ -85409,7 +81500,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;
@@ -85423,6 +81517,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"
@@ -85435,9 +81536,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -85450,10 +81548,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
},
-/turf/simulated/floor/plasteel,
/area/medical/cmo)
"dpz" = (
/obj/structure/cable{
@@ -85480,7 +81577,12 @@
/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/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dpA" = (
/obj/structure/cable{
@@ -85489,10 +81591,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitebluecorner"
@@ -85511,25 +81609,15 @@
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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "whitebluecorner"
- },
-/area/medical/medbay)
"dpF" = (
/obj/structure/cable{
d1 = 1;
@@ -85561,6 +81649,7 @@
},
/area/medical/surgeryobs)
"dpI" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -85568,7 +81657,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -85653,7 +81741,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{
@@ -85671,7 +81762,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,
@@ -85683,16 +81776,17 @@
"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
@@ -85705,8 +81799,8 @@
pixel_x = -32
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "escape"
+ dir = 1;
+ icon_state = "whitepurplecorner"
},
/area/toxins/mixing)
"dpZ" = (
@@ -85722,19 +81816,11 @@
/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{
@@ -85742,21 +81828,10 @@
},
/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)
@@ -85772,7 +81847,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,
@@ -85780,14 +81858,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)
@@ -85811,7 +81885,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{
@@ -85827,19 +81903,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{
@@ -85855,9 +81928,6 @@
/turf/simulated/wall/r_wall,
/area/assembly/robotics)
"dqq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Research West Hallway";
network = list("Research","SS13")
@@ -85871,7 +81941,7 @@
/obj/structure/table/glass,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/light{
dir = 8
@@ -85882,6 +81952,9 @@
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"
@@ -85894,29 +81967,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" = (
@@ -85937,43 +82005,27 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/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{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -85981,30 +82033,7 @@
icon_state = "whiteblue"
},
/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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/genetics)
"dqz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- tag = ""
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -86016,21 +82045,19 @@
},
/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
- },
/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"
},
@@ -86041,7 +82068,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -86056,62 +82083,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
- },
/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"
+ icon_state = "white"
},
/area/medical/medbay)
"dqG" = (
@@ -86121,7 +82112,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{
@@ -86130,27 +82123,6 @@
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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -86220,7 +82192,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{
@@ -86249,8 +82220,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{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dqX" = (
@@ -86309,7 +82286,7 @@
"drf" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/maintenance/gambling_den)
@@ -86318,15 +82295,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
@@ -86337,15 +82316,6 @@
icon_state = "neutralfull"
},
/area/medical/research)
-"drj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/medical/research)
"drk" = (
/obj/structure/chair/office/light,
/obj/effect/decal/warning_stripes/south,
@@ -86367,26 +82337,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
- },
/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
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"drp" = (
/obj/structure/cable{
d1 = 2;
@@ -86394,59 +82363,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
- },
/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
- },
+/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" = (
@@ -86466,14 +82408,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{
@@ -86483,20 +82428,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)
@@ -86507,14 +82458,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"
@@ -86522,6 +82479,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"
@@ -86552,34 +82512,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
@@ -86592,12 +82536,9 @@
/area/medical/research)
"drJ" = (
/obj/effect/spawner/window/reinforced,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- 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)
@@ -86606,12 +82547,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
@@ -86623,7 +82564,6 @@
/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
@@ -86639,17 +82579,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
},
@@ -86665,19 +82603,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
-/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"
},
@@ -86690,13 +82615,10 @@
/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)
@@ -86722,10 +82644,6 @@
},
/area/medical/genetics)
"drV" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
},
@@ -86757,29 +82675,16 @@
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;
@@ -86795,13 +82700,15 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ 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{
@@ -86811,7 +82718,6 @@
tag = ""
},
/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -86819,6 +82725,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"
@@ -86831,7 +82739,6 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/chair/office/light,
/turf/simulated/floor/plasteel{
dir = 8;
@@ -86857,10 +82764,11 @@
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;
pixel_x = 28
@@ -86879,7 +82787,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 8
},
@@ -86912,44 +82819,34 @@
/turf/simulated/floor/plating,
/area/medical/research)
"dso" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
- },
/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
- },
/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
- },
/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;
@@ -86957,17 +82854,13 @@
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{
@@ -86976,8 +82869,13 @@
/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{
@@ -86987,19 +82885,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;
@@ -87007,14 +82900,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{
@@ -87022,11 +82916,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{
@@ -87037,16 +82934,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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/crew_quarters/hor)
"dsE" = (
/obj/structure/cable{
d1 = 1;
@@ -87054,20 +82943,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/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"
},
@@ -87098,11 +82981,12 @@
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{
@@ -87132,7 +83016,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,
@@ -87142,12 +83028,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,
@@ -87161,31 +83055,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
@@ -87208,13 +83091,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"
@@ -87237,7 +83113,7 @@
/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,
@@ -87253,18 +83129,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
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Genetics Office";
@@ -87276,15 +83143,13 @@
/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;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -87320,17 +83185,13 @@
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
@@ -87341,19 +83202,18 @@
},
/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"
},
@@ -87362,7 +83222,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/item/twohanded/required/kirbyplants,
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
@@ -87372,7 +83231,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel,
/area/gateway)
@@ -87395,10 +83254,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -87417,11 +83272,10 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
@@ -87439,10 +83293,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/structure/table/glass,
/obj/item/folder/white,
/obj/item/folder/blue{
@@ -87463,7 +83313,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,
@@ -87521,6 +83373,7 @@
/turf/simulated/wall/r_wall,
/area/medical/research)
"dtq" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/hologram/holopad,
/obj/structure/cable{
d1 = 1;
@@ -87529,7 +83382,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 9;
icon_state = "darkblue"
@@ -87571,10 +83423,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dtv" = (
@@ -87584,36 +83432,19 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
},
/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -87629,9 +83460,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -87650,43 +83478,33 @@
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" = (
-/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 = 9
- },
-/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;
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 = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dtD" = (
@@ -87707,7 +83525,7 @@
pixel_y = -32
},
/turf/simulated/floor/plasteel,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dtE" = (
/obj/structure/cable{
d1 = 2;
@@ -87789,9 +83607,10 @@
/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,
@@ -87800,55 +83619,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"
+ icon_state = "white"
},
/area/toxins/mixing)
"dtS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
- },
-/area/toxins/mixing)
"dtU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/structure/grille{
density = 0;
icon_state = "brokengrille"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dtV" = (
/obj/structure/cable{
d1 = 1;
@@ -87856,11 +83665,15 @@
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" = (
@@ -87868,15 +83681,20 @@
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 = 8;
icon_state = "whitepurplecorner"
},
/area/crew_quarters/hor)
@@ -87890,7 +83708,8 @@
pixel_y = -30
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ dir = 1;
+ icon_state = "whitepurple"
},
/area/crew_quarters/hor)
"dua" = (
@@ -87920,21 +83739,10 @@
/area/crew_quarters/hor)
"duc" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "whitepurplecorner"
},
/area/medical/research)
-"dud" = (
-/obj/effect/spawner/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
"due" = (
/obj/structure/cable{
d1 = 1;
@@ -87943,7 +83751,9 @@
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,
@@ -87959,18 +83769,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
- },
-/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,
@@ -87980,24 +83790,20 @@
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,
@@ -88015,43 +83821,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
- },
/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;
@@ -88064,6 +83868,7 @@
name = "Medbay Maintenance";
req_access_txt = "5"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dur" = (
@@ -88073,12 +83878,16 @@
},
/obj/item/clipboard,
/obj/item/toy/figure/crew/cmo,
-/turf/simulated/floor/plasteel,
+/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
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -88092,8 +83901,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;
@@ -88101,13 +83915,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"
@@ -88118,13 +83934,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
- },
/obj/machinery/camera{
c_tag = "Mini Satellite Access";
dir = 4;
@@ -88136,12 +83953,9 @@
},
/area/medical/medbay)
"dux" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light,
/turf/simulated/floor/plasteel{
- icon_state = "white"
+ icon_state = "whitebluecorner"
},
/area/medical/medbay)
"duy" = (
@@ -88154,7 +83968,7 @@
},
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -88201,7 +84015,7 @@
"duE" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 23
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4
@@ -88212,9 +84026,6 @@
},
/area/medical/surgery2)
"duG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/status_display{
pixel_y = -32
},
@@ -88233,6 +84044,7 @@
dir = 8;
initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"duJ" = (
@@ -88262,7 +84074,9 @@
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"duM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"duN" = (
@@ -88272,7 +84086,10 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8;
+ initialize_directions = 11
+ },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -88290,19 +84107,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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
- },
/obj/machinery/camera{
c_tag = "Engine Room South";
dir = 1;
@@ -88332,7 +84140,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,
@@ -88350,7 +84160,7 @@
/obj/machinery/light/small,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/medical/research)
@@ -88373,7 +84183,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,
@@ -88384,7 +84197,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{
@@ -88393,14 +84206,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;
@@ -88409,6 +84221,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -88418,13 +84231,15 @@
dir = 6
},
/turf/simulated/floor/plasteel{
- 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,
@@ -88435,8 +84250,7 @@
dir = 10
},
/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dvf" = (
@@ -88445,21 +84259,14 @@
"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
- },
/obj/machinery/light{
dir = 8
},
@@ -88472,27 +84279,14 @@
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
},
@@ -88533,41 +84327,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
- },
-/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{
@@ -88598,13 +84379,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
},
@@ -88637,6 +84417,7 @@
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plating,
/area/medical/morgue)
"dvz" = (
@@ -88657,7 +84438,6 @@
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dvC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small{
dir = 1
},
@@ -88671,6 +84451,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/medical/morgue)
"dvE" = (
@@ -88690,10 +84471,11 @@
/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"
@@ -88706,13 +84488,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
@@ -88735,7 +84518,9 @@
name = "Chief Medical Officer Requests Console";
pixel_x = 30
},
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "dark"
+ },
/area/medical/cmo)
"dvK" = (
/obj/machinery/door/firedoor,
@@ -88788,10 +84573,10 @@
/turf/simulated/floor/plating,
/area/medical/research)
"dvQ" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 10;
icon_state = "darkblue"
@@ -88823,7 +84608,7 @@
dir = 10;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/port)
"dvW" = (
/obj/structure/cable{
d1 = 1;
@@ -88831,19 +84616,17 @@
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{
@@ -88867,10 +84650,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;
@@ -88887,23 +84672,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" = (
@@ -88911,7 +84680,7 @@
dir = 8
},
/turf/simulated/floor/plasteel{
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dwc" = (
@@ -88919,7 +84688,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{
@@ -88940,22 +84711,16 @@
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
- },
/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" = (
@@ -88963,7 +84728,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,
@@ -88978,38 +84745,27 @@
/turf/simulated/wall/r_wall,
/area/toxins/server)
"dwj" = (
-/obj/structure/table,
/obj/machinery/alarm{
dir = 4;
- 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,
/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)
@@ -89026,12 +84782,9 @@
req_access_txt = "29"
},
/obj/machinery/door/window/eastleft,
-/obj/machinery/door/poddoor/shutters{
- density = 0;
- 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,
@@ -89055,9 +84808,6 @@
},
/area/medical/medbay)
"dwq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil/random,
/obj/item/flash,
@@ -89067,7 +84817,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{
@@ -89076,27 +84830,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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"
@@ -89104,14 +84855,13 @@
/area/hallway/primary/aft)
"dwu" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -89137,13 +84887,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;
@@ -89151,13 +84894,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"
@@ -89174,7 +84915,6 @@
},
/area/medical/morgue)
"dwD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -89187,6 +84927,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" = (
@@ -89199,12 +84940,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" = (
@@ -89222,24 +84962,24 @@
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_x = -24
},
/obj/machinery/light{
dir = 8
@@ -89295,6 +85035,7 @@
},
/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"
@@ -89405,11 +85146,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,
@@ -89424,12 +85169,18 @@
/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,
@@ -89438,19 +85189,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_x = 24
},
/obj/machinery/newscaster{
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,
@@ -89476,11 +85231,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{
@@ -89502,7 +85256,9 @@
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{
@@ -89510,13 +85266,13 @@
},
/obj/machinery/meter,
/turf/simulated/floor/plasteel{
- 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,
@@ -89544,14 +85300,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" = (
@@ -89569,7 +85323,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{
@@ -89581,7 +85338,10 @@
name = "west bump";
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"
},
@@ -89599,9 +85359,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"
@@ -89614,10 +85373,9 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -89629,9 +85387,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/command{
name = "Server Room";
req_access = null;
@@ -89648,10 +85403,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitepurplecorner"
@@ -89670,36 +85421,23 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
/area/medical/research)
-"dxy" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
-/turf/simulated/floor/plasteel{
- 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/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "cmo"
@@ -89709,26 +85447,36 @@
/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{
@@ -89737,35 +85485,30 @@
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
- },
/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
- },
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -89777,7 +85520,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;
@@ -89794,19 +85536,10 @@
dir = 2;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
/area/medical/morgue)
-"dxI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/morgue)
"dxJ" = (
/obj/structure/cable{
d1 = 1;
@@ -89820,25 +85553,11 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ 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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -89854,6 +85573,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 = "neutralfull"
@@ -89874,6 +85596,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"
@@ -89889,6 +85614,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"
},
@@ -89914,6 +85642,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dxR" = (
@@ -89930,6 +85661,9 @@
name = "blobstart"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/medical/morgue)
"dxS" = (
@@ -89942,8 +85676,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
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" = (
@@ -89964,6 +85700,10 @@
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"
@@ -89990,13 +85730,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
@@ -90022,22 +85763,25 @@
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
+ initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- icon_state = "whitebluefull"
+ icon_state = "white"
},
/area/medical/medbay)
"dya" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Operating Theatre Storage";
req_access_txt = "45"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -90046,7 +85790,6 @@
/turf/simulated/floor/plating,
/area/crew_quarters/theatre)
"dyc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/landmark/costume/random,
/obj/effect/landmark/costume/random,
@@ -90063,6 +85806,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dye" = (
@@ -90148,16 +85892,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"
@@ -90173,8 +85917,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;
@@ -90195,7 +85940,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)
@@ -90206,7 +85950,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -90215,7 +85958,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{
@@ -90226,13 +85972,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" = (
@@ -90243,8 +85989,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" = (
@@ -90252,18 +85999,15 @@
dir = 5
},
/turf/simulated/floor/plasteel{
- 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{
@@ -90272,21 +86016,22 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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,
@@ -90294,7 +86039,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{
@@ -90303,9 +86050,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,
@@ -90331,9 +86080,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"
},
@@ -90344,9 +86091,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/toxins/server)
"dyL" = (
@@ -90356,12 +86100,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" = (
@@ -90371,7 +86113,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{
@@ -90380,21 +86124,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"
@@ -90403,15 +86143,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" = (
@@ -90419,13 +86154,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" = (
@@ -90439,16 +86175,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;
@@ -90456,57 +86182,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/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
- },
+/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{
@@ -90514,40 +86203,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
- },
-/turf/simulated/floor/plating,
-/area/medical/morgue)
"dzg" = (
/obj/structure/cable{
d1 = 1;
@@ -90556,6 +86220,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"
@@ -90569,28 +86234,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;
@@ -90598,9 +86264,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;
@@ -90619,6 +86284,9 @@
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -90631,7 +86299,6 @@
},
/area/medical/surgery2)
"dzo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/landmark/costume/random,
@@ -90682,31 +86349,44 @@
"dzv" = (
/obj/item/target,
/obj/structure/window/reinforced,
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dzw" = (
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "neutral"
+ },
/area/toxins/mixing)
"dzx" = (
+/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/decal/warning_stripes/south,
-/turf/simulated/floor/plasteel,
+/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
- },
/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" = (
@@ -90721,18 +86401,26 @@
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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -90745,14 +86433,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -90765,7 +86456,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutral"
@@ -90778,26 +86471,35 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -90809,10 +86511,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dzG" = (
@@ -90834,6 +86537,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -90845,11 +86549,14 @@
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 = "whitepurplecorner"
+ icon_state = "white"
},
/area/toxins/mixing)
"dzI" = (
@@ -90858,34 +86565,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
- },
/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{
@@ -90894,11 +86600,16 @@
icon_state = "4-8";
tag = ""
},
-/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,
-/turf/simulated/floor/plasteel,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plasteel{
+ icon_state = "whitepurplecorner"
+ },
/area/toxins/mixing)
"dzN" = (
/obj/structure/cable{
@@ -90907,14 +86618,17 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -90929,19 +86643,18 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/effect/decal/warning_stripes/yellow,
/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";
@@ -90952,7 +86665,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";
@@ -91003,22 +86718,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"
},
@@ -91028,7 +86742,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -91039,21 +86752,23 @@
},
/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
},
/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
+/turf/simulated/floor/plasteel{
+ icon_state = "white"
+ },
/area/assembly/robotics)
"dzW" = (
/obj/structure/cable{
@@ -91068,7 +86783,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)
@@ -91084,8 +86798,7 @@
name = "Robotics Operating Computer"
},
/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitepurplecorner"
+ icon_state = "white"
},
/area/assembly/robotics)
"dzZ" = (
@@ -91095,16 +86808,13 @@
/obj/machinery/status_display{
pixel_y = -32
},
+/obj/item/storage/firstaid/machine,
+/obj/item/storage/firstaid/machine,
/turf/simulated/floor/plasteel{
- 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)
@@ -91134,6 +86844,9 @@
pixel_y = -24
},
/obj/machinery/optable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/medical/morgue)
"dAf" = (
@@ -91158,7 +86871,7 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plating,
/area/medical/morgue)
@@ -91180,11 +86893,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;
@@ -91193,6 +86901,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
/area/medical/morgue)
"dAo" = (
@@ -91212,6 +86921,9 @@
opacity = 1;
req_access_txt = "6"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -91259,29 +86971,37 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- 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
},
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
},
/area/medical/medbay)
"dAu" = (
+/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
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-y"
- },
/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
@@ -91289,9 +87009,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -91326,6 +87043,7 @@
dir = 8;
initialize_directions = 11
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "neutral"
@@ -91383,10 +87101,8 @@
},
/area/crew_quarters/theatre)
"dAE" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -91407,13 +87123,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{
@@ -91422,70 +87140,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
- },
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plasteel,
@@ -91497,10 +87205,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"
@@ -91509,12 +87213,15 @@
"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
- },
/obj/structure/rack,
/obj/structure/extinguisher_cabinet{
pixel_y = -30
@@ -91523,7 +87230,10 @@
/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{
@@ -91532,12 +87242,10 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/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{
@@ -91561,6 +87269,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" = (
@@ -91571,6 +87282,9 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel,
/area/toxins/storage)
"dAX" = (
@@ -91581,17 +87295,14 @@
"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)";
@@ -91599,12 +87310,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;
@@ -91615,12 +87325,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,
@@ -91635,7 +87347,7 @@
/area/toxins/storage)
"dBd" = (
/obj/machinery/r_n_d/server/core,
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 5
},
/turf/simulated/floor/bluegrid{
@@ -91648,7 +87360,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";
@@ -91659,7 +87373,7 @@
/area/toxins/server)
"dBf" = (
/obj/machinery/r_n_d/server/robotics,
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 9
},
/turf/simulated/floor/bluegrid{
@@ -91670,47 +87384,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
@@ -91729,11 +87422,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;
@@ -91743,13 +87431,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;
@@ -91761,6 +87445,8 @@
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" = (
@@ -91786,11 +87472,11 @@
},
/area/crew_quarters/theatre)
"dBt" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -91811,20 +87497,10 @@
},
/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,
@@ -91849,11 +87525,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;
@@ -91866,43 +87542,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;
@@ -91910,19 +87578,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;
@@ -91930,35 +87588,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
- },
-/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
- },
-/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{
@@ -91967,26 +87612,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;
@@ -92014,15 +87654,16 @@
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
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
id_tag = null;
@@ -92045,8 +87686,11 @@
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;
@@ -92054,9 +87698,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dBV" = (
@@ -92066,27 +87707,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;
@@ -92100,9 +87723,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dBY" = (
@@ -92112,9 +87732,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;
@@ -92128,9 +87745,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)
@@ -92141,15 +87755,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)
@@ -92160,9 +87768,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;
@@ -92176,7 +87781,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "neutral"
@@ -92195,9 +87799,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" = (
@@ -92207,25 +87809,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;
@@ -92239,46 +87831,21 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
+/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
},
@@ -92306,9 +87873,6 @@
/turf/simulated/floor/plating,
/area/medical/surgeryobs)
"dCp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 1
@@ -92409,14 +87973,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,
@@ -92448,15 +88012,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
@@ -92465,25 +88028,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,
@@ -92491,18 +88048,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
},
@@ -92514,66 +88064,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;
- 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;
@@ -92587,12 +88108,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/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;
@@ -92604,8 +88127,11 @@
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;
@@ -92618,21 +88144,11 @@
},
/obj/machinery/light/small,
/obj/effect/decal/warning_stripes/yellow,
-/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{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/hallway/primary/aft)
"dCZ" = (
/obj/structure/rack,
/obj/machinery/light{
@@ -92647,7 +88163,9 @@
/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{
@@ -92655,7 +88173,9 @@
},
/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" = (
@@ -92669,7 +88189,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
@@ -92681,9 +88203,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -92691,7 +88212,12 @@
/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{
icon_state = "neutralcorner"
},
@@ -92710,12 +88236,16 @@
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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/wall,
/area/hallway/primary/aft)
"dDg" = (
@@ -92723,12 +88253,18 @@
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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDi" = (
@@ -92736,6 +88272,9 @@
dir = 4
},
/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDj" = (
@@ -92744,12 +88283,18 @@
},
/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
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -92763,6 +88308,9 @@
name = "south bump";
pixel_y = -24
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDm" = (
@@ -92770,6 +88318,9 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -92783,6 +88334,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 = "neutral"
},
@@ -92797,6 +88351,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/aft)
"dDp" = (
@@ -92808,10 +88365,14 @@
/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)
"dDq" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -92826,6 +88387,9 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dDs" = (
@@ -92838,6 +88402,9 @@
/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)
"dDt" = (
@@ -92851,8 +88418,11 @@
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;
@@ -92860,7 +88430,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{
dir = 8;
icon_state = "whitegreen"
@@ -92889,12 +88464,8 @@
icon_state = "2-4";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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"
},
@@ -92909,7 +88480,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreen"
@@ -92926,6 +88499,9 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"dDC" = (
@@ -92939,6 +88515,9 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
@@ -92953,6 +88532,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/starboard)
"dDE" = (
@@ -92965,6 +88547,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 = "neutral"
},
@@ -92978,6 +88563,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 6;
icon_state = "neutral"
@@ -93007,7 +88595,7 @@
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -93034,7 +88622,7 @@
/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,
@@ -93059,7 +88647,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;
@@ -93072,9 +88660,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;
@@ -93082,11 +88669,8 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dDX" = (
/obj/structure/cable{
d1 = 4;
@@ -93094,14 +88678,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;
@@ -93114,9 +88695,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;
@@ -93124,125 +88704,38 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10;
- initialize_directions = 10
- },
/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
- },
-/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,
@@ -93255,9 +88748,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,
@@ -93270,9 +88764,8 @@
/turf/simulated/floor/plating,
/area/maintenance/aft)
"dEr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -93280,7 +88773,9 @@
},
/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"
@@ -93308,11 +88803,11 @@
/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{
@@ -93329,28 +88824,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
+ 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;
@@ -93371,7 +88857,7 @@
},
/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
@@ -93380,21 +88866,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{
@@ -93402,7 +88886,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
@@ -93417,7 +88901,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dEG" = (
/obj/structure/cable{
d1 = 4;
@@ -93425,9 +88909,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 9
},
@@ -93436,28 +88917,24 @@
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;
@@ -93465,23 +88942,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
- },
/obj/effect/landmark{
name = "blobstart"
},
@@ -93494,71 +88967,36 @@
pixel_y = 2
},
/turf/simulated/floor/plating,
-/area/medical/research)
-"dEM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/wall,
-/area/medical/research)
+/area/maintenance/apmaint)
"dEN" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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
- },
-/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
- },
-/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
- },
-/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;
@@ -93566,11 +89004,11 @@
},
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dET" = (
/obj/machinery/alarm{
dir = 4;
- pixel_x = -22
+ pixel_x = -24
},
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
@@ -93593,13 +89031,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;
@@ -93629,17 +89067,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"
@@ -93647,7 +89084,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"
@@ -93664,13 +89100,12 @@
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{
@@ -93690,7 +89125,6 @@
},
/area/medical/medbay)
"dFe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/small,
/turf/simulated/floor/plasteel{
dir = 5;
@@ -93703,7 +89137,7 @@
dir = 1;
layer = 2.9
},
-/turf/simulated/floor/plating/airless,
+/turf/simulated/floor/plasteel/airless,
/area/toxins/test_area)
"dFg" = (
/turf/simulated/wall,
@@ -93725,7 +89159,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,
@@ -93739,65 +89172,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
+/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;
@@ -93809,8 +89211,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{
@@ -93828,10 +89231,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"
@@ -93839,12 +89240,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,
@@ -93860,33 +89267,22 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/ai_status_display{
- pixel_x = 32
- },
/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
@@ -93898,19 +89294,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"
},
/area/medical/medbay)
"dFF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/sign/biohazard,
/turf/simulated/wall/r_wall,
/area/medical/medbay)
@@ -93971,18 +89365,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,
@@ -94011,27 +89393,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{
@@ -94047,7 +89421,7 @@
dir = 1;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dFX" = (
/obj/effect/landmark{
name = "blobstart"
@@ -94057,84 +89431,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
- },
/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
- },
/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;
@@ -94144,8 +89481,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;
@@ -94157,6 +89495,9 @@
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"
@@ -94179,6 +89520,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"
@@ -94191,7 +89538,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"
@@ -94207,6 +89556,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"
@@ -94240,17 +89592,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,
@@ -94281,7 +89635,7 @@
name = "blobstart"
},
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dGs" = (
/obj/structure/cable{
d1 = 4;
@@ -94309,9 +89663,12 @@
},
/obj/effect/decal/warning_stripes/east,
/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"
@@ -94325,6 +89682,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"
@@ -94332,6 +89695,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"
@@ -94349,6 +89715,7 @@
pixel_y = 28
},
/obj/item/paper_bin,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -94383,6 +89750,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"
@@ -94448,18 +89816,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
@@ -94468,7 +89835,7 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGM" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 9
@@ -94477,22 +89844,27 @@
dir = 8;
icon_state = "neutralfull"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dGN" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/grille,
/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,
@@ -94517,7 +89889,6 @@
},
/area/bridge)
"dGR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -94538,12 +89909,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;
@@ -94570,11 +89947,9 @@
},
/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{
@@ -94582,13 +89957,13 @@
},
/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"
+ name = "abandoned Toilet"
},
/turf/simulated/floor/plasteel,
-/area/medical/research)
+/area/maintenance/apmaint)
"dGZ" = (
/obj/structure/cable,
/obj/machinery/power/apc{
@@ -94605,6 +89980,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;
@@ -94614,14 +89997,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_y = -24;
- req_access_txt = "39"
- },
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dHb" = (
@@ -94709,9 +90084,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -94730,94 +90102,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/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
- },
-/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"
},
@@ -94829,9 +90154,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{
@@ -94851,6 +90173,7 @@
pixel_x = 28
},
/obj/machinery/computer/med_data/laptop,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -94899,7 +90222,7 @@
},
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/turf/simulated/floor/plating,
/area/library/abandoned)
@@ -94913,17 +90236,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
- },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralcorner"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHz" = (
/obj/structure/cable{
d1 = 1;
@@ -94937,15 +90256,15 @@
icon_state = "2-4";
tag = ""
},
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 6
},
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHA" = (
/obj/structure/cable{
d1 = 4;
@@ -94953,19 +90272,19 @@
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/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;
@@ -94978,15 +90297,14 @@
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/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHD" = (
/obj/structure/cable{
d1 = 4;
@@ -94994,16 +90312,16 @@
icon_state = "4-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{
+/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;
@@ -95019,37 +90337,7 @@
},
/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
- },
-/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;
@@ -95063,37 +90351,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
- },
-/turf/simulated/floor/plasteel{
- dir = 1;
- icon_state = "neutral"
- },
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHJ" = (
/obj/structure/cable{
d1 = 4;
@@ -95101,12 +90371,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;
@@ -95117,11 +90392,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;
@@ -95129,12 +90407,14 @@
icon_state = "4-8";
tag = ""
},
-/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/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dHM" = (
/obj/structure/cable{
d1 = 1;
@@ -95147,10 +90427,17 @@
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,
@@ -95178,9 +90465,6 @@
},
/area/bridge)
"dHP" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
/turf/simulated/floor/plasteel{
dir = 0;
icon_state = "blue"
@@ -95199,7 +90483,7 @@
/area/bridge)
"dHR" = (
/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
+/obj/structure/window/reinforced/polarized{
dir = 8
},
/obj/item/mmi,
@@ -95209,7 +90493,9 @@
},
/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{
@@ -95285,14 +90571,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
@@ -95314,19 +90599,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
- },
/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
@@ -95339,12 +90629,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;
@@ -95352,11 +90641,10 @@
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;
@@ -95367,18 +90655,12 @@
},
/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"
},
@@ -95390,8 +90672,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;
@@ -95409,6 +90694,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" = (
@@ -95418,6 +90709,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"
@@ -95435,8 +90732,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"
@@ -95449,6 +90746,9 @@
/obj/machinery/status_display{
pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -95468,24 +90768,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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/library/abandoned)
"dIt" = (
/obj/structure/cable{
d1 = 1;
@@ -95493,10 +90781,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -95527,59 +90811,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
- },
-/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
- },
-/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
- },
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
-"dIF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/wall,
-/area/hallway/secondary/exit)
+/area/maintenance/apmaint)
"dIG" = (
/obj/structure/cable{
d1 = 1;
@@ -95587,14 +90841,12 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/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)
@@ -95645,14 +90897,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
@@ -95678,13 +90922,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;
@@ -95692,9 +90929,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"
@@ -95712,6 +90950,9 @@
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
},
@@ -95724,9 +90965,10 @@
icon_state = "4-8";
tag = ""
},
-/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{
dir = 8;
icon_state = "whitegreencorner"
@@ -95750,8 +90992,8 @@
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
@@ -95767,8 +91009,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;
@@ -95776,7 +91019,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"
@@ -95784,21 +91029,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
- },
-/turf/simulated/wall,
-/area/medical/virology)
"dJh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light_switch{
pixel_x = -26;
pixel_y = 4
@@ -95815,9 +91051,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -95842,7 +91075,7 @@
dir = 8;
icon_state = "whitebluecorner"
},
-/area/medical/surgery)
+/area/medical/surgery1)
"dJl" = (
/obj/structure/cable{
d2 = 4;
@@ -95898,7 +91131,6 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -95937,20 +91169,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"
@@ -95960,22 +91179,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{
@@ -95993,6 +91199,7 @@
},
/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" = (
@@ -96016,6 +91223,9 @@
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"
},
@@ -96059,7 +91269,6 @@
},
/area/medical/surgery)
"dJP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
@@ -96075,21 +91284,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
},
@@ -96097,18 +91298,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"
},
@@ -96120,7 +91321,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"
},
@@ -96149,10 +91353,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
- },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -96165,18 +91365,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"
@@ -96192,7 +91403,6 @@
},
/area/chapel/office)
"dKe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 4
@@ -96201,6 +91411,9 @@
dir = 4;
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -96249,12 +91462,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
@@ -96287,6 +91500,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" = (
@@ -96324,11 +91538,6 @@
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;
@@ -96356,7 +91565,7 @@
},
/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"dKz" = (
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
@@ -96394,7 +91603,6 @@
/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
@@ -96409,7 +91617,6 @@
d2 = 8;
icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light{
dir = 4
},
@@ -96439,12 +91646,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;
@@ -96452,20 +91658,7 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
-/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
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -96494,11 +91687,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"
@@ -96532,6 +91720,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dKV" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -96544,10 +91733,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"
},
@@ -96565,17 +91761,18 @@
icon_state = "2-8";
tag = ""
},
+/obj/effect/decal/warning_stripes/yellow,
/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;
+ initialize_directions = 11
},
-/obj/effect/decal/warning_stripes/yellow,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dKY" = (
/obj/structure/cable{
d1 = 1;
@@ -96583,11 +91780,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"
},
@@ -96599,17 +91797,14 @@
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
@@ -96635,7 +91830,6 @@
},
/area/medical/virology)
"dLc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Mining Dock External";
dir = 8
@@ -96647,9 +91841,6 @@
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dLd" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/sink{
dir = 8;
pixel_x = -12;
@@ -96662,7 +91853,6 @@
/turf/simulated/floor/plasteel,
/area/medical/virology)
"dLe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "whitegreen"
@@ -96678,12 +91868,13 @@
/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;
pixel_x = 28
@@ -96698,42 +91889,56 @@
},
/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"
@@ -96754,20 +91959,21 @@
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{
@@ -96785,24 +91991,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"
@@ -96830,11 +92030,6 @@
/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
@@ -96844,8 +92039,8 @@
},
/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"
@@ -96856,6 +92051,9 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -96869,43 +92067,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;
@@ -96918,38 +92103,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"
@@ -96984,16 +92166,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
@@ -97002,6 +92174,7 @@
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dLP" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -97014,7 +92187,6 @@
name = "Operating Theatre";
req_access_txt = "45"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/holosign/surgery{
id = "surgery2"
},
@@ -97028,9 +92200,6 @@
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"
@@ -97041,20 +92210,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" = (
@@ -97064,12 +92220,8 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/turf/simulated/floor/plasteel{
- dir = 4;
- icon_state = "whitegreencorner"
+ icon_state = "whitegreen"
},
/area/medical/virology)
"dLU" = (
@@ -97079,35 +92231,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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "whitegreencorner"
- },
-/area/medical/virology)
"dLX" = (
/obj/structure/cable{
d1 = 4;
@@ -97115,7 +92243,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
@@ -97126,13 +92253,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{
@@ -97143,17 +92263,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;
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "wood"
@@ -97170,9 +92283,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
@@ -97186,11 +92296,13 @@
/turf/simulated/floor/plating,
/area/library/abandoned)
"dMh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera{
c_tag = "Chapel Backroom";
dir = 8
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -97213,13 +92325,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{
@@ -97235,24 +92340,27 @@
},
/area/chapel/main)
"dMo" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/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;
@@ -97264,6 +92372,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"
@@ -97274,7 +92385,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"
@@ -97297,11 +92410,15 @@
tag = ""
},
/turf/simulated/floor/plasteel{
- dir = 8;
+ 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;
@@ -97319,29 +92436,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;
@@ -97359,14 +92482,14 @@
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;
+ dir = 8;
icon_state = "whitegreen"
},
/area/medical/virology)
@@ -97382,9 +92505,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;
@@ -97402,31 +92531,35 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/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{
+/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{
@@ -97435,6 +92568,10 @@
},
/area/medical/virology)
"dMD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -97446,36 +92583,18 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/virology)
-"dME" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4;
initialize_directions = 11
},
/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "whitegreencorner"
+ icon_state = "white"
},
/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,
@@ -97490,15 +92609,17 @@
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" = (
@@ -97523,38 +92644,7 @@
icon_state = "wood-broken"
},
/area/library/abandoned)
-"dML" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/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
- },
-/turf/simulated/floor/plasteel{
- icon_state = "wood"
- },
-/area/library/abandoned)
-"dMN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood{
- broken = 1;
- icon_state = "wood-broken"
- },
-/area/library/abandoned)
"dMO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/morgue{
name = "Occult Study"
},
@@ -97563,9 +92653,6 @@
},
/area/library/abandoned)
"dMP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -97586,29 +92673,33 @@
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
- },
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/obj/machinery/light{
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"
},
@@ -97626,14 +92717,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,
@@ -97656,11 +92739,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;
@@ -97696,13 +92774,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;
@@ -97712,7 +92783,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{
@@ -97722,32 +92796,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 = 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" = (
@@ -97757,42 +92835,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
- },
-/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" = (
@@ -97811,7 +92856,6 @@
},
/area/medical/virology)
"dNt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "whitegreencorner"
@@ -97824,34 +92868,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
- },
/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;
pixel_x = 28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "whitegreencorner"
@@ -97885,13 +92926,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" = (
@@ -97923,7 +92966,6 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -97935,10 +92977,11 @@
icon_state = "2-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -97957,14 +93000,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,
@@ -98011,7 +93046,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{
@@ -98029,7 +93067,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{
@@ -98038,9 +93079,11 @@
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,
@@ -98067,23 +93110,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"
},
@@ -98095,8 +93148,11 @@
icon_state = "4-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 5;
@@ -98110,13 +93166,16 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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" = (
@@ -98132,6 +93191,9 @@
icon_state = "2-8";
tag = ""
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -98147,7 +93209,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"
},
@@ -98164,12 +93231,11 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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"
},
@@ -98181,8 +93247,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"
@@ -98201,13 +93271,18 @@
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"
@@ -98224,7 +93299,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
dir = 8
@@ -98233,11 +93307,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;
@@ -98245,12 +93315,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"
},
@@ -98270,13 +93341,6 @@
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{
@@ -98300,7 +93364,6 @@
},
/area/hallway/secondary/exit)
"dOv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/item/twohanded/required/kirbyplants,
/obj/machinery/light{
dir = 8
@@ -98361,10 +93424,6 @@
/turf/simulated/floor/plating,
/area/medical/virology)
"dOG" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
/obj/machinery/light{
dir = 8
},
@@ -98374,29 +93433,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;
@@ -98404,10 +93453,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
- },
/obj/structure/sink{
dir = 8;
pixel_x = -12;
@@ -98419,19 +93464,14 @@
},
/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;
@@ -98442,10 +93482,8 @@
},
/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"
@@ -98458,10 +93496,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4;
- initialize_directions = 11
- },
/obj/structure/table/glass,
/obj/item/paper_bin,
/obj/machinery/newscaster{
@@ -98472,27 +93506,24 @@
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
- },
/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;
@@ -98500,40 +93531,24 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/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;
@@ -98580,6 +93595,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"
},
@@ -98587,7 +93603,7 @@
"dOZ" = (
/obj/machinery/alarm{
dir = 8;
- pixel_x = 25
+ pixel_x = 24
},
/turf/simulated/floor/plasteel{
dir = 4;
@@ -98606,87 +93622,47 @@
},
/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
- },
-/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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dPe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "neutralfull"
- },
-/area/hallway/secondary/exit)
-"dPf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/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
- },
/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
- },
/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{
icon_state = "whitegreen"
},
@@ -98698,18 +93674,16 @@
/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;
@@ -98717,7 +93691,6 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
},
@@ -98745,13 +93718,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;
@@ -98761,7 +93733,7 @@
},
/obj/effect/spawner/random_spawners/blood_maybe,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dPt" = (
/obj/structure/cable{
d1 = 4;
@@ -98771,11 +93743,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" = (
@@ -98791,11 +93765,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;
@@ -98803,8 +93783,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;
@@ -98812,11 +93798,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;
@@ -98825,11 +93817,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;
@@ -98843,9 +93841,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;
@@ -98860,11 +93864,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;
@@ -98875,26 +93885,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
- },
/obj/item/radio/intercom{
dir = 8;
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -98906,15 +93928,14 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 100;
- on = 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"
},
@@ -98925,50 +93946,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
- },
-/turf/simulated/floor/plasteel{
- dir = 8;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dPL" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
@@ -98977,11 +93961,9 @@
},
/area/chapel/main)
"dPM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
- },
+/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" = (
@@ -98997,14 +93979,13 @@
/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{
@@ -99013,27 +93994,22 @@
},
/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"
},
/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"
},
/area/medical/virology)
"dPX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/bed,
/obj/item/bedsheet/medical,
/turf/simulated/floor/plasteel{
@@ -99042,7 +94018,6 @@
},
/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,
@@ -99068,13 +94043,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;
@@ -99088,6 +94063,9 @@
/obj/effect/landmark/start{
name = "Coroner"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "neutralfull"
@@ -99101,7 +94079,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;
@@ -99115,7 +94093,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQg" = (
/obj/structure/cable{
d1 = 1;
@@ -99123,20 +94101,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_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;
- pixel_x = -22
+ pixel_x = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -99149,7 +94128,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light{
dir = 4
},
@@ -99157,17 +94135,12 @@
c_tag = "Cremator";
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{
@@ -99175,16 +94148,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"
},
@@ -99197,9 +94164,8 @@
},
/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,
@@ -99219,9 +94185,6 @@
/area/hallway/secondary/exit)
"dQq" = (
/obj/structure/table/reinforced,
-/obj/structure/mirror{
- pixel_x = 24
- },
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
@@ -99230,11 +94193,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";
@@ -99255,9 +94220,6 @@
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)
@@ -99276,7 +94238,7 @@
/turf/simulated/floor/plasteel{
icon_state = "whiteblue"
},
-/area/medical/surgery)
+/area/medical/surgery2)
"dQv" = (
/obj/structure/cable{
d1 = 4;
@@ -99297,29 +94259,38 @@
},
/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/effect/decal/warning_stripes/yellow,
+/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 = 4;
+ icon_state = "whitegreen"
},
-/obj/effect/decal/warning_stripes/yellow,
-/turf/simulated/floor/plasteel,
/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"
@@ -99330,6 +94301,10 @@
/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"
@@ -99340,16 +94315,20 @@
/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"
},
/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"
@@ -99375,10 +94354,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,
@@ -99394,6 +94369,8 @@
},
/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{
icon_state = "whitegreen"
},
@@ -99410,10 +94387,13 @@
/obj/item/reagent_containers/dropper,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ 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{
@@ -99447,11 +94427,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,
@@ -99492,18 +94470,16 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/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;
@@ -99513,11 +94489,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{
@@ -99532,7 +94506,7 @@
on = 1
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dQQ" = (
/obj/structure/cable{
d1 = 4;
@@ -99570,14 +94544,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"
},
@@ -99589,8 +94566,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"
@@ -99608,14 +94587,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,
@@ -99624,24 +94595,15 @@
},
/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{
@@ -99663,10 +94625,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
@@ -99681,9 +94639,6 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/door/airlock/engineering{
name = "Aft Port Solar Access";
req_access_txt = "10"
@@ -99705,7 +94660,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,
@@ -99714,31 +94672,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;
@@ -99746,12 +94712,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,
@@ -99760,14 +94726,15 @@
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- 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,
@@ -99788,7 +94755,7 @@
"dRp" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
@@ -99805,7 +94772,7 @@
"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,
@@ -99814,10 +94781,11 @@
/obj/machinery/newscaster{
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{
@@ -99835,6 +94803,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"
},
@@ -99848,6 +94818,9 @@
/obj/machinery/ai_status_display{
pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -99864,20 +94837,10 @@
icon_state = "whiteblue"
},
/area/medical/surgery2)
-"dRy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "grimy"
- },
-/area/chapel/main)
"dRz" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -99897,7 +94860,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;
@@ -99905,34 +94868,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
- },
/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{
@@ -99959,15 +94917,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{
@@ -99975,7 +94933,7 @@
name = "2maintenance loot spawner"
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dRM" = (
/obj/structure/cable{
d1 = 1;
@@ -99987,6 +94945,8 @@
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"
},
@@ -100000,13 +94960,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;
@@ -100018,60 +94976,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
- },
-/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
- },
-/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"
@@ -100079,8 +94990,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,
@@ -100102,7 +95017,7 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSb" = (
/obj/structure/cable{
d1 = 1;
@@ -100115,7 +95030,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;
@@ -100128,8 +95043,11 @@
/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/structure/sign/greencross,
/turf/simulated/wall,
@@ -100141,6 +95059,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"
},
@@ -100184,23 +95104,18 @@
},
/area/chapel/office)
"dSj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/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"
@@ -100208,7 +95123,6 @@
/area/chapel/office)
"dSl" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -100236,12 +95150,12 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSp" = (
@@ -100251,12 +95165,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";
@@ -100272,13 +95186,9 @@
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
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
"dSu" = (
@@ -100291,7 +95201,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
/area/hallway/secondary/exit)
@@ -100306,12 +95218,15 @@
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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" = (
@@ -100329,17 +95244,16 @@
},
/area/medical/surgery)
"dSD" = (
+/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/simple/hidden/scrubbers,
-/obj/effect/decal/warning_stripes/south,
/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)
@@ -100352,7 +95266,7 @@
},
/obj/effect/decal/warning_stripes/northwest,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSG" = (
/obj/structure/cable{
d1 = 4;
@@ -100368,7 +95282,7 @@
},
/obj/effect/decal/warning_stripes/north,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSH" = (
/obj/structure/cable{
d1 = 2;
@@ -100378,7 +95292,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,
@@ -100387,7 +95301,7 @@
pixel_x = 28
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSJ" = (
/obj/item/radio/intercom{
dir = 1;
@@ -100399,6 +95313,7 @@
/area/chapel/office)
"dSK" = (
/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -100411,7 +95326,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"
@@ -100432,7 +95346,7 @@
},
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dSP" = (
/turf/simulated/wall,
/area/security/checkpoint)
@@ -100449,7 +95363,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{
@@ -100472,15 +95386,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" = (
@@ -100488,7 +95403,6 @@
/turf/simulated/wall,
/area/security/checkpoint)
"dSV" = (
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -100499,7 +95413,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" = (
@@ -100511,9 +95425,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;
@@ -100524,7 +95437,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" = (
@@ -100557,24 +95470,30 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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;
@@ -100591,7 +95510,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,
@@ -100604,7 +95523,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";
@@ -100619,7 +95537,7 @@
},
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTk" = (
/obj/structure/cable{
d1 = 2;
@@ -100639,6 +95557,8 @@
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" = (
@@ -100648,7 +95568,7 @@
amount = 8
},
/turf/simulated/floor/plating,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dTm" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -100656,6 +95576,9 @@
dir = 8;
pixel_x = -28
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -100666,6 +95589,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"
},
@@ -100706,6 +95634,7 @@
/obj/machinery/status_display{
pixel_y = 32
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plasteel{
icon_state = "dark"
},
@@ -100738,6 +95667,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
@@ -100749,27 +95679,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" = (
@@ -100787,15 +95723,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;
@@ -100805,6 +95732,15 @@
pixel_x = -24;
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{
icon_state = "white"
},
@@ -100822,7 +95758,6 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 1;
icon_state = "red"
@@ -100852,12 +95787,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{
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{
@@ -100880,7 +95816,6 @@
},
/area/security/checkpoint)
"dTG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/chair,
/turf/simulated/floor/plasteel{
dir = 1;
@@ -100894,13 +95829,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"
@@ -100932,7 +95868,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,
@@ -100948,14 +95884,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"
@@ -100965,6 +95898,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 = "grimy"
},
@@ -100973,26 +95909,33 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
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
- },
/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
+/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"
@@ -101008,16 +95951,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
- },
/obj/item/paper_bin,
/obj/structure/table/wood,
/obj/item/pen,
@@ -101033,7 +95972,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;
@@ -101068,7 +96007,7 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -101084,7 +96023,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dUm" = (
/obj/structure/cable{
d1 = 4;
@@ -101100,6 +96039,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"
@@ -101112,9 +96057,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;
@@ -101170,7 +96114,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -101189,15 +96133,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;
@@ -101245,7 +96194,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" = (
@@ -101325,7 +96274,7 @@
"dUN" = (
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/obj/machinery/light_switch{
pixel_x = 26;
@@ -101349,9 +96298,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"
@@ -101373,9 +96321,6 @@
/turf/simulated/floor/carpet,
/area/chapel/office)
"dUR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/chair/office/dark{
dir = 1
},
@@ -101391,7 +96336,7 @@
},
/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{
@@ -101465,7 +96410,7 @@
/obj/structure/closet/secure_closet/security,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 6;
@@ -101549,13 +96494,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";
@@ -101594,8 +96533,11 @@
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"
@@ -101615,7 +96557,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)
@@ -101631,10 +96573,10 @@
/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"
},
@@ -101645,7 +96587,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{
@@ -101664,7 +96605,6 @@
/turf/simulated/floor/plating/airless,
/area/engine/engineering)
"dWa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -101672,6 +96612,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" = (
@@ -101731,23 +96677,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 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/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 = "Engineering Maintenance";
@@ -101755,8 +96698,9 @@
req_one_access_txt = null
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/engine/engineering)
+/area/maintenance/port)
"dWi" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/decal/warning_stripes/northeast,
@@ -101766,15 +96710,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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{
@@ -101788,14 +96731,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;
@@ -101803,19 +96743,20 @@
icon_state = "1-2";
tag = ""
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 101;
- on = 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{
@@ -101824,10 +96765,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;
@@ -101835,7 +96775,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"
@@ -101849,7 +96788,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{
@@ -101864,7 +96805,9 @@
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,
@@ -101881,7 +96824,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,
@@ -101894,7 +96839,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{
@@ -101904,20 +96851,23 @@
},
/obj/machinery/alarm{
dir = 1;
- 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,
@@ -101927,7 +96877,9 @@
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{
@@ -101948,16 +96900,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;
@@ -101965,24 +96914,19 @@
icon_state = "4-8";
tag = ""
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/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
+ name = "Arrivals External Access"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -102002,6 +96946,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"
@@ -102035,11 +96982,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
+ name = "Arrivals External Access"
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plasteel,
@@ -102051,13 +96996,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,
@@ -102078,9 +97027,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{
@@ -102122,7 +97068,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{
@@ -102131,12 +97080,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,
@@ -102145,10 +97093,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";
@@ -102156,10 +97106,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";
@@ -102167,6 +97118,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" = (
@@ -102206,14 +97159,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;
@@ -102221,8 +97174,9 @@
},
/area/medical/virology)
"dXc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1;
+ level = 2
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -102254,6 +97208,9 @@
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" = (
@@ -102261,6 +97218,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" = (
@@ -102270,15 +97230,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
- },
/turf/simulated/floor/plasteel{
dir = 5;
icon_state = "whitegreencorner"
@@ -102286,36 +97246,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
},
/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,
@@ -102342,11 +97299,8 @@
icon_state = "brokengrille"
},
/turf/simulated/floor/plasteel,
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dXp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/camera{
c_tag = "Medbay Hallway East";
dir = 1;
@@ -102371,16 +97325,16 @@
},
/area/medical/morgue)
"dXr" = (
-/obj/item/twohanded/required/kirbyplants,
-/obj/structure/noticeboard{
- pixel_x = 32
- },
/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" = (
@@ -102392,7 +97346,7 @@
dir = 8;
icon_state = "neutral"
},
-/area/maintenance/fpmaint2)
+/area/maintenance/apmaint)
"dXu" = (
/obj/machinery/light{
dir = 4
@@ -102406,10 +97360,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;
@@ -102425,13 +97380,13 @@
},
/area/medical/research)
"dXw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -102449,20 +97404,16 @@
},
/area/chapel/main)
"dXy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/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;
@@ -102479,9 +97430,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,
@@ -102535,7 +97483,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{
@@ -102554,15 +97505,18 @@
/turf/simulated/floor/plating,
/area/maintenance/portsolar)
"dXI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Chapel South";
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"
},
@@ -102573,13 +97527,16 @@
},
/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" = (
@@ -102749,6 +97706,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;
@@ -102756,16 +97714,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
},
@@ -102778,14 +97736,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;
@@ -102793,37 +97751,21 @@
},
/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
+/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"
@@ -102850,7 +97792,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,
@@ -102862,11 +97806,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,
@@ -102877,16 +97816,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,
@@ -102918,14 +97847,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"
@@ -102970,6 +97900,8 @@
/obj/effect/decal/warning_stripes/arrow{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plasteel{
icon_state = "white"
},
@@ -102978,7 +97910,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,
@@ -102987,7 +97921,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{
@@ -103190,27 +98126,27 @@
dir = 8;
icon_state = "redcorner"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZP" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plasteel{
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,
@@ -103219,7 +98155,7 @@
dir = 1;
icon_state = "whitehall"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -103227,14 +98163,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{
icon_state = "redfull"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"dZV" = (
/obj/docking_port/stationary{
dir = 8;
@@ -103261,12 +98197,6 @@
icon_state = "showroomfloor"
},
/area/medical/surgery1)
-"ehq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plasteel{
- icon_state = "white"
- },
-/area/medical/medbay)
"ejA" = (
/obj/structure/cable{
d1 = 1;
@@ -103363,7 +98293,7 @@
},
/obj/structure/lattice/catwalk,
/turf/space,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"exL" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -103374,7 +98304,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/plasteel{
dir = 8;
- icon_state = "neutralcorner"
+ icon_state = "purplecorner"
},
/area/hallway/primary/central)
"ezR" = (
@@ -103484,6 +98414,9 @@
},
/area/crew_quarters/theatre)
"eSe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/door/airlock/medical{
name = "Operating Theatre Storage";
req_access_txt = "45"
@@ -103491,7 +98424,7 @@
/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{
@@ -103598,9 +98531,8 @@
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -103617,7 +98549,6 @@
},
/obj/machinery/recharger,
/obj/structure/table/reinforced,
-/obj/item/key/security,
/obj/machinery/door_control{
id = "Secure Armory";
name = "Secure Armory Shutter Control";
@@ -103656,12 +98587,6 @@
/turf/simulated/floor/plating,
/area/security/brig)
"fBl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/structure/cable{
d2 = 4;
icon_state = "0-4"
@@ -103734,7 +98659,7 @@
},
/obj/structure/lattice/catwalk,
/turf/space,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"fHe" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
@@ -103807,16 +98732,16 @@
/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
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -103861,24 +98786,10 @@
icon_state = "red"
},
/area/security/processing)
-"gmN" = (
-/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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/starboard)
"goP" = (
/turf/simulated/wall,
/area/security/processing)
"gpX" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/landmark{
name = "blobstart"
},
@@ -103918,12 +98829,12 @@
},
/area/security/processing)
"gxd" = (
-/obj/structure/chair{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/chair{
+ dir = 1
+ },
/turf/simulated/floor/plasteel{
dir = 4;
icon_state = "red"
@@ -103983,17 +98894,17 @@
},
/area/security/brig)
"gGu" = (
+/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/plating,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"gGJ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -104041,12 +98952,10 @@
/area/hallway/primary/starboard)
"gKi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -104081,13 +98990,6 @@
"gTW" = (
/turf/simulated/floor/plasteel,
/area/security/securearmoury)
-"gYw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plasteel{
- dir = 5;
- icon_state = "arrival"
- },
-/area/hallway/secondary/entry)
"haD" = (
/obj/structure/cable{
d2 = 8;
@@ -104180,20 +99082,18 @@
},
/area/security/brig)
"hjo" = (
-/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)
"hmC" = (
-/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/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel{
icon_state = "whitebluecorner"
},
@@ -104203,13 +99103,16 @@
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"hos" = (
+/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{
@@ -104322,6 +99225,9 @@
/turf/simulated/wall,
/area/magistrateoffice)
"hTW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/camera{
c_tag = "Medbay Surgery East Storage";
dir = 1
@@ -104330,9 +99236,6 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -104343,6 +99246,21 @@
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{
@@ -104361,15 +99279,15 @@
/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
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -104433,14 +99351,14 @@
},
/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/disposalpipe/segment{
- dir = 4
- },
/obj/structure/table/wood,
/obj/machinery/computer/secure_data/laptop,
/turf/simulated/floor/plasteel{
@@ -104530,6 +99448,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/maintenance/starboard)
"iVV" = (
@@ -104605,10 +99524,16 @@
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/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -104663,18 +99588,27 @@
},
/area/security/warden)
"jCU" = (
-/obj/structure/sign/poster/official/random{
- pixel_y = 32
- },
/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)
@@ -104706,6 +99640,7 @@
},
/area/hallway/primary/central)
"jUH" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -104718,7 +99653,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -104743,32 +99677,33 @@
/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/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel,
-/area/maintenance/starboard)
+/area/maintenance/starboard2)
"kii" = (
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plasteel,
/area/security/securearmoury)
"kiL" = (
/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,
/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"
@@ -104783,6 +99718,7 @@
/area/security/permabrig)
"kkM" = (
/obj/vehicle/secway,
+/obj/item/key/security,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "vault"
@@ -104832,11 +99768,9 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "sol_inner";
locked = 1;
- name = "Arrivals External Access";
- req_access = null
+ name = "Arrivals External Access"
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
@@ -104849,11 +99783,11 @@
},
/area/security/detectives_office)
"kyq" = (
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/plasteel{
@@ -104862,14 +99796,14 @@
},
/area/security/prisonershuttle)
"kzg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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/warden)
"kCi" = (
@@ -104932,8 +99866,8 @@
/area/security/securearmoury)
"kVM" = (
/obj/structure/disposalpipe/trunk,
-/obj/effect/decal/warning_stripes/yellow/hollow,
/obj/machinery/disposal,
+/obj/effect/decal/warning_stripes/yellow/hollow,
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -105006,13 +99940,13 @@
},
/area/security/seceqstorage)
"loP" = (
+/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
},
@@ -105056,19 +99990,22 @@
},
/area/crew_quarters/courtroom)
"ltY" = (
+/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
},
/obj/effect/decal/warning_stripes/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plasteel,
/area/maintenance/starboard)
"luc" = (
@@ -105107,7 +100044,6 @@
opacity = 0
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "red"
@@ -105186,7 +100122,6 @@
},
/area/security/seceqstorage)
"lVO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/turretid/lethal{
control_area = "\improper Telecoms Central Compartment";
name = "Telecommunications Turret Control";
@@ -105220,8 +100155,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -105310,7 +100244,7 @@
tag = ""
},
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -105360,7 +100294,7 @@
"mqS" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/item/storage/box/chemimp,
/obj/item/storage/box/trackimp,
@@ -105392,6 +100326,12 @@
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;
@@ -105412,15 +100352,9 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/hos)
+/area/crew_quarters/heads/hos)
"mzg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -105429,6 +100363,15 @@
},
/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,
@@ -105498,6 +100441,20 @@
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,
@@ -105530,11 +100487,9 @@
"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
+ name = "Arrivals External Access"
},
/obj/machinery/access_button{
command = "cycle_exterior";
@@ -105755,6 +100710,15 @@
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{
@@ -105805,10 +100769,11 @@
},
/area/security/processing)
"obN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plasteel{
+ dir = 4;
+ icon_state = "neutral"
},
-/turf/simulated/floor/plating,
/area/maintenance/starboard)
"odY" = (
/obj/machinery/camera{
@@ -105818,7 +100783,7 @@
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/decal/warning_stripes/northeast,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"oei" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/plasteel{
@@ -105858,23 +100823,26 @@
/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
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
icon_state = "neutral"
},
-/area/maintenance/fsmaint)
+/area/maintenance/fore2)
"oBE" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/vending_refill/coffee,
@@ -105887,9 +100855,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;
@@ -105926,8 +100891,8 @@
tag = ""
},
/obj/effect/decal/warning_stripes/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/obj/structure/cable{
d1 = 2;
@@ -105970,7 +100935,21 @@
icon_state = "redcorner"
},
/area/security/permasolitary)
+"pfp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atm{
+ pixel_x = 32
+ },
+/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";
@@ -105981,9 +100960,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/poddoor{
density = 0;
icon_state = "open";
@@ -106220,8 +101196,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1;
- initialize_directions = 11
+ dir = 1
},
/turf/simulated/floor/plasteel{
dir = 1;
@@ -106269,21 +101244,19 @@
},
/obj/machinery/door/airlock/external{
frequency = 1379;
- icon_state = "door_locked";
id_tag = "solar_xeno_outer";
locked = 1;
name = "Engineering External Access";
- req_access = null;
req_access_txt = "10;13"
},
/obj/effect/decal/warning_stripes/west,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"qVp" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/light{
dir = 8
@@ -106297,7 +101270,7 @@
/area/security/warden)
"qXF" = (
/obj/machinery/alarm{
- pixel_y = 23
+ pixel_y = 24
},
/obj/structure/cable{
d1 = 2;
@@ -106412,10 +101385,7 @@
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plasteel{
icon_state = "neutralcorner"
},
@@ -106442,7 +101412,7 @@
/turf/simulated/floor/plasteel/airless{
icon_state = "solarpanel"
},
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"rsF" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -106505,6 +101475,9 @@
},
/area/security/securearmoury)
"rSI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"rTc" = (
@@ -106514,7 +101487,7 @@
/turf/simulated/floor/plasteel{
icon_state = "grimy"
},
-/area/security/detectives_office)
+/area/crew_quarters/theatre)
"rTE" = (
/obj/structure/cable{
d1 = 1;
@@ -106523,8 +101496,7 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4;
- initialize_directions = 11
+ dir = 4
},
/obj/effect/decal/warning_stripes/south,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
@@ -106624,12 +101596,12 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/entry)
"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/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel{
dir = 8;
icon_state = "darkblue"
@@ -106691,6 +101663,7 @@
},
/area/security/processing)
"sEN" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -106703,7 +101676,6 @@
icon_state = "2-8";
tag = ""
},
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -106722,11 +101694,11 @@
},
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/obj/effect/decal/warning_stripes/southeast,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"sTz" = (
/obj/structure/closet/secure_closet/security,
/turf/simulated/floor/plasteel{
@@ -106869,6 +101841,15 @@
},
/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,
@@ -106931,13 +101912,13 @@
/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/structure/disposalpipe/segment,
/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d2 = 2;
@@ -107030,12 +102011,10 @@
/area/crew_quarters/theatre)
"tVa" = (
/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
+ dir = 8
},
/turf/simulated/floor/plasteel{
dir = 8;
@@ -107200,7 +102179,7 @@
},
/obj/effect/decal/warning_stripes/south,
/turf/simulated/floor/plating,
-/area/maintenance/auxsolarstarboard)
+/area/maintenance/starboardsolar)
"uCE" = (
/obj/machinery/status_display,
/turf/simulated/wall/r_wall,
@@ -107226,16 +102205,16 @@
dir = 1;
icon_state = "whiteblue"
},
-/area/crew_quarters/theatre)
+/area/medical/surgery2)
"uSJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/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/main)
"uUu" = (
@@ -107252,9 +102231,8 @@
/turf/simulated/floor/plating,
/area/security/permabrig)
"uVQ" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/obj/effect/landmark{
name = "xeno_spawn";
@@ -107393,7 +102371,7 @@
/obj/effect/decal/warning_stripes/southwest,
/obj/machinery/alarm{
dir = 1;
- pixel_y = -25
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
dir = 10;
@@ -107447,9 +102425,6 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"vCk" = (
@@ -107468,15 +102443,9 @@
},
/area/security/warden)
"vDg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/machinery/alarm{
dir = 1;
- pixel_y = -22
+ pixel_y = -24
},
/turf/simulated/floor/plasteel{
icon_state = "dark"
@@ -107494,6 +102463,17 @@
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,
@@ -107517,12 +102497,10 @@
tag = ""
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8;
- initialize_directions = 11
+ dir = 8
},
/turf/simulated/floor/plasteel{
icon_state = "red"
@@ -107559,7 +102537,7 @@
/obj/item/restraints/handcuffs,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -23
+ pixel_x = -24
},
/obj/machinery/light{
dir = 8
@@ -107629,12 +102607,18 @@
/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,
@@ -107679,7 +102663,6 @@
name = "Prison Lockdown Blast Doors";
opacity = 0
},
-/obj/effect/spawner/window/reinforced,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -107851,15 +102834,15 @@
},
/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
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/plasteel{
icon_state = "showroomfloor"
},
@@ -107881,6 +102864,13 @@
/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{
@@ -107903,21 +102893,24 @@
},
/area/hallway/primary/starboard)
"xQW" = (
+/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
},
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/starboard)
"xUI" = (
@@ -107937,9 +102930,6 @@
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)
@@ -108007,10 +102997,10 @@
/turf/simulated/floor/plasteel,
/area/security/permasolitary)
"ygv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/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{
@@ -114067,17 +109057,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
@@ -114324,7 +109314,7 @@ abi
abi
abi
bku
-bJP
+bpo
bLM
bms
bPC
@@ -114334,7 +109324,7 @@ bVH
brq
bms
bnR
-bJP
+bpo
brr
abj
aaa
@@ -114581,17 +109571,17 @@ bpm
bmo
bpm
bnM
-bJP
+bpo
brr
bNM
bNM
bNM
bTt
-bVI
+bNM
bNM
bNM
bkt
-bJP
+bpo
brs
abi
aaa
@@ -114831,13 +109821,13 @@ brp
brp
brp
bwM
-bxW
-bzu
-bzu
-bzu
-bzu
-bzu
-bzu
+brp
+brp
+brp
+brp
+brp
+brp
+brp
bJQ
brs
bNM
@@ -114848,7 +109838,7 @@ bVJ
ccx
bNM
bkt
-bJP
+bpo
brr
abi
abi
@@ -115101,11 +110091,11 @@ bNM
bPH
bSr
bTv
-bVK
+bXI
cgI
bNM
bkt
-bJP
+bpo
bLS
bmo
bpm
@@ -115362,10 +110352,10 @@ bVL
chu
bNM
bku
-bJY
-bzu
-bzu
-chS
+boe
+brp
+brp
+brp
brp
brp
cpb
@@ -115614,8 +110604,8 @@ btd
bNM
bPP
bUD
-bTx
-bVM
+bTL
+bXI
chE
bNM
aaa
@@ -115871,7 +110861,7 @@ btd
bNM
bPQ
bXm
-bTy
+bTI
bVN
cmx
bNM
@@ -116117,19 +111107,19 @@ btd
btd
bwG
bxY
-bzx
+byg
bBd
bCU
bBd
bBf
-bIg
+bxY
bBf
bwG
bNM
bNM
bNM
bTz
-bVI
+bNM
bNM
bNM
qrT
@@ -116375,17 +111365,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
@@ -116623,37 +111613,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
@@ -116888,25 +111878,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
@@ -117136,7 +112126,7 @@ aaa
aaa
abj
bkt
-bmq
+bav
bnP
bvv
bRG
@@ -117145,14 +112135,14 @@ btd
bwF
bwK
byc
-bLP
+bwJ
bBg
bCX
bEE
btd
bIj
bJU
-bCU
+biX
bNP
bPL
bRB
@@ -117161,15 +112151,15 @@ bVR
bXJ
bZh
caX
-ccW
+boh
cgu
ccW
chW
qrT
cKl
-bmq
+bav
bnP
-bpq
+btk
brr
abj
aaa
@@ -117393,40 +112383,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
@@ -117651,36 +112641,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
@@ -117909,7 +112899,7 @@ abi
aaa
bms
bnR
-bpo
+bJP
brs
aaa
btd
@@ -117917,28 +112907,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
@@ -118166,14 +113156,14 @@ abi
abi
abi
bku
-bpo
+bJP
brr
abj
btd
btd
bwG
byg
-bzC
+bIn
bBd
bCU
bBd
@@ -118183,9 +113173,9 @@ bBf
bwG
bNM
bNM
-bRF
+bNM
bTH
-bVI
+bNM
bNM
bNM
qrT
@@ -118195,7 +113185,7 @@ qrT
qrT
qrT
bkt
-bpo
+bJP
brr
abi
abi
@@ -118423,7 +113413,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brs
aaa
btd
@@ -118452,7 +113442,7 @@ qrT
qrT
abj
bku
-bpo
+bJP
brs
abi
aaa
@@ -118680,7 +113670,7 @@ aaa
aaa
abj
bkt
-bpo
+bJP
brs
abj
abj
@@ -118697,9 +113687,9 @@ bzv
btd
bNM
bQC
-bRH
-bTJ
-bVK
+bXI
+bTL
+bXI
bXM
bNM
aaa
@@ -118709,7 +113699,7 @@ bmo
bpm
bmo
cnY
-bpo
+bJP
brr
abi
aaa
@@ -118937,7 +113927,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brr
alW
abj
@@ -118954,18 +113944,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
@@ -119194,7 +114184,7 @@ aaa
aaa
abi
bkt
-bpo
+bJP
brw
bpm
bmo
@@ -119211,9 +114201,9 @@ bmo
aaa
bNM
bRt
-bRI
+bXI
bTL
-bVM
+bXI
bXO
bNM
bkt
@@ -119451,26 +114441,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
@@ -119725,9 +114715,9 @@ bJP
bLR
bNM
bNM
-bRF
+bNM
bTM
-bVI
+bNM
bNM
bNM
bku
@@ -120238,14 +115228,14 @@ bkt
bJY
bLT
bRv
-bzu
-bRK
+chS
+bVW
bTO
bVW
-bzu
-bzu
-bzu
-bJQ
+chS
+chS
+chS
+cpe
brs
abj
abj
@@ -120496,8 +115486,8 @@ bnR
bLU
bLM
bPC
-bRL
-bTP
+bmq
+bTS
bpq
brq
bms
@@ -120755,7 +115745,7 @@ brr
bku
bRL
bTQ
-bpq
+bmY
brr
abi
abi
@@ -121010,7 +116000,7 @@ aaa
bUJ
aaa
bku
-bRL
+bmq
bTR
bpq
brr
@@ -121267,7 +116257,7 @@ aaa
bUJ
aaa
bku
-bRL
+bmq
bTS
bpq
brr
@@ -127719,15 +122709,15 @@ bXU
bXU
abj
cPY
-bYh
-bYh
+cHA
+cHA
cJK
-bYh
-bYh
-bYh
+cHA
+cHA
+cHA
cJK
-bYh
-bYh
+cHA
+cHA
cCx
cJK
cCx
@@ -127974,13 +122964,13 @@ cie
cie
cie
bXU
-cEz
+dmq
cGw
-bYh
+cHA
cjV
cJP
cLC
-bYh
+cHA
cQs
cRD
cTi
@@ -128231,16 +123221,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
@@ -128453,11 +123443,11 @@ abj
abi
abj
bwN
-bzF
-bBk
bzE
-bEH
-bGr
+bzE
+bzE
+bzE
+bzE
bwN
abj
abj
@@ -128490,19 +123480,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
@@ -128729,7 +123719,7 @@ cbb
cxG
abj
czw
-cjH
+cwt
clp
cuO
clp
@@ -128739,7 +123729,7 @@ clp
clp
cuO
clp
-dQE
+cwv
czw
abj
cCg
@@ -128749,17 +123739,17 @@ bXU
cFP
cHe
cIv
-cJN
+dhG
cLA
cMS
cLA
cQu
cLA
cLA
-cEG
+drn
cWm
cXT
-bYh
+cHA
abj
aaa
aaa
@@ -128969,8 +123959,8 @@ abj
bwN
bzH
bBo
-bBo
-bBo
+bfO
+bge
bGu
bwN
abj
@@ -129003,19 +123993,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
@@ -129230,10 +124220,10 @@ bDf
bEI
bGv
bwN
-bwP
+byl
bPD
-bRw
-bwP
+byl
+byl
abj
csy
bWd
@@ -129260,8 +124250,8 @@ cCg
cbb
cDv
bXU
-cbC
-cHg
+drn
+drn
cIw
cIx
cIx
@@ -129272,8 +124262,8 @@ cIx
cIx
cIx
cWn
-cFR
-bYh
+dtU
+cHA
abj
abj
aaa
@@ -129490,7 +124480,7 @@ bwN
bJZ
bPE
bVt
-bwP
+byl
bZf
ctI
ctJ
@@ -129517,8 +124507,8 @@ cCg
cDu
dUG
bXU
-cbC
-cHh
+drn
+cXU
cIx
cKt
cMU
@@ -129530,7 +124520,7 @@ deZ
cIx
cWo
cXU
-bYh
+cHA
abj
abj
abj
@@ -129746,8 +124736,8 @@ bGx
bwN
byl
bPF
-bVz
-bwP
+byl
+byl
bRT
bUc
bWf
@@ -129774,8 +124764,8 @@ cbb
cDv
bXU
bXU
-cFQ
-cHh
+cWn
+cXU
cIy
cLx
cOx
@@ -129786,8 +124776,8 @@ cOx
dfd
cIx
cWn
-cXV
-bYh
+dsr
+cHA
aMW
dbz
aMW
@@ -129968,9 +124958,9 @@ abj
aGY
aGY
aLr
-aLa
-aMz
-aNX
+aGY
+aGZ
+aNV
aPq
aQN
aGZ
@@ -129993,18 +124983,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
@@ -130033,7 +125023,7 @@ bXU
cEA
cFR
cFO
-cJM
+bLP
cJR
cLD
cMV
@@ -130250,7 +125240,7 @@ bry
btf
aSN
acF
-bwN
+bzL
byi
bzL
bBt
@@ -130260,7 +125250,7 @@ bGy
bLX
bKb
bMe
-bNX
+bRU
bQe
bRU
bUe
@@ -130300,19 +125290,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
@@ -130514,7 +125504,7 @@ bPK
bDk
bEO
bIp
-bwT
+byl
bKc
bMf
bNY
@@ -130560,8 +125550,8 @@ cWr
cXX
cLz
dbG
-dbB
-dcN
+aUp
+aRm
aSP
aUp
dhw
@@ -130764,21 +125754,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
@@ -130803,7 +125793,7 @@ cbb
cDv
bXU
cFU
-cHh
+cXU
cIx
cIx
cLG
@@ -130814,10 +125804,10 @@ cLG
cIx
cIx
cWs
-cKe
+dlM
cLz
dag
-dbC
+dcX
dcO
deA
dfM
@@ -130999,7 +125989,7 @@ aJO
aLe
aMC
aOb
-aPu
+aOb
aOb
aOg
aOg
@@ -131024,10 +126014,10 @@ aOg
bwP
byl
byl
-bBu
+byl
bEJ
byl
-bGz
+bgJ
bIq
bKd
bMg
@@ -131059,8 +126049,8 @@ cCg
cDt
dUI
bXU
-czD
-cHh
+cWw
+cXU
cIx
cJS
cLH
@@ -131070,9 +126060,9 @@ cOA
cRF
cTk
cIx
-ckb
+cFY
cXY
-bYh
+cHA
dah
dbD
dcP
@@ -131254,10 +126244,10 @@ aGZ
aIx
aJO
aLf
-aMD
-aOc
-aPv
-aQS
+aMC
+aOb
+aPH
+aPH
aSA
aTW
aVC
@@ -131284,13 +126274,13 @@ bzN
bBv
bDm
bET
-bGz
+bgJ
bIr
bKe
bMh
bOa
-bOa
-bOa
+bjz
+bjP
bUh
bWk
bXU
@@ -131317,7 +126307,7 @@ cbb
cDv
bXU
cFU
-cHh
+cXU
cIx
cJU
cLI
@@ -131329,10 +126319,10 @@ cLH
cIx
cWt
cXY
-bYh
+cHA
dai
dbE
-dcQ
+aRm
deC
dcX
dnH
@@ -131513,7 +126503,7 @@ aJP
aLg
aMI
aOh
-aPw
+aPH
aQT
aSB
aTX
@@ -131539,9 +126529,9 @@ bwQ
byn
bzN
bBw
-bDn
+bDp
bEQ
-bGz
+bgJ
bIs
bKf
bMi
@@ -131574,7 +126564,7 @@ cCh
dVy
bXU
cFV
-cHg
+drn
cIB
cJV
cLJ
@@ -131585,10 +126575,10 @@ cRH
cTl
cIx
cWt
-cXZ
-bYh
+dsr
+cHA
aOs
-dfT
+dfU
dcR
deD
dfN
@@ -131770,7 +126760,7 @@ aJQ
aLh
aMF
aOb
-aPw
+aPH
aQU
aSC
aTY
@@ -131790,15 +126780,15 @@ aUi
bpA
brB
aTZ
-beI
+ban
bvF
-bwR
-byo
+bwP
+bFg
bzO
bBx
bDo
bER
-bGz
+bgJ
bIt
bKf
bMj
@@ -131831,22 +126821,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
@@ -132027,20 +127017,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
@@ -132055,7 +127045,7 @@ bzN
bBy
bDp
bES
-bGz
+bgJ
bIu
bKg
bMk
@@ -132086,7 +127076,7 @@ bXU
bXU
cCj
cDz
-bXU
+bQr
cFW
dWg
cHi
@@ -132096,12 +127086,12 @@ cNc
cOE
cQB
cRJ
-cOG
+cjH
cUS
cXS
-cHz
-cwC
-dak
+drn
+cHA
+aUp
dfU
dcT
deD
@@ -132267,16 +127257,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
@@ -132312,7 +127302,7 @@ bzP
bBz
bDq
bEU
-bGz
+bgJ
bIv
bKh
bMl
@@ -132343,14 +127333,14 @@ dWi
cdd
cbi
dWb
-bXU
-cFX
-cHm
-cIA
-cJY
-cLL
-cNd
-cOD
+bQr
+cFY
+dsr
+cIx
+cJW
+cLM
+cNe
+cdy
cQC
cRK
cJW
@@ -132531,23 +127521,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
@@ -132560,16 +127550,16 @@ bmy
bnV
bpD
brE
-btk
+ban
bus
bvI
-bwT
-byr
-bzQ
-bBu
+bwP
+byl
+byl
+byl
bDr
byl
-bGz
+bgJ
bIw
bKk
bMm
@@ -132600,14 +127590,14 @@ ceV
bXU
cCl
cDA
-bXU
+bQr
cFY
-cHn
+dlM
cIx
cJZ
cLM
cNe
-cOD
+ceM
cQD
cRL
cTm
@@ -132615,17 +127605,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
@@ -132781,7 +127771,7 @@ abj
atd
atd
atd
-avy
+aLs
aFd
axI
aFd
@@ -132804,7 +127794,7 @@ aSF
aUb
aVH
aXm
-aYC
+beJ
bao
bbQ
bdp
@@ -132841,7 +127831,7 @@ cbk
cde
ceW
cid
-cjM
+bpp
cjQ
clr
cmT
@@ -132852,28 +127842,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
@@ -133055,10 +128045,10 @@ aJT
aLn
aML
aOg
-aPA
+aPH
aQZ
aSD
-aTZ
+aUc
aVI
aXn
aYD
@@ -133068,8 +128058,8 @@ bap
beK
aXq
bhk
-ban
-bkD
+biT
+bkM
bmA
aOb
bpF
@@ -133081,7 +128071,7 @@ bwP
byl
byl
bBB
-bEP
+bLW
bIy
bGA
bKj
@@ -133114,8 +128104,8 @@ czk
cAE
cCm
cdh
-bXU
-cFZ
+bQr
+cGc
cHp
cIx
cKb
@@ -133126,7 +128116,7 @@ cOA
cOG
cJT
cIx
-cWn
+cFU
cYd
cLz
aOs
@@ -133298,7 +128288,7 @@ auF
avA
awJ
axJ
-aCW
+aCp
ayV
aCS
aCS
@@ -133312,13 +128302,13 @@ aJW
aLo
aMM
aOj
-aTr
+aUM
aUM
aSD
-aTZ
+aUc
aVJ
aXo
-aYE
+aXo
aOb
aOb
aOb
@@ -133337,7 +128327,7 @@ aOg
bwV
byt
bzS
-bBC
+bEV
bDt
bEV
bQp
@@ -133350,8 +128340,8 @@ bSd
bUp
bWp
cxE
-bZu
-cbm
+bZx
+cbo
cdh
ceY
cig
@@ -133369,10 +128359,10 @@ cbn
czp
czl
cAF
-cCn
-cDF
-bXU
-cGa
+cbo
+cdh
+bQr
+cWt
drs
cIx
cIx
@@ -133383,7 +128373,7 @@ cIx
cIw
cIw
cIx
-cHg
+cWw
cYe
cfn
cfn
@@ -133553,7 +128543,7 @@ atd
aub
auF
avB
-awK
+awR
axL
ayL
azT
@@ -133563,16 +128553,16 @@ ayP
aCj
aDf
aFe
-aHf
+aHh
aID
aCk
-aLq
+wAP
aMN
aOg
-aPA
+aPH
aQZ
aSD
-aTZ
+aUc
aVI
aOb
aYF
@@ -133580,9 +128570,9 @@ baq
bbR
bdq
beL
-bge
-bhm
-aYJ
+aOb
+bhk
+biT
bkF
bmC
aYK
@@ -133592,22 +128582,22 @@ aYK
buv
aOg
bwW
-byu
-bBm
-bBD
+bIA
+bIA
+bIA
bDu
bEW
bGC
-bEW
-bKm
+bIA
+bKp
bMp
bGz
bQm
-bSc
-bUo
-bWq
+bjT
+blH
+bnj
cxE
-bZv
+bZx
cbn
cdh
ceY
@@ -133631,7 +128621,7 @@ cDD
cEB
cGd
cHq
-cir
+cly
cKc
cLP
cNg
@@ -133639,11 +128629,11 @@ cOM
cLP
cRN
cTo
-csE
+cAS
cWx
cYf
cLP
-dao
+dro
dbK
dcY
ddI
@@ -133655,7 +128645,7 @@ cZt
dmV
dpT
dpW
-dhJ
+dso
dsn
dtM
duQ
@@ -133813,14 +128803,14 @@ avC
awL
axM
ayM
-azX
-azX
-azX
-ayM
+aAd
+aAd
+aEk
+aEV
aCj
aEf
aFf
-aHg
+aHl
aIE
atd
aLp
@@ -133828,12 +128818,12 @@ atd
aOg
aPC
aRb
-aSG
+aSD
aUc
-aVK
+aVI
aXp
aYG
-bar
+ban
bbS
bdr
beM
@@ -133850,13 +128840,13 @@ buw
bvK
bwX
byv
-bzT
+bKr
bBE
-bDv
+bDw
bEX
bGD
bIA
-bKn
+bKp
bMq
bGz
bVr
@@ -133864,7 +128854,7 @@ bTV
bWI
bOf
cxF
-bZv
+bZx
cbo
cdh
ceZ
@@ -133885,34 +128875,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
@@ -134064,17 +129054,17 @@ aaa
abi
abj
atd
-auc
-auH
-avD
+aue
+auI
+aLu
awH
axO
ayM
azY
aBi
aCg
-aCX
-aEg
+aDb
+ayM
aFg
aFe
aHh
@@ -134083,10 +129073,10 @@ atd
aPE
aRa
aOg
-aPA
+aPH
aRc
aSD
-aTZ
+aUc
aVI
aOb
aYH
@@ -134105,15 +129095,15 @@ brJ
btn
bux
aOg
-bwP
-bwP
-bwP
+byl
+byl
+byl
bBF
-bDv
+bDw
bEX
bGE
bEX
-bKo
+bKp
bMr
bGz
bGz
@@ -134122,23 +129112,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
@@ -134146,30 +129136,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
@@ -134333,17 +129323,17 @@ azZ
aCY
aEh
aFh
-aFi
-aHi
+aJs
+aHl
aIG
aJV
aLs
aMP
aOi
-aPD
-aRd
+aPH
+aQZ
aSD
-aTZ
+aUc
aVL
aXo
aXo
@@ -134361,27 +129351,27 @@ bpK
brK
bto
buy
-bvL
+aYO
bwY
-byw
-bzU
+bOg
+bzW
bBG
bDw
-bEY
+bIA
bGF
-bIB
+bEX
bKp
-bMs
+bMu
bOg
bQq
-bTW
+bWK
bWK
bYo
bXZ
bZx
cbp
-cdi
-cfb
+cgN
+bos
cgN
cfb
cgN
@@ -134389,22 +129379,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
@@ -134412,21 +129402,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
@@ -134594,7 +129584,7 @@ aFX
aGi
aIH
aJZ
-aLt
+aMQ
aMQ
aOm
aTT
@@ -134615,7 +129605,7 @@ bkJ
bmG
bob
bpL
-bmG
+bob
btp
buz
bvM
@@ -134639,29 +129629,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
@@ -134669,7 +129659,7 @@ cKo
cKo
cKo
cWy
-cEz
+dmq
cZm
dap
dbL
@@ -134677,16 +129667,16 @@ dcZ
deI
cZw
dhB
-deJ
+cDF
dYp
cZt
-cYA
+cwq
deI
dpV
drh
dsp
deJ
-dhJ
+dso
cZt
abj
aaa
@@ -134848,25 +129838,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
@@ -134877,23 +129867,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
@@ -134905,20 +129895,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
@@ -134926,11 +129916,11 @@ cIM
cIM
cIM
cIM
-cEz
+dmq
dHk
dap
cZt
-cYA
+cwq
deI
dkz
dkz
@@ -134940,7 +129930,7 @@ cZt
dmT
deI
deJ
-dfV
+cQX
dkA
dfW
dYG
@@ -135093,8 +130083,8 @@ abi
abj
atd
aue
-auJ
-avH
+auI
+aLs
awQ
axS
ayM
@@ -135102,13 +130092,13 @@ aAc
aBk
aCh
aDb
-aEg
+ayM
ayM
aFZ
aHh
aID
atd
-aLq
+wAP
aNZ
aOg
aPG
@@ -135117,21 +130107,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
@@ -135140,25 +130130,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
@@ -135170,12 +130160,12 @@ cCd
cAO
cDB
cDK
-clv
+byr
cGg
-cbC
-cbC
-czD
-cEz
+drn
+drn
+drn
+dmq
cIH
cOJ
cIM
@@ -135183,9 +130173,9 @@ cIM
cTp
cOJ
cIH
-cEz
-cFU
-ckc
+dmq
+cWn
+dar
cZt
ddc
deI
@@ -135197,7 +130187,7 @@ cIW
dmU
deJ
dhJ
-dfV
+cQX
dYD
dfW
duS
@@ -135357,9 +130347,9 @@ axN
ayM
aAd
aAd
-aAd
-ayM
-aCT
+aEs
+aFo
+aDc
aEj
aGa
aHl
@@ -135381,14 +130371,14 @@ aYK
aYK
bgg
ban
-biX
+ban
bkM
bmJ
-boe
-bpO
+aOg
+brN
brN
bts
-buC
+buD
bvN
bxb
byz
@@ -135396,12 +130386,12 @@ bzX
bBJ
aOg
bFc
-bGI
+bGH
bIF
bKr
bMw
-bOh
bQs
+bOn
bSk
bUv
bWu
@@ -135422,17 +130412,17 @@ cst
clv
cuY
cwz
-cxM
-czq
-cAK
+cpy
+bAq
+cAM
cCt
cDL
-clv
+byr
cGh
cHs
cIG
cKi
-cEz
+dmq
cNk
cOK
cQE
@@ -135440,16 +130430,16 @@ cRP
cTq
cUT
cVh
-cEz
-cKe
+dmq
+dlM
daq
dbM
dkp
deL
dfR
-dfR
+cyE
djg
-dYr
+cHY
cIW
dmW
deI
@@ -135607,7 +130597,7 @@ abi
abj
atd
aub
-auK
+axl
avI
awR
axL
@@ -135638,11 +130628,11 @@ bbW
beP
bgh
bhp
-biY
+bhp
bkN
bmK
aOg
-bpP
+brO
brO
btt
buD
@@ -135654,26 +130644,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
@@ -135684,12 +130674,12 @@ czu
cAL
cCu
cDM
-clv
+byr
cGi
-cHv
-cEz
+dmq
+dmq
dgr
-bYh
+cHA
cNm
cOO
cRQ
@@ -135697,21 +130687,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
@@ -135864,13 +130854,13 @@ abj
abj
atd
auf
-auK
+axl
avI
awS
axT
ayI
azV
-aAh
+aCU
aCU
aEe
aFV
@@ -135904,22 +130894,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
@@ -135941,9 +130931,9 @@ czq
cAM
cCt
cED
-clv
+byr
cGi
-cHv
+dmq
cII
cKk
cIL
@@ -135954,8 +130944,8 @@ cTt
cRR
dWl
dWt
-cEz
-cFU
+dmq
+cWn
daq
cZt
cZt
@@ -135968,7 +130958,7 @@ cZt
dox
dje
dfR
-djh
+dfR
dfR
dYo
dYH
@@ -136127,7 +131117,7 @@ awT
axV
ayR
aAg
-aBm
+ayR
aAg
aDd
aEm
@@ -136156,33 +131146,33 @@ bja
bkP
bmM
aOg
-bpR
-brQ
+btv
+btv
btv
buF
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
@@ -136198,9 +131188,9 @@ dlt
cAR
cDC
cGb
-clv
+byr
cGi
-cHv
+dmq
cIJ
cKm
cNo
@@ -136211,12 +131201,12 @@ cRS
cUX
cUW
dWu
-cEz
-cFU
+dmq
+cWn
dar
-cEG
+drn
cLA
-cIE
+drn
cZt
cZt
djc
@@ -136379,8 +131369,8 @@ abj
atd
atd
atd
-avJ
-awM
+aLu
+aHp
axU
ayK
azW
@@ -136413,7 +131403,7 @@ baj
aOg
bmN
aOg
-bpS
+btw
brR
btw
buG
@@ -136422,25 +131412,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
@@ -136448,33 +131438,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
@@ -136670,27 +131660,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
@@ -136700,38 +131690,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
@@ -136741,7 +131731,7 @@ cLA
dpX
drn
dsq
-bYh
+cHA
aaa
abj
abj
@@ -136901,8 +131891,8 @@ ayU
atd
aCk
aDg
-auK
-auK
+axl
+axl
atd
atd
atd
@@ -136926,35 +131916,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
@@ -136962,43 +131952,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
@@ -137009,7 +131999,7 @@ dkI
dCB
dkI
dEA
-bYh
+dFg
abj
abj
abj
@@ -137183,7 +132173,7 @@ bhs
bjb
aSN
aOo
-alI
+bcP
bpV
brU
btz
@@ -137194,23 +132184,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
@@ -137220,7 +132210,7 @@ cnb
cuT
clv
cvd
-bYh
+cHA
cxS
cAH
cCi
@@ -137228,7 +132218,7 @@ cCy
cDN
cCx
cGl
-cHv
+dmq
cSi
cKn
cIM
@@ -137247,7 +132237,7 @@ ddi
ddi
ddi
dhA
-djl
+ddi
ddi
ddi
ddi
@@ -137407,22 +132397,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
@@ -137440,7 +132430,7 @@ bht
bgm
aSN
aOW
-alI
+bcP
bpW
brV
btA
@@ -137449,26 +132439,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
@@ -137476,24 +132466,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
@@ -137505,13 +132495,13 @@ deQ
dga
djf
djn
-dkC
-dlN
-dnb
-dlP
ddi
-cFY
-cHh
+dng
+dng
+dng
+ddi
+cYc
+cXU
cJK
abj
dkK
@@ -137536,14 +132526,14 @@ dMc
dMI
dNx
dFg
-bYh
+ddy
dPq
dPq
dRc
dPq
dPq
-cCx
-bYh
+dku
+ddy
abj
abi
abj
@@ -137664,22 +132654,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
@@ -137697,8 +132687,8 @@ bhu
bgm
aSN
aOo
-alI
-bpX
+awX
+btF
brW
brW
brW
@@ -137718,14 +132708,14 @@ brW
bVC
cjA
cpP
-bYh
-bYh
+cHA
+cHA
cbB
-cdu
+dlM
cfn
-cgT
-cdt
-ckb
+dlM
+dhG
+cYc
clv
cnf
cov
@@ -137733,22 +132723,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
@@ -137767,9 +132757,9 @@ dlO
dnc
doB
ddi
-cGa
-cHh
-bYh
+cQY
+cXU
+cHA
aaa
dkI
dxd
@@ -137795,12 +132785,12 @@ dNy
dFg
dOO
dPr
-cNg
+deW
dQM
-cdv
-cdt
+dcA
+dbp
dSn
-cJK
+dlc
abj
abi
abi
@@ -137917,16 +132907,16 @@ aaa
apG
aqw
arp
-asi
+arp
arp
aui
apG
-amb
+aor
awW
axY
-alZ
+azb
ayX
-aql
+ayC
aCl
aCl
aCl
@@ -137934,9 +132924,9 @@ aCl
aCl
aCl
aCl
-amb
+aor
aLx
-alI
+awX
aOW
aaa
abj
@@ -137954,7 +132944,7 @@ aSN
aSN
aSN
aOW
-alI
+awX
bpY
brW
aaa
@@ -137972,41 +132962,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
@@ -138022,9 +133012,9 @@ dkx
dkE
dlP
dnd
-dlP
+cPf
ddi
-cGa
+cQY
dss
cJK
abj
@@ -138043,21 +133033,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
@@ -138174,15 +133164,15 @@ aaa
apH
aqx
arq
-asj
+aro
atf
auj
apG
avL
-aql
+ayC
axZ
ayX
-alZ
+azb
aBo
aCl
aDk
@@ -138193,7 +133183,7 @@ aHd
aCl
auR
asq
-alI
+awX
aFz
aJz
aEp
@@ -138211,7 +133201,7 @@ aJz
aEp
aJz
bRm
-alI
+awX
bpZ
brW
aaa
@@ -138229,34 +133219,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
@@ -138273,23 +133263,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
@@ -138298,7 +133288,7 @@ dFi
dFN
dFN
dFN
-dIs
+dFN
dJo
dKa
dFN
@@ -138309,14 +133299,14 @@ dNA
dFg
dOP
dPt
-cEz
-cEz
-cEz
-cEz
-cEz
-cEz
+dbw
+dbw
+dbw
+dbw
+dbw
+dbw
dQS
-cEz
+dbw
abj
abj
abj
@@ -138431,14 +133421,14 @@ aaa
apG
aqy
arr
-ask
+ars
atg
auk
apG
auS
-aob
-aob
-arU
+apU
+apU
+aCB
aAj
aBp
aCl
@@ -138449,26 +133439,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
@@ -138483,44 +133473,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
cGn
-cHv
+dmq
cIM
cIM
cLR
cNr
cNl
-cQM
-cRY
+cQP
+cSd
cTz
cTG
cNw
@@ -138529,18 +133519,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
@@ -138552,19 +133542,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
@@ -138688,12 +133678,12 @@ aaa
apH
aqz
ars
-ask
+ars
ath
ars
apG
avM
-amb
+aor
aya
axY
aAk
@@ -138701,30 +133691,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
@@ -138754,7 +133744,7 @@ bYj
bYj
bYj
ckf
-clz
+bYj
bYj
bYj
bYj
@@ -138768,9 +133758,9 @@ bYj
bYj
bYj
cDS
-cdt
+dhG
cGo
-cHv
+dmq
cIL
cIL
cIL
@@ -138786,24 +133776,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
@@ -138815,19 +133805,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
@@ -138945,25 +133935,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
@@ -138975,14 +133965,14 @@ aMW
aBo
baC
bcb
-alZ
-amb
+azb
+aor
bgn
bgn
-amb
+aor
aCo
-alZ
-alZ
+azb
+azb
bqc
brW
aaa
@@ -139000,9 +133990,9 @@ bBR
bBR
bOt
brW
-bSt
-bUE
-bWD
+bSA
+bUI
+bWH
bYj
bZJ
cbF
@@ -139010,8 +134000,8 @@ cdx
cfq
cgW
cgX
-ckg
-clA
+cni
+clC
cnh
cow
cpH
@@ -139025,16 +134015,16 @@ czy
bZK
bYj
cDT
-cgT
-ckc
-cHv
+dlM
+bGr
+dmq
cIM
cIM
cIM
cNp
cOR
cQP
-cSa
+cSd
cTz
dWp
cWD
@@ -139043,19 +134033,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
@@ -139071,20 +134061,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
@@ -139206,16 +134196,16 @@ asl
atj
aum
apG
-avO
-alI
+aDw
+awX
ayb
ayY
aAl
-amb
+aor
aCl
aDo
aEr
-aEr
+aHD
aGk
aHs
aCl
@@ -139229,17 +134219,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
@@ -139257,21 +134247,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
@@ -139282,9 +134272,9 @@ crn
cAT
bYj
cDU
-cbC
-ckb
-cHv
+drn
+deO
+dmq
cSq
cKn
cIM
@@ -139300,25 +134290,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
@@ -139332,16 +134322,16 @@ dIq
dIu
dIq
dMe
-dMM
+dIu
dND
dFg
-cWo
+dhx
dPx
dQf
dRj
-cbC
-dRZ
+dOO
dRZ
+dko
dSO
dUS
dQS
@@ -139464,11 +134454,11 @@ atk
aun
auN
avP
-alI
-amb
-alZ
-aAl
-aAl
+awX
+aor
+azb
+aCR
+aEg
aCl
aDp
aEr
@@ -139482,21 +134472,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
@@ -139514,41 +134504,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
+deO
+dmq
cIM
cIM
cLR
cNr
cQI
-cRV
-cNm
+cWA
+cTu
cWA
cTH
cNw
@@ -139562,23 +134552,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
@@ -139589,18 +134579,18 @@ dIq
dHs
dHt
dMe
-dMN
+dHs
dNE
dFg
-cHf
+dbp
dPy
-cEz
+dbw
dQP
dRC
dSc
dSb
dSQ
-cfn
+dlJ
dQS
abj
abi
@@ -139716,20 +134706,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
@@ -139739,23 +134729,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
@@ -139771,24 +134761,24 @@ bxh
bxh
bxh
bxh
-bSw
-bUH
+bSy
+bUI
bWH
-crs
+ctU
bZM
-cbH
-bZM
-bZM
-cbH
-ciw
-cki
-bZM
-bZM
-bZM
-ciw
+crn
+crn
+crn
+crn
+ciz
+crn
+crn
+crn
+crn
bZM
+crn
csG
-bZM
+crn
cvj
cwH
cxY
@@ -139796,15 +134786,15 @@ czA
cAU
bYj
cDS
-cEF
-ckb
-cHv
+drs
+deO
+dmq
cIL
cIL
cIL
cIL
cOY
-cPd
+cSb
cQQ
cSb
cOY
@@ -139835,7 +134825,7 @@ dkI
dkI
dCI
dDX
-cHg
+dOO
dFg
dFR
dGH
@@ -139849,16 +134839,16 @@ dFg
dMO
dFg
dFg
-cWw
+dOO
dPz
dQg
dRk
dRE
-cdt
+djZ
dRK
dSW
dTj
-cEz
+dbw
abj
abi
aaa
@@ -139972,32 +134962,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
@@ -140013,57 +135003,57 @@ aEu
aMZ
bqg
brZ
-aEu
-aEu
-aOv
+aty
+aty
+apU
aIQ
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
+dlM
+deO
+dmq
cIO
cIO
cIO
cIL
cOS
-cRV
-cNm
-cWA
+cgZ
+cjD
+cgZ
cTM
cVm
cWT
@@ -140090,9 +135080,9 @@ dyx
dzD
dAR
dkI
-cFR
+dbo
dDX
-cHf
+dbp
dFg
dFS
dGI
@@ -140106,15 +135096,15 @@ dMf
dMP
dNF
dFg
-cWn
-dPx
+dik
+diD
dQn
dRj
dRF
-dRQ
+dkh
dSq
dTg
-cit
+dOQ
dTW
abj
abj
@@ -140233,92 +135223,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
+aDt
+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
dmy
cGp
-cHv
+dmq
cIO
cKp
cLS
cNu
cOV
-cQR
+cWI
cSd
cTD
cVf
@@ -140327,14 +135317,14 @@ cWU
dtH
dau
cMm
-ddt
-deY
-dgm
+cPn
+cIW
+deH
dhY
-djB
+dhD
dkK
dlS
-dlS
+cMD
dve
dwe
dCN
@@ -140347,9 +135337,9 @@ dyz
dzF
dAS
dkI
-cgT
+dEi
dDX
-cHg
+dOO
dFg
dFg
dFg
@@ -140363,13 +135353,13 @@ dMg
dGE
dNG
dFg
-cHf
+dbp
dPA
dQc
-cbC
-cMT
-dRZ
-cdt
+dOO
+djl
+dko
+dkC
dSH
dVo
dTW
@@ -140491,12 +135481,12 @@ apH
apG
apG
apG
-aKd
-alI
-alI
-aqp
-alI
-alI
+aDy
+awX
+awX
+aCL
+awX
+awX
aCl
aFm
aEr
@@ -140510,11 +135500,11 @@ aMY
aOu
aPO
aRo
-aRm
+aQq
aUt
aOs
aMW
-awg
+bqe
baF
bcc
bdw
@@ -140531,8 +135521,8 @@ bmQ
buP
bvZ
baF
-awg
-bAn
+aDt
+bOC
bBX
bDP
bFm
@@ -140551,25 +135541,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
@@ -140580,36 +135570,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
@@ -140620,9 +135610,9 @@ dFk
dFk
dFg
dOm
-cWn
+dik
dPB
-cEz
+dbw
dQR
dRs
dRI
@@ -140734,7 +135724,7 @@ acC
acC
adb
acC
-adN
+adb
acC
kpH
acC
@@ -140746,11 +135736,11 @@ abj
abj
abj
abj
-amh
+awM
apK
avT
-alI
-ayf
+awX
+aze
ayg
aAo
aBt
@@ -140762,17 +135752,17 @@ aCl
aCl
aCl
aKf
-alZ
+azb
aMW
aMW
aMV
aMW
-aSO
+aQw
aUu
aMW
aMW
-aYS
-baG
+bqe
+baF
bcd
bdx
beU
@@ -140788,72 +135778,72 @@ bkT
buQ
bwa
baF
-axw
-bAn
+aDw
+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
+dlM
+bGr
+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
@@ -140861,32 +135851,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
@@ -140977,8 +135967,7 @@ adZ
adZ
afJ
agd
-agA
-adZ
+age
adZ
adZ
adZ
@@ -140988,6 +135977,7 @@ adZ
adZ
adZ
adZ
+aip
agA
agg
adZ
@@ -140997,36 +135987,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
@@ -141035,55 +136025,55 @@ bdy
beV
baF
bhx
-bdx
-bkU
-bmR
-bkU
-bkU
+aYB
+aZN
+baI
+aZN
+bee
bkU
bkU
beU
bwa
baF
-axu
-bAn
+aEz
+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
+drn
+deO
+dmq
cIO
cIO
cIO
@@ -141101,7 +136091,7 @@ dbQ
cPv
dfb
dxE
-dhW
+cyG
djz
dkM
dlZ
@@ -141122,25 +136112,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
@@ -141233,71 +136223,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
@@ -141308,21 +136298,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
@@ -141334,14 +136324,14 @@ ctM
cvo
cwM
bYj
-czD
-cBa
+drn
+cDZ
cCB
cDW
-cEG
+drn
cGr
-cHv
-cEz
+dmq
+dmq
cKr
cKr
cKr
@@ -141354,12 +136344,12 @@ cVo
cXa
cKr
dqq
-cMm
-cPv
+dbP
+cPn
cKr
cKr
dWj
-djA
+cKr
dkI
dkI
dkI
@@ -141375,10 +136365,10 @@ dkJ
dzN
dXA
dkI
-cEz
-cEz
-cEz
-cEz
+dbw
+dbw
+dbw
+dbw
dHB
dGK
dHA
@@ -141392,12 +136382,12 @@ dIx
dIx
dIx
dOR
-cdt
-cdt
-cbC
-cis
+dbp
+dbp
+dOO
+djA
dRL
-cJK
+dlc
abj
abj
abj
@@ -141492,22 +136482,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
@@ -141520,14 +136510,14 @@ ato
auq
auQ
avV
-alI
+awX
ayg
aze
ayg
-alI
+awX
aCo
-aDu
-alI
+aEz
+aFx
aFs
aGo
aHA
@@ -141542,19 +136532,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
@@ -141566,40 +136556,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
@@ -141610,18 +136600,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
@@ -141774,24 +136764,24 @@ aqH
arz
asq
atp
-alI
+awX
auR
-aKd
-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
@@ -141799,75 +136789,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
+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
+cHr
cDY
-cbC
+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
@@ -141897,14 +136887,14 @@ dIy
dGM
dKX
dKY
-dJv
-dJv
+dKI
+ddY
dKI
dLq
-dJv
+dfa
dMR
dNH
-dOo
+dIx
dOT
dPD
dQh
@@ -142022,7 +137012,7 @@ aaa
aaa
aaa
adb
-anm
+ant
anL
aoo
aoo
@@ -142032,16 +137022,16 @@ aoo
aoo
aoo
aoo
-amb
-avR
+aor
+aBB
any
any
aBg
-are
-aql
+aDH
+ayC
auR
aDw
-alI
+aFx
aFu
aGq
aHC
@@ -142056,15 +137046,15 @@ aSW
aUz
aWa
aOx
-aEy
-baJ
+byM
+baF
bci
bdC
beZ
baF
bhB
bjj
-bkY
+bmU
bmU
bmU
bmU
@@ -142073,8 +137063,8 @@ bmU
buR
bwa
baF
-apr
-bAn
+bpZ
+bOC
bCd
bDO
bFq
@@ -142084,16 +137074,16 @@ bFq
bMK
bPY
bDQ
-bSt
-bUE
-bWD
+bSA
+blM
+bWH
bYj
bZQ
cbO
cdC
-cfw
-cgZ
-cix
+ckj
+crn
+ciz
ckk
clG
cnl
@@ -142102,31 +137092,31 @@ cnl
cro
csH
ctH
-bZN
+bzx
cwP
bYj
-cbC
-cBc
-cbC
+drn
+cHr
+drn
cDZ
cEH
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
@@ -142135,7 +137125,7 @@ dkP
dni
dnm
dni
-dqe
+dsz
dry
dsB
duY
@@ -142144,25 +137134,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
@@ -142279,8 +137269,8 @@ abj
alW
abj
acC
-anl
-anK
+ant
+anP
aoo
aoT
apL
@@ -142289,32 +137279,32 @@ arA
asr
aoT
aoo
-alZ
-aKd
+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
@@ -142330,8 +137320,8 @@ btD
buS
bwb
baF
-aKd
-bAn
+bqe
+bOC
bCg
bDS
bFr
@@ -142341,57 +137331,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
@@ -142428,7 +137418,7 @@ dJx
dJx
dIx
dTo
-dUa
+dUb
dUL
dTX
aaa
@@ -142537,7 +137527,7 @@ abj
acC
adb
ann
-anK
+anP
aoo
aoU
apM
@@ -142551,18 +137541,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
@@ -142571,7 +137561,7 @@ aUA
aWc
aOx
aYV
-baJ
+baF
bck
bdE
bfa
@@ -142588,11 +137578,11 @@ buT
baF
baF
btF
-bAn
+bOC
bCe
bDQ
bDQ
-bHf
+bIV
bIV
bDQ
bDQ
@@ -142619,24 +137609,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
@@ -142665,9 +137655,9 @@ dDS
dDS
dFm
dFY
-cfm
+dcQ
dHA
-cbC
+dOO
dJx
dKf
dKL
@@ -142793,17 +137783,17 @@ aaa
abj
amx
ajy
-anl
-anK
+ant
+anP
aoo
aoV
-apN
+apM
aqL
arC
apM
atr
aoo
-alL
+aEz
avX
axb
axb
@@ -142812,27 +137802,27 @@ 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
@@ -142844,12 +137834,12 @@ bSg
buU
buU
bxl
-byO
-bAq
+baG
+buU
bEa
bDR
bEp
-bHg
+bJd
bJd
bDR
bDR
@@ -142857,14 +137847,14 @@ bOD
bSg
byO
bUK
-bWL
+chc
bOW
bZT
cbV
-bOW
+vEw
bOW
chc
-bWL
+bpT
bOW
bOW
bOW
@@ -142884,7 +137874,7 @@ chc
cGx
cHB
bvV
-cKv
+cZt
cMa
cNA
cPj
@@ -142893,22 +137883,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
@@ -142916,15 +137906,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
@@ -142934,10 +137924,10 @@ dMU
dNK
dMU
dOW
-dPG
-dQj
-dQW
-dRv
+dOr
+dMj
+dOr
+djB
dJx
dKm
dIx
@@ -143050,13 +138040,13 @@ aaa
acC
acC
acC
-anl
-anK
+ant
+anP
aoo
aoW
-apO
-aqK
+apM
aqK
+aqY
apM
ats
aoo
@@ -143067,22 +138057,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
@@ -143141,20 +138131,20 @@ cDd
cGy
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
@@ -143175,12 +138165,12 @@ dzP
dBd
cKr
dCO
-dEb
+dCU
dEL
dGY
dFZ
-dbM
-dHF
+dku
+dHL
dIA
dJx
dKh
@@ -143191,10 +138181,10 @@ dMT
dNJ
dMT
dOX
-dPH
+dPF
dQk
dQX
-dKL
+dLw
dJx
dSg
dIx
@@ -143307,13 +138297,13 @@ alE
alY
afb
alY
-anl
-anK
+ant
+anP
aoo
aoX
-apO
-aqM
apM
+aqM
+arx
asr
att
aoo
@@ -143327,15 +138317,15 @@ aBv
aCq
aDD
aEJ
-aGM
-aGu
+aUD
+aRv
aHH
aHS
aIU
-aLK
+aUD
aNg
-aOz
-aOz
+aUD
+aUD
aRv
aTa
aUD
@@ -143346,22 +138336,22 @@ baL
bcm
bdH
bfd
-bgs
+aFx
bhG
bjo
bld
-bmY
-bon
-bqo
+bmW
+boo
+bqp
bsf
cqm
buW
buW
buW
byQ
-chB
+bfy
bDG
-chB
+bfy
bFt
bHi
bIX
@@ -143398,20 +138388,20 @@ cEL
bqu
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
@@ -143431,14 +138421,14 @@ dyJ
dzQ
dBe
cKr
-cZt
-dFT
-dEM
-cZt
-cZt
-cZt
-dHG
-dIB
+ddy
+dGf
+ddy
+ddy
+ddy
+ddy
+dPw
+dID
dJx
dKi
dKL
@@ -143448,7 +138438,7 @@ dMU
dNK
dOr
dOW
-dPI
+dOr
dQk
dKL
dRw
@@ -143456,7 +138446,7 @@ dJx
dSh
dIx
dTr
-dUc
+dml
dUO
dIx
abj
@@ -143564,17 +138554,17 @@ aaa
acC
acC
acC
-anl
-anM
-aop
+ant
+anP
+aoo
aoY
-apP
+ast
aqN
arD
aqN
atu
aoo
-auV
+aDt
avZ
axb
ayl
@@ -143595,7 +138585,7 @@ aLU
aLU
aLU
aTc
-aUE
+aLU
aLU
aLU
aYZ
@@ -143655,20 +138645,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
@@ -143689,11 +138679,11 @@ dVd
dBf
cKr
dCP
-dEd
+ddv
dEN
dFo
dIC
-cKs
+ddy
dHH
dKZ
dXa
@@ -143713,7 +138703,7 @@ dJx
dSi
dSJ
dTs
-dUc
+dml
dSi
dTX
abj
@@ -143821,8 +138811,8 @@ aaa
abj
amy
ajf
-ano
-anJ
+ant
+alm
ahy
aoZ
apQ
@@ -143840,7 +138830,7 @@ aAv
aBy
aCr
aEw
-auV
+aDt
aFA
aGv
aHJ
@@ -143857,10 +138847,10 @@ aWe
aXB
aZa
baM
-bco
+bfg
bdJ
bfe
-bgt
+aYZ
bhI
bjq
blf
@@ -143910,24 +138900,24 @@ cCC
csK
cEM
bqu
-xqH
+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
@@ -143946,26 +138936,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
@@ -144078,8 +139068,8 @@ aaa
abj
acC
adb
-anl
-anK
+akG
+als
aoo
apa
apR
@@ -144088,7 +139078,7 @@ arF
aqN
atu
aoo
-alL
+aEz
avX
axb
ayn
@@ -144097,7 +139087,7 @@ aAw
aBz
aCs
aEC
-auV
+aDt
aFA
aGw
aHK
@@ -144106,11 +139096,11 @@ aIX
aLM
aFA
aOB
-aPV
-aRx
+aOD
+aOD
aTe
-aUG
-aWf
+aOD
+aOD
aXC
aYZ
baQ
@@ -144119,7 +139109,7 @@ bdK
bff
aYZ
bdQ
-bjr
+bjt
blg
aYZ
boo
@@ -144173,7 +139163,7 @@ cKx
cMe
cMf
cPo
-cRe
+aKC
cSn
cTB
cUY
@@ -144182,34 +139172,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
@@ -144335,8 +139325,8 @@ abj
abj
abj
acC
-anl
-anK
+ant
+anP
aoo
apb
apS
@@ -144345,7 +139335,7 @@ arG
ast
atw
aoo
-alL
+aEz
avX
axb
ayo
@@ -144357,17 +139347,17 @@ aDE
aEy
aFA
aGx
-aHL
+aHM
aIW
aIX
aLN
aFA
aOC
aPX
-aPX
+aPA
aTg
-aPW
-aPW
+aSd
+aTr
aXD
aYZ
bcs
@@ -144375,7 +139365,7 @@ bcq
bdL
bfg
bgu
-bhJ
+bdP
bjs
blh
aYZ
@@ -144427,46 +139417,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
-dvi
-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
@@ -144478,7 +139468,7 @@ dMW
dMm
dPL
dMm
-dQZ
+dPL
dRz
dRP
dSl
@@ -144592,8 +139582,8 @@ aaa
aaa
aaa
adb
-ano
-anN
+ant
+anP
aoo
apc
apT
@@ -144602,8 +139592,8 @@ arG
asu
atx
aoo
-auV
-aoH
+aDt
+aBb
axb
axc
axb
@@ -144687,41 +139677,41 @@ 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
@@ -144850,12 +139840,12 @@ acC
adb
adb
anp
-anK
+anP
aoo
aoo
aoo
aoo
-apd
+aHX
aoo
aoo
aoo
@@ -144879,7 +139869,7 @@ aFA
aOE
aPY
aRz
-aRz
+aQS
aRz
aRz
aXF
@@ -144889,8 +139879,8 @@ bcv
bcz
bfi
aYZ
-bdP
-bju
+aYa
+aYC
blk
aYZ
boo
@@ -144938,49 +139928,49 @@ cEr
cEQ
cIT
bqu
-xqH
+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
@@ -145089,23 +140079,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
@@ -145117,14 +140107,14 @@ asv
aty
aur
auX
-awc
+awd
axe
axe
axe
aAz
aAz
axe
-aDH
+axe
aEA
aFA
aFA
@@ -145136,10 +140126,10 @@ aFA
aOF
aPZ
aRA
-aRA
+aRd
aRA
aPZ
-aXG
+aIZ
aYZ
aYZ
aYZ
@@ -145147,7 +140137,7 @@ aYZ
aYZ
aYZ
bhK
-bjv
+aYE
bll
bmZ
boo
@@ -145195,13 +140185,13 @@ cEr
cER
cIT
bqu
-xqH
+bIG
cIW
cKA
cMi
cNG
cPr
-cMl
+cMm
cSp
cTQ
cVr
@@ -145213,13 +140203,13 @@ daH
ddC
dfo
dim
-div
+doU
dmf
doy
doT
doU
dqj
-dql
+dqp
dsJ
duj
dwq
@@ -145228,29 +140218,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
@@ -145346,33 +140336,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
@@ -145381,21 +140371,21 @@ azo
aBu
aCw
aCu
-aDH
-aKd
+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
@@ -145404,7 +140394,7 @@ bdN
bfj
bgy
bhL
-bju
+aZh
blm
bmZ
boq
@@ -145470,9 +140460,9 @@ dca
ddj
dfo
din
-djO
-dnx
+doV
dnx
+cIp
dnx
doV
dqk
@@ -145486,13 +140476,13 @@ dzW
dEn
dEn
duZ
-dBi
+dEy
dCV
-cir
-cwD
+dbC
+dbI
dFt
dGg
-cwD
+dbI
dHM
dIG
dJB
@@ -145500,15 +140490,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
@@ -145611,26 +140601,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
@@ -145638,30 +140628,30 @@ azp
aAA
axe
axe
-aDH
-aKd
+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
@@ -145709,28 +140699,28 @@ cEN
csK
cES
bqu
-xqH
+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
@@ -145742,8 +140732,8 @@ dui
dzX
dEX
dGT
-dqp
-dBK
+dql
+dCU
dCW
aos
aos
@@ -145755,18 +140745,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
@@ -145877,9 +140867,9 @@ acC
acC
adb
amN
-anl
-anK
-aot
+ant
+anP
+apN
apf
aqg
aqS
@@ -145895,30 +140885,30 @@ 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
@@ -145966,10 +140956,10 @@ cCK
csK
cET
bqu
-xqH
+bIG
cIW
cKD
-cMl
+cMm
cNG
cPr
cMm
@@ -145977,16 +140967,16 @@ cRg
cTR
cVu
cWY
-cYx
+daJ
cZA
daK
-cWZ
+cvT
ddE
dfo
diq
dio
djQ
-dla
+cIq
dmg
dnA
dIL
@@ -146001,7 +140991,7 @@ dtN
dtN
dyP
dBC
-cGo
+dbB
aos
dET
dFu
@@ -146013,16 +141003,16 @@ dJD
dKo
dKo
dLD
+dfn
+dNa
+dNa
+dNa
+dKp
dKp
dNa
dNa
dNa
-dPd
dKp
-dNa
-dNa
-dNa
-dRS
dSu
dTi
dTA
@@ -146134,42 +141124,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
@@ -146223,17 +141213,17 @@ csK
csK
cEU
bqu
-cHC
+bKt
cIY
cKE
cMe
cNJ
cPt
-cMf
+cMe
cSs
cTT
cVv
-cWZ
+cYy
cYy
cZB
daL
@@ -146251,13 +141241,13 @@ dqm
dsL
dvl
dui
+dvn
dvp
-dui
-dzX
+dam
dFw
dHR
-dqp
-cKh
+dql
+dGf
dBR
dDe
dEU
@@ -146270,17 +141260,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
@@ -146391,17 +141381,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
@@ -146409,30 +141399,30 @@ 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
@@ -146480,10 +141470,10 @@ cCL
cEe
cEL
bqu
-xqH
+bIG
cJa
cKF
-cMl
+cMm
cNG
cPr
cMm
@@ -146492,15 +141482,15 @@ cTF
cVw
cWQ
cYn
-cWZ
-cWZ
-cWZ
+daJ
+daJ
+daJ
ddF
dfo
diq
djR
djQ
-dla
+cIq
dmg
doX
drD
@@ -146508,15 +141498,15 @@ dsH
due
dvm
dws
-dvq
-dws
-dzX
+dvn
+dyT
+dav
dyR
dzY
-dqp
-dBM
-dCY
-dEk
+dql
+dCU
+dHL
+aos
dEV
dVx
dGj
@@ -146527,17 +141517,17 @@ dJD
dKo
dKo
dLE
-dKo
+dMq
dNc
dNO
dXF
-dPe
+dKo
dKo
dQp
dNO
dRG
-dRT
-dSt
+dKo
+dlp
dSS
dTC
dUm
@@ -146630,7 +141620,7 @@ aaa
abj
aaa
aaa
-afM
+agE
agD
agE
ahB
@@ -146660,36 +141650,36 @@ 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
@@ -146737,13 +141727,13 @@ cCM
cEf
cEL
bqu
-xqH
+bIG
cIW
cKG
cMm
cNK
cPu
-cMl
+cMm
cSu
cTT
cVx
@@ -146756,8 +141746,8 @@ ddH
dfo
dis
djS
-djS
-djS
+cDI
+cJq
djS
djS
drE
@@ -146766,12 +141756,12 @@ duf
dvr
dxz
dXr
-dyQ
-dAb
+dvq
+dav
dyS
dzZ
-dqp
-cKh
+dql
+dGf
dBT
aos
dEW
@@ -146784,16 +141774,16 @@ dJD
dKo
dKo
dLE
+dMq
+dNb
+dNP
+dOw
+dKo
dKo
dNb
dNP
dOw
-dPe
dKo
-dNb
-dNP
-dOw
-dRT
dSB
dST
dTD
@@ -146887,7 +141877,7 @@ aaa
abj
aaa
aee
-afM
+agE
agE
agT
ahC
@@ -146905,17 +141895,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
@@ -146923,22 +141913,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
@@ -146949,7 +141939,7 @@ bdS
bjy
bQy
aYZ
-boo
+ibc
bqp
bqv
btH
@@ -146994,12 +141984,12 @@ cyk
gyY
cEV
cGz
-xqH
+bIG
cIW
cKH
cMn
cNL
-cPv
+cSt
cRg
cSv
cTR
@@ -147021,14 +142011,14 @@ drF
dqp
drJ
dwo
+cTP
drJ
-dqp
-dyT
+dql
dBO
dFy
dQq
-dqp
-dBN
+dql
+dfu
dVj
aos
aos
@@ -147041,17 +142031,17 @@ dXC
dKp
dKp
dLF
-dKo
+dMq
dOu
dNQ
dOx
-dPe
+dKo
dPN
dQF
dNQ
dRH
-dRT
-dSt
+dKo
+dSB
dSU
dTE
dUo
@@ -147147,14 +142137,14 @@ aee
agk
agF
agU
-ahD
ahC
ahC
ahC
ahC
ahC
ahC
-ahD
+ahC
+ahC
akx
agE
agE
@@ -147162,15 +142152,15 @@ agF
agE
aaa
acC
-anm
-anS
+ant
+anT
aow
apj
aqa
aqV
arO
-asC
-aqe
+aqV
+auH
apk
avc
awk
@@ -147180,15 +142170,15 @@ axe
axe
axe
axe
-aDH
+axe
aHX
aFA
aFA
aFA
aFA
aFA
-aLU
-aLU
+aFA
+aFA
aOH
aOH
aXR
@@ -147196,8 +142186,8 @@ aZf
bcw
aOH
aOH
-aLU
-aLU
+aFA
+aFA
aYZ
aYZ
bgI
@@ -147278,13 +142268,13 @@ dfo
dqp
drK
dce
-ddJ
-dqp
-dqp
-dqp
-dqp
-dqp
-dqp
+dce
+cWa
+dql
+dql
+dql
+dbg
+dql
dBH
dCX
dfu
@@ -147298,16 +142288,16 @@ dJD
dKo
dKo
dLG
+dMq
+dNb
+dNN
+dOw
+dKo
dKo
dNb
dNN
dOw
-dPe
dKo
-dNb
-dNN
-dOw
-dRT
dXJ
dSP
dTa
@@ -147404,14 +142394,14 @@ aee
agk
agF
agV
-ahD
+ahC
ahC
aim
aim
aim
aim
ajD
-ahD
+ahC
aky
akY
alv
@@ -147419,51 +142409,51 @@ 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
bsm
btH
@@ -147509,16 +142499,16 @@ cEg
cEL
bqu
cHI
-dEj
-cKJ
-cKJ
+dEm
+cVA
+cVA
cNN
-cPx
-cKJ
-cKJ
+cVA
+cVA
+cVA
cTV
cVA
-cVA
+clA
cVA
cVA
cVA
@@ -147529,25 +142519,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
@@ -147559,13 +142549,13 @@ dMr
dNc
dNO
dPa
-dPe
+dKo
dKo
dNb
dNO
dRG
-dRT
-dSt
+dKo
+dSB
dSR
dTF
dUq
@@ -147657,8 +142647,8 @@ acF
abj
abj
aaa
-afM
-afM
+agE
+agE
agD
agW
ahC
@@ -147676,7 +142666,7 @@ alH
agF
aaa
acC
-anl
+ant
anU
aoz
acC
@@ -147688,37 +142678,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
+aZe
+aZe
bgw
-aCy
-aCy
-bgz
+aIg
+aZe
+aZe
bhP
bjB
-aCy
+bar
bMa
bot
bqt
@@ -147767,61 +142757,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
@@ -147918,14 +142908,14 @@ aee
agk
agF
agX
-ahD
+ahC
ahC
ail
ail
ail
ail
ajF
-ahD
+ahC
aky
ala
alv
@@ -147933,13 +142923,13 @@ alH
agF
aaa
acC
-anl
+ant
anT
aoF
acC
aqd
-aqX
aqW
+asj
aqW
atE
adb
@@ -147949,9 +142939,9 @@ ayy
aBU
azw
aAH
-aBE
-aCz
-aCz
+aEF
+aEF
+aEF
aEF
aFC
aGJ
@@ -147961,23 +142951,23 @@ 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
+bov
bqu
bsm
btH
@@ -148029,9 +143019,9 @@ cKL
cNP
cPz
cRh
-cSw
+diw
cTW
-cVC
+cYC
cXd
cYC
cYC
@@ -148039,47 +143029,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
@@ -148175,14 +143165,14 @@ aee
agk
agF
agU
-ahD
ahC
ahC
ahC
ahC
ahC
ahC
-ahD
+ahC
+ahC
akz
agE
agE
@@ -148190,18 +143180,18 @@ agF
agE
aaa
acC
-anl
+ant
anT
aoA
apk
aqe
-aqY
+asE
arO
asE
atF
apj
avg
-awk
+aBm
axk
ayz
ayA
@@ -148222,14 +143212,14 @@ aGK
aGK
aGK
aGK
-aWm
+aJd
aXK
aJd
aGK
aGK
bdU
bfq
-bjz
+bhU
blr
bfq
bdU
@@ -148302,7 +143292,7 @@ dfv
dnI
dfv
dmi
-drG
+dsU
dmi
dce
drK
@@ -148319,7 +143309,7 @@ dfu
dFb
dFB
dGp
-dFB
+ddd
dHV
dIN
dJG
@@ -148429,7 +143419,7 @@ aaa
abj
aaa
aee
-afM
+agE
agE
agT
ahC
@@ -148447,19 +143437,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
@@ -148541,7 +143531,7 @@ cJg
cKM
cMo
cNR
-cPB
+cPL
cRj
cSx
cTX
@@ -148686,7 +143676,7 @@ aaa
abj
aaa
aaa
-afM
+agE
agD
agE
ahE
@@ -148708,7 +143698,7 @@ ans
anV
aoB
apv
-aqf
+aqZ
aqZ
asW
asZ
@@ -148716,7 +143706,7 @@ asZ
axi
avh
awp
-axl
+aow
ayA
ayA
ayA
@@ -148729,7 +143719,7 @@ aGK
aIh
aEN
aNx
-aLX
+aUU
aNm
aOK
aQf
@@ -148737,12 +143727,12 @@ aRM
aJd
aUO
aWo
-aXN
-aZh
+aNm
+aNm
baW
-bcA
+aJd
bdW
-bfs
+bfu
bgD
bhT
bfu
@@ -148796,9 +143786,9 @@ bqu
cHN
cJg
cKN
-cMp
+cMq
cNS
-cPC
+cRk
cRk
cSy
cTY
@@ -148821,10 +143811,10 @@ dqr
drO
dsO
duk
-dvt
+cYN
dww
-dxI
-dyV
+dww
+dwz
dAd
dwB
dBL
@@ -148961,8 +143951,8 @@ abj
abj
abj
acC
-anl
-anK
+ant
+anP
aoC
aoC
aqu
@@ -148971,7 +143961,7 @@ asX
asF
aoC
aoC
-alI
+axm
awq
axm
ayA
@@ -148987,14 +143977,14 @@ aEM
aEN
aNp
aLY
-aNn
+aZi
aOL
aQg
aRN
aJe
aUP
aWp
-aXO
+aUE
aZi
baX
aZs
@@ -149002,7 +143992,7 @@ bdX
bft
bcN
bec
-bjD
+bfu
blu
bhU
bov
@@ -149053,7 +144043,7 @@ bqu
cHN
cJh
cKO
-cMq
+dea
cNT
cPD
cRl
@@ -149218,8 +144208,8 @@ aaa
aaa
aaa
adb
-anl
-anK
+akG
+als
aoC
apl
aqh
@@ -149235,7 +144225,7 @@ ayA
azz
aAL
aBH
-aCB
+aAK
aBY
aDM
aFF
@@ -149248,21 +144238,21 @@ aNo
aNo
aQh
aRO
-aTl
-aUQ
-aWq
+aJd
+aUU
+aWr
aXP
-aZj
+aNm
baY
aJd
bdY
bfu
-bdZ
+bcC
bgE
-bjE
-blv
-bhV
-bow
+bfu
+blu
+bhU
+bov
bqu
ckH
btH
@@ -149280,7 +144270,7 @@ bKX
bNb
bOU
bWX
-aaa
+bkY
abj
aaa
bQI
@@ -149310,18 +144300,18 @@ bqu
cHN
cJh
cKO
-cMp
+dea
cNU
cPE
-cMq
+cUn
cSA
cUa
cVH
cXh
cYF
dlW
-daT
-dcj
+cXg
+cXg
ddN
dgD
dfv
@@ -149332,13 +144322,13 @@ dfv
dYc
dYi
dYk
-drQ
+drX
dsQ
duk
dvv
-dwy
-dxK
-dyX
+dwz
+dxL
+dwz
dAf
duk
dBV
@@ -149475,14 +144465,14 @@ acC
acC
adb
amN
-anl
-anK
+ant
+anP
aoD
apm
arM
arb
arS
-arb
+asC
atH
aut
avj
@@ -149491,12 +144481,12 @@ axo
ayB
azA
aAM
-aBI
aCC
-aBI
+aCC
+aCC
aEK
-aFG
-aGN
+aFJ
+aGK
aKv
aKx
aKx
@@ -149508,13 +144498,13 @@ aGK
aGK
aUR
aWr
-aXQ
-aZj
+aXP
+aNm
baZ
aGK
bbC
bfu
-bgG
+bfu
bhW
bfu
blw
@@ -149567,10 +144557,10 @@ bqu
cHN
cJg
cKP
-cMq
-cNT
+dea
+cbr
cPF
-cMs
+cha
cSB
cUb
cVI
@@ -149578,7 +144568,7 @@ cXi
cYG
doC
daU
-cXg
+cvU
ddO
dgE
dgT
@@ -149595,10 +144585,10 @@ dum
dvw
dvx
dxL
-dyY
+dvx
dvx
duk
-dBW
+dCd
dDj
dEo
aaa
@@ -149715,23 +144705,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
@@ -149745,40 +144735,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
+aZm
blx
bhX
-bou
-bqu
-ckH
+aXX
+aXY
+aXZ
btH
aaa
abj
@@ -149824,15 +144814,15 @@ bqu
cHN
cJg
cKQ
-cMp
-cNT
-cPG
+dea
+cNS
cMq
+cUn
cSA
cTZ
cZF
cXg
-cXg
+cpJ
doE
daV
cXk
@@ -149842,20 +144832,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
@@ -149970,25 +144960,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
@@ -150000,7 +144990,7 @@ aoC
aoC
awx
aql
-apr
+aps
axq
ayA
azC
@@ -150010,25 +145000,25 @@ 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
@@ -150082,9 +145072,9 @@ ukK
cJi
cKR
cMr
-cNT
+cbr
cPH
-cMp
+cUn
cSD
cTY
cVK
@@ -150099,17 +145089,17 @@ dgI
diA
djX
dlg
-dml
+dmi
dnL
dpi
dqw
drT
dsT
-dun
+duk
dvx
dvx
dxL
-dyY
+dvx
dvx
dwB
dBU
@@ -150230,33 +145220,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
@@ -150266,8 +145256,8 @@ aBL
aCF
aCI
aDR
-aFJ
-aGO
+aJi
+ayD
aIa
aJj
aKB
@@ -150276,17 +145266,17 @@ aNq
aOO
aQk
aRQ
-aTo
+aTq
aUU
aWr
-aXQ
-aZj
+aNm
+aNm
bbb
aJd
bcB
bfu
-bgG
-bhW
+bfu
+aYc
bfu
bly
bfq
@@ -150338,13 +145328,13 @@ bqu
cHN
cJg
cKS
-cMp
-cNT
-cPG
+dea
+cNS
cMq
+cUn
cSE
cTX
-cVL
+cXe
cXe
cYI
cXe
@@ -150356,16 +145346,16 @@ dgJ
diB
djY
doF
-dml
+dmi
dnN
dpj
dqx
drU
dsV
-duo
+dum
dvt
dwz
-dxL
+day
dza
dAh
duk
@@ -150491,21 +145481,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
@@ -150524,10 +145514,10 @@ aCG
aDj
aEH
aFK
-aGO
+ayD
aIb
-aJk
-aKC
+aRX
+aEU
aMd
aNr
aOP
@@ -150536,14 +145526,14 @@ aRR
aNv
aUV
aWs
-aXQ
-aZj
+aNm
+aNm
bbc
bQb
bcC
bfu
bgG
-bhW
+aYe
bfu
blz
bfq
@@ -150595,10 +145585,10 @@ bqu
cHN
cJg
cKT
-cMq
-cNT
-cPG
-cMp
+dea
+cbr
+dea
+cUn
cRm
cJg
cVM
@@ -150611,19 +145601,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
@@ -150751,43 +145741,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
@@ -150855,32 +145845,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
@@ -151000,35 +145990,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
@@ -151038,25 +146028,25 @@ 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
@@ -151109,31 +146099,31 @@ bqu
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
@@ -151259,23 +146249,23 @@ 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
@@ -151285,7 +146275,7 @@ asJ
aKd
aux
arW
-alI
+axm
axu
ayD
azG
@@ -151299,7 +146289,7 @@ aJm
aId
aJn
aKF
-aMg
+aKF
aNt
aQu
aSq
@@ -151366,35 +146356,35 @@ bqu
cHN
cJg
cKW
-cMp
+cMq
cNS
-cPC
+cRk
cMq
cSF
cUd
cVO
-cMq
+cnX
cSF
cJg
-cPG
+cKO
dqW
-ddU
+cSA
dfz
dgN
diE
dkc
dll
-dmo
+dta
dnQ
dpn
dqB
drY
dsY
-dun
+duk
duk
dwB
dAo
-dzc
+dBk
duk
duk
dCa
@@ -151522,7 +146512,7 @@ aiA
aiN
aiN
aiN
-ajH
+agI
akf
akF
alg
@@ -151555,8 +146545,8 @@ aGQ
aKb
aBS
aJo
-aKG
-aES
+aBS
+aCN
aCN
aBS
aKK
@@ -151564,13 +146554,13 @@ aRV
aTs
aUY
aWw
-aXW
+aBS
aZo
-bbg
+bbi
bcE
-bee
-bfy
-bgL
+bfA
+bfA
+bfA
bib
bjH
blN
@@ -151633,25 +146623,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
@@ -151773,66 +146763,66 @@ 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
+cpO
bqu
bsr
bsv
@@ -151890,21 +146880,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
@@ -152032,59 +147022,59 @@ 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
@@ -152141,33 +147131,33 @@ cMu
cNR
cPL
cRn
-cRn
+cKO
cUe
-cRn
-cYU
-cYN
+ckg
+cMq
+cKO
cZJ
-dba
+cKO
don
-ddW
+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
@@ -152287,7 +147277,7 @@ aeB
abj
agK
ahe
-ahK
+ahe
ahe
aiv
aiP
@@ -152299,19 +147289,19 @@ akH
alj
agK
alP
-ame
-amG
+ajI
+ajM
amR
anA
-amb
+apo
aoI
-amb
-alI
+apo
+axm
arg
arZ
asL
atQ
-alZ
+auu
avp
are
axv
@@ -152319,23 +147309,23 @@ 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
@@ -152397,13 +147387,13 @@ cKY
cMv
cNY
cPM
-cMs
+aMb
cSH
-cMs
cSH
-cMs
+cki
+cYO
+cYO
cYO
-cSH
dbb
dcr
ddX
@@ -152411,12 +147401,12 @@ dgy
dgQ
diI
dkg
-dlo
+dqF
dKV
-dlo
+dgQ
dpr
dqF
-dkg
+dqF
dtc
duq
dvD
@@ -152544,15 +147534,15 @@ aeC
abj
agK
ahf
-ahK
-ahe
-aiw
ahe
ahe
ahe
ahe
ahe
-aix
+ahe
+ahe
+aiY
+ahe
afA
agK
alQ
@@ -152563,9 +147553,9 @@ anC
aod
aoJ
apx
-alI
+axm
arh
-alZ
+auu
asM
atR
asK
@@ -152578,27 +147568,27 @@ 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
@@ -152608,7 +147598,7 @@ bqA
bsu
bSV
bEq
-bwo
+bEq
bxz
bzb
bEq
@@ -152627,7 +147617,7 @@ bXa
bSF
cau
bSF
-bSF
+pfp
cfS
cnw
cnC
@@ -152645,34 +147635,34 @@ cyA
bSF
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
@@ -152800,17 +147790,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
@@ -152824,32 +147814,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
@@ -152865,15 +147855,15 @@ bng
bsv
bsv
btH
-bwp
+btH
bxA
btH
btH
bsv
bsv
-bng
+bgs
bHD
-bng
+bgs
bLh
bLh
bLh
@@ -152902,29 +147892,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
@@ -153059,30 +148049,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
@@ -153092,27 +148082,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
@@ -153122,15 +148112,15 @@ bng
aaa
abj
aaa
-bwp
+btH
bxA
btH
aaa
abj
aaa
-bng
+bgs
bHE
-bng
+bgs
bLi
bNi
bPd
@@ -153152,36 +148142,36 @@ coI
cqq
bYH
ctd
-cuq
-bsh
+cuu
+bqv
cxn
cyB
cAc
cBE
-cDe
-cEm
+cyB
+cxn
cFd
hos
cmt
-cJn
+bMD
cKZ
-cMy
+cYP
cOa
-cPP
+cPQ
cRp
cSI
cUg
-cPO
-cXt
-cYQ
-cPO
-dlD
-dco
-cNT
+aQo
+cYP
+cYS
+cZL
+cKO
+aRT
+cSA
cJg
dgS
cMp
-cMp
+cFe
dFE
dmt
dnU
@@ -153314,27 +148304,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
@@ -153342,31 +148332,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
@@ -153377,17 +148367,17 @@ bQa
bQg
bng
aaa
-btL
+abj
btL
bwq
bxB
bzc
btL
-btL
+abj
aaa
-bng
+bgs
bHF
-bng
+bgs
bLj
bNj
bPe
@@ -153409,32 +148399,32 @@ cax
cax
bYK
ctd
-cuq
-bsh
+cuu
+bqv
cxn
cyC
cAd
cBF
+cAc
cxn
-cjp
+bDD
+cGJ
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
@@ -153571,29 +148561,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
@@ -153606,26 +148596,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
@@ -153635,14 +148625,14 @@ boG
bqB
abj
btL
-bvc
+btL
bwr
bxC
bwv
-bvc
+btL
btL
abj
-bng
+bgs
buY
bxx
bLk
@@ -153667,31 +148657,31 @@ chC
lEt
ctf
cus
-cvT
+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
@@ -153700,17 +148690,17 @@ dls
dmu
dnW
dpw
-dqJ
+dxW
dsf
dth
dut
dvH
dwI
dxW
-dxW
+dba
dXz
dmt
-dBW
+dCd
dDh
dEq
aaa
@@ -153828,27 +148818,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
@@ -153875,7 +148865,7 @@ aKI
aXU
aSa
aTy
-aVd
+aYf
aWD
aYf
aZx
@@ -153883,7 +148873,7 @@ bbl
bfN
bif
bfH
-bgS
+aXS
bik
bjO
bbe
@@ -153893,15 +148883,15 @@ bqC
aaa
btL
bvd
-bws
+bwv
bxD
-bwu
+bwv
bAI
btL
aaa
-bng
+bgs
bHH
-bng
+bgs
bLl
bNl
bPg
@@ -153922,32 +148912,32 @@ cay
cax
cqr
bYK
-ctg
-cur
-cvU
+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
-dqW
+cJp
+dfK
+bng
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cYP
+cJg
+cJg
+daZ
+dcn
ddU
cKY
diG
@@ -153957,7 +148947,7 @@ dmj
dmu
dnX
dpx
-dqK
+dvG
dsg
dti
duu
@@ -154085,13 +149075,13 @@ abj
abi
abj
agK
-ahk
-ahk
-ahk
+agK
+agK
+agK
aiy
-agK
-agK
-agK
+aiy
+aiy
+aiu
agK
agK
agK
@@ -154101,11 +149091,11 @@ abj
acF
acF
abj
-alI
+axm
aox
aph
apY
-alI
+axm
abj
asc
asc
@@ -154129,10 +149119,10 @@ aDX
aDX
aSw
aQv
-aYt
+aKJ
aSa
aTz
-aVe
+aYg
aWE
aYg
aZy
@@ -154142,7 +149132,7 @@ bhZ
bfI
bgS
bil
-bjP
+bjL
bxy
bng
boH
@@ -154156,9 +149146,9 @@ bzd
bAJ
btL
aaa
-bng
+bgs
bHF
-bqC
+bgt
bLm
bTd
bPh
@@ -154179,37 +149169,37 @@ ccq
coK
cqr
bYH
-ctg
-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
@@ -154341,12 +149331,15 @@ acp
aaa
abj
abj
-agL
-ahl
-ahM
+aaa
+aaa
+aaa
ahM
aiz
agL
+agL
+aiw
+ahM
aaa
aaa
aaa
@@ -154355,14 +149348,11 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-alI
+axm
aoi
-aoN
+dZP
dZS
-alI
+axm
abj
asc
asP
@@ -154386,7 +149376,7 @@ aJE
aJE
aQs
aQv
-aYt
+aKJ
aSa
aTA
aVf
@@ -154407,15 +149397,15 @@ bng
aaa
btL
bvf
-bwu
+bwv
bxF
-bwu
+bwv
bAK
btL
aaa
-bqC
+bgt
bHF
-bqC
+bgt
bLn
bLn
bLn
@@ -154436,37 +149426,37 @@ bYK
bYH
cqs
bYH
-ctg
-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
@@ -154481,7 +149471,7 @@ dmt
dmt
dmt
dmt
-dbo
+cKY
dDt
cKY
cKY
@@ -154615,11 +149605,11 @@ aaa
aaa
aaa
aaa
-alI
+axm
dZP
dZR
dZU
-alI
+axm
abj
asc
asQ
@@ -154630,20 +149620,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
@@ -154667,10 +149657,10 @@ bvg
bwv
bxG
bwv
-bvc
+btL
btL
abj
-bng
+bgs
bHI
bJt
bLn
@@ -154704,45 +149694,45 @@ cxn
cxn
cxn
xQW
-cmt
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
@@ -154872,11 +149862,11 @@ aaa
aaa
aaa
aaa
-alI
+axm
dZO
dZQ
dZT
-alI
+axm
abj
asd
afO
@@ -154889,7 +149879,7 @@ auE
abj
abj
abj
-aCQ
+aJu
aGf
gyp
aFS
@@ -154901,13 +149891,13 @@ abj
abj
abj
abj
-aSc
+aSa
aTC
aVh
aWH
aYi
aZB
-aSc
+aSa
bgW
beo
bfL
@@ -154915,17 +149905,17 @@ bgU
bim
bjS
bMn
-bnj
+bbi
abj
aaa
aaa
+aaa
btL
btL
btL
btL
btL
-btL
-btL
+aaa
aaa
bFS
bFS
@@ -154950,20 +149940,20 @@ cnK
coM
cqt
bYH
-ctg
-cuq
-bso
+ctj
+cuu
+ckH
cxn
czU
-cAf
+bBu
cBK
cDh
cEo
cxn
-hos
-cHX
-cJq
-cJq
+cUA
+cMz
+cMz
+cMz
cMz
cOg
cOg
@@ -154971,33 +149961,33 @@ cMz
cSO
cUr
cXl
-cXK
+dbu
cUr
dbs
-dbk
+cMp
dcv
ded
dgB
dgX
-cXx
-cVT
-cXx
-cVT
-dnZ
-dpB
-cXx
-cVT
-cXx
-cVT
-cXx
+dgX
cVT
dxZ
-cVT
+dgX
+dnZ
+dpB
+dgX
+dgX
+dgX
+dgX
+dgX
+dgX
+dxZ
+dgX
dAt
dBo
dCi
dDv
-dgX
+dbH
dFd
dTx
dLb
@@ -155129,11 +150119,11 @@ aaa
aaa
aaa
aaa
-alI
-alI
-alI
-alI
-alI
+axm
+axm
+axm
+axm
+axm
abj
asc
aqG
@@ -155146,33 +150136,33 @@ 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
@@ -155207,18 +150197,18 @@ cnL
coN
cqt
bYH
-ctg
-cuq
-bso
+ctj
+cuu
+ckH
cxn
czU
-cAf
+bBu
cBK
cxn
cxn
cxn
-hos
-cHX
+cUA
+cMz
cJr
cLd
cMA
@@ -155231,27 +150221,27 @@ cXq
dcE
cZp
cUr
-dcA
-don
-dgA
+cKV
+cwo
+cSF
dil
-dlu
+cSF
diM
+cSF
dlu
-dlu
-dlu
-dob
-dpC
-dlu
+cSF
+dqW
+cSF
+cSF
dsi
-dlu
-ehq
-dlu
+cSF
+cMq
+cSF
diM
dlu
-ehq
+cMq
hmC
-cOl
+cKY
dCj
dDw
dEs
@@ -155264,7 +150254,7 @@ dIX
abj
dKA
dNi
-dLS
+dLT
dMx
dNk
dRh
@@ -155398,7 +150388,7 @@ aus
auC
avw
ayH
-axy
+aCm
asc
aaa
aaa
@@ -155415,19 +150405,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
@@ -155468,19 +150458,19 @@ ctj
cuu
cvW
cxn
-czU
+bAd
cAi
cBL
cDh
cEq
cDe
-hos
-cHX
+cUA
+cMz
cJs
cLe
cMB
-cMB
-cMB
+cbI
+cfw
cRu
cSQ
cVS
@@ -155509,8 +150499,8 @@ cXJ
dSd
dvK
cXJ
-dbo
-dDt
+cKY
+dlw
cKY
cKY
cTX
@@ -155521,7 +150511,7 @@ dFG
aaa
dKB
dNW
-dLj
+deV
dMy
dNl
dRi
@@ -155678,13 +150668,13 @@ aSb
aSb
aSb
aSb
-aSb
-aaa
+aVc
+aWf
ber
blD
blI
-blM
-ber
+aaa
+aaa
aaa
aaa
aaa
@@ -155721,9 +150711,9 @@ cnM
coM
cqt
bYH
-ctg
-cuq
-bso
+ctj
+cuu
+ckH
cxn
cyJ
cAf
@@ -155731,22 +150721,22 @@ cBM
cxn
cxn
cDe
-hos
-cHX
+cUA
+cMz
cJt
cLf
-cMC
+xKN
cOi
cMC
cSP
cOg
daa
cXz
-daa
+cpc
cZQ
dbu
-dlD
-dco
+cKV
+cwp
duG
cKY
dgZ
@@ -155766,7 +150756,7 @@ cXJ
jkU
fVZ
cXJ
-dCk
+cSZ
dDE
bng
aaa
@@ -155935,13 +150925,13 @@ abj
abj
abj
abj
-abj
-aaa
+aSa
+bbi
bes
-bfO
-blG
-bip
-bjU
+bbi
+bbi
+aaa
+aaa
aaa
aaa
aaa
@@ -155978,7 +150968,7 @@ cnN
coP
cqu
bYH
-ctg
+ctj
cuv
cvX
cxn
@@ -155989,22 +150979,22 @@ cDh
cFb
cFg
ltY
-cHX
+cMz
cJu
cLf
-cMD
+cMC
cOj
-cPV
+cMC
cRv
cSV
cVU
cXA
-cZZ
-cZR
-cXl
-dlD
-dqW
-cNT
+dcE
+cZQ
+dbu
+cKV
+cwp
+cSF
cJg
dhe
dwN
@@ -156023,7 +151013,7 @@ cXJ
eha
hTW
cXJ
-dCl
+cSY
dDy
cqJ
abj
@@ -156192,11 +151182,11 @@ abj
abj
aaa
aaa
-abj
aaa
aaa
+aWC
+aaa
aaa
-bgY
aaa
aaa
aaa
@@ -156239,14 +151229,14 @@ cwa
cuw
cJc
cxn
-cyE
+cxn
cxn
cBN
cxn
cxn
cFg
-cGF
-cHX
+bHf
+cMz
cJv
cLg
cMG
@@ -156259,9 +151249,9 @@ cXB
cYW
cZS
dbv
-dlD
-dco
-cNT
+cKV
+cwp
+cSF
dfD
dhe
dwP
@@ -156280,7 +151270,7 @@ vrB
mko
dXw
cXJ
-cmt
+boG
dDE
bng
aaa
@@ -156294,7 +151284,7 @@ dFG
dXG
dPg
dQw
-dLY
+dfQ
dWU
dFG
abj
@@ -156449,7 +151439,7 @@ aaa
aaa
aaa
aaa
-abj
+aaa
aaa
aaa
aaa
@@ -156503,12 +151493,12 @@ cDi
cnP
cFh
ltY
-cHX
-cJq
+cMz
+cMz
cLh
cMF
-cJq
-cJq
+cMz
+cMz
cMz
cMz
cWd
@@ -156518,7 +151508,7 @@ cWd
cWd
dbl
dcx
-cNT
+cwr
cJg
dhd
diN
@@ -156549,7 +151539,7 @@ dFG
dFG
dFG
dJW
-dLV
+dFH
dMB
dIc
dGw
@@ -156706,7 +151696,7 @@ abj
abj
aaa
aaa
-abj
+aaa
aaa
aaa
aaa
@@ -156749,8 +151739,8 @@ cnP
coR
cqw
crW
-ctm
crW
+byo
cxd
crW
cyL
@@ -156771,10 +151761,10 @@ cUl
cVW
cXC
cYX
-cYX
+cpK
cWd
-dlD
-dco
+cKV
+cwp
dXp
cKY
cKY
@@ -156794,7 +151784,7 @@ dAx
dAx
eSe
dAx
-dCl
+cSY
dDC
bng
abj
@@ -156802,13 +151792,13 @@ dFG
dGt
dHf
dId
-dIY
+dNt
dJP
dKC
dLe
-dLW
+dOd
dMC
-dNo
+dOd
dOd
dOG
dPj
@@ -156962,9 +151952,9 @@ abj
aaa
aaa
abj
-abj
-abj
-abj
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -157001,15 +151991,15 @@ cgc
chN
bYM
ckT
-cjn
+bqj
cnP
coR
cqw
crW
ctn
+byo
+cwc
crW
-cwb
-cxq
cyM
crW
cBP
@@ -157017,22 +152007,22 @@ cDk
cnP
cFj
cGN
-cHY
+boG
cJw
-cLj
+xWD
cMH
-cPZ
+cWd
cRx
-cPZ
+cWd
cUm
-cVX
-cXE
+cXG
+cXG
cYY
cZU
-dbw
-dbm
-dqW
-cNT
+cUr
+cKV
+cwp
+cSF
cJg
dhd
dhc
@@ -157051,7 +152041,7 @@ dAx
muK
ifj
dAx
-cmt
+boG
dDE
cqJ
aaa
@@ -157061,11 +152051,11 @@ dHg
dIe
dIZ
dJQ
-dIe
+dej
dLf
-dIe
+dej
dMD
-dNp
+dOH
dOe
dOH
dPk
@@ -157221,7 +152211,7 @@ abj
abj
aaa
aaa
-abj
+aaa
aaa
aaa
aaa
@@ -157277,7 +152267,7 @@ cGO
cHZ
cJx
cLk
-cms
+cMH
des
cSR
cWd
@@ -157308,23 +152298,23 @@ dya
dzm
dAu
dAx
-dCk
+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
@@ -157476,14 +152466,14 @@ abj
aaa
aaa
abj
+acF
+acF
+acF
+acF
+acF
+acF
+abj
abj
-aaa
-acF
-acF
-acF
-acF
-acF
-acF
abj
wtK
bsB
@@ -157522,7 +152512,7 @@ cqx
crW
ctp
cuz
-cwc
+bzF
cxs
cyO
crX
@@ -157539,14 +152529,14 @@ cQa
cSS
cSU
cUp
-cVZ
+cXG
cXG
cYZ
cZW
cUr
-dlD
+cKV
dtC
-cNT
+cSF
cJg
dhe
dye
@@ -157565,13 +152555,13 @@ dAx
vbZ
dAv
dAx
-dCk
+cSZ
dDE
bng
aaa
dFG
dGw
-dHi
+dNr
dJa
dJf
dGw
@@ -157581,7 +152571,7 @@ dKB
dGw
dNr
dOg
-dHi
+dNr
dGw
dFG
dFG
@@ -157803,7 +152793,7 @@ cZX
cWd
dbn
dcz
-cNT
+cSF
cKY
dhf
diO
@@ -157822,7 +152812,7 @@ dAx
kVM
dAw
dAx
-dCl
+cSY
dDC
bng
abj
@@ -157839,7 +152829,7 @@ dGw
dNs
dOh
dOJ
-dPm
+dIc
dPU
dQx
dXf
@@ -158034,10 +153024,10 @@ cnP
coS
cqz
crW
-ctr
+crW
cuB
cwd
-cxu
+crW
cyQ
cAl
cBS
@@ -158048,7 +153038,7 @@ cGQ
cIc
aFx
dlw
-cHR
+bng
cWd
cWc
cWc
@@ -158058,9 +153048,9 @@ cWd
cWd
cWd
cWd
-dbo
+cKY
dec
-dej
+cKY
cKY
cKY
cKY
@@ -158091,10 +153081,10 @@ dXc
dJT
dXE
dLi
-dLZ
-dMF
+dOd
+dFI
dNt
-dOi
+dOk
dOK
dWV
dPV
@@ -158299,26 +153289,26 @@ cyR
cxv
cBT
cDo
-cuw
+bDB
cFn
cGR
cId
aFx
cME
-cMK
+diP
cOo
cOo
diP
diP
dtu
-cWa
+cjn
cXD
cZc
cqC
-dbp
+boG
dcB
dek
-cWa
+cjn
dhg
diP
diP
@@ -158329,20 +153319,20 @@ diP
diP
dsj
dtu
-dko
+boG
gpX
-ctu
+cMH
dyc
dzo
hjo
-cWa
+cjn
obN
dDE
bng
aaa
dFJ
dGz
-dHl
+dJi
dJc
dXh
dJU
@@ -158541,7 +153531,7 @@ ccF
cet
cgh
hTV
-cjn
+bqj
ckW
cqI
cnP
@@ -158562,11 +153552,11 @@ cGS
cIe
aFx
cLn
-cML
-cML
+cbm
+cbm
cQd
cRz
-cSW
+cjF
cUu
cWb
cWb
@@ -158577,14 +153567,14 @@ dcC
del
dfH
dhh
-cSW
-dby
-dby
-dmJ
-dby
-dby
-cSW
-cSW
+cjF
+cHW
+cHW
+cLL
+cHW
+cHW
+cjF
+cjF
dtv
duH
dyd
@@ -158605,7 +153595,7 @@ dXi
dJV
dGw
dLk
-dMb
+dXi
dMH
dNv
dOk
@@ -158800,7 +153790,7 @@ cgi
hTV
cjo
ckY
-boG
+brM
cnP
cnP
cnP
@@ -158815,7 +153805,7 @@ cnP
cnP
cnP
cFw
-bmW
+bHg
cIm
aFx
aFx
@@ -158837,12 +153827,12 @@ dhi
dfI
dfI
dfI
-dmE
+dev
dfI
dfJ
dfJ
dfI
-gmN
+xWD
duL
aOx
aOx
@@ -158856,9 +153846,9 @@ dDG
abj
dFG
dGw
-dHn
+dGw
dIl
-dJg
+dGw
dJW
dGw
dLl
@@ -158867,7 +153857,7 @@ dGw
dNw
dOl
dON
-dPm
+dIc
dPX
dQA
dXf
@@ -159010,7 +154000,7 @@ aaa
tgE
boG
boG
-boG
+aOR
mhu
qXF
nPe
@@ -159057,13 +154047,13 @@ cgj
hTV
cjp
ckW
-boH
-bng
+brS
+bgs
coU
cJn
ctc
cqI
-boH
+brS
cqI
aFx
cyT
@@ -159318,7 +154308,7 @@ gGu
cnR
gGu
cqD
-coV
+gGu
khY
cuF
cqI
@@ -159328,9 +154318,9 @@ aFv
aFv
aFv
cEt
-cFq
-cGU
-cIg
+bEY
+cGV
+bKv
cEu
cAq
cAq
@@ -159356,7 +154346,7 @@ diS
diS
doo
dsk
-dtw
+dtx
kSX
aOx
dwR
@@ -159573,19 +154563,19 @@ cjr
cla
cjr
cjr
-cjn
+bqj
cqE
-bqC
-bqB
+bgt
+bwR
ckV
-boH
+brS
aFx
cyV
cAn
aFw
aHA
aFx
-cFq
+bEY
cGV
cIh
aFx
@@ -159830,12 +154820,12 @@ cjs
clb
cmy
cnS
-cqi
+ctc
cqE
csd
-cjn
+bqj
ckW
-boH
+brS
aFx
aFx
aFx
@@ -159853,7 +154843,7 @@ aFx
aFx
cSY
cUy
-cXJ
+dlz
cZg
dab
ddR
@@ -160039,7 +155029,7 @@ ygH
aJx
nli
abQ
-aKS
+aPv
ygH
aSi
aTG
@@ -160064,7 +155054,7 @@ loP
tJH
bub
bzm
-bAS
+bHZ
bub
bub
bub
@@ -160090,7 +155080,7 @@ cnT
coX
cqF
cse
-bng
+bgs
cuG
cjm
aFx
@@ -160099,9 +155089,9 @@ cAo
cBW
cAq
aFx
-cFq
-cGU
-cIg
+bEY
+cGV
+bKv
aFx
cLp
cMN
@@ -160347,9 +155337,9 @@ cjr
coY
cqG
csf
-bqC
+bgt
cuH
-cjn
+bqj
aFx
cyW
cAp
@@ -160357,7 +155347,7 @@ cAq
cAq
cEu
cFs
-cGU
+cGV
cIj
cJy
cLp
@@ -160367,7 +155357,7 @@ cQi
aFx
cSY
cUv
-cXJ
+dlz
cZi
daR
deo
@@ -160560,7 +155550,7 @@ ygH
aqq
ygH
ygH
-aZN
+bOc
bbt
ygH
ygH
@@ -160601,10 +155591,10 @@ cjv
cle
cjv
cjr
-boH
+brS
bHF
-boH
-bng
+brS
+bgs
cuH
cmq
aFx
@@ -160613,8 +155603,8 @@ cAq
cBX
aKk
aFx
-cFt
-cGU
+cFv
+cGV
cIk
aFx
cLq
@@ -160623,8 +155613,8 @@ cLp
cQh
aFx
cTb
-ckW
-cXJ
+cUA
+dlz
cZj
daS
dep
@@ -160641,7 +155631,7 @@ dop
dpN
dqY
dfI
-dtw
+dtx
duL
dvT
dwW
@@ -160861,7 +155851,7 @@ cjr
coZ
csb
csg
-bng
+bgs
ckX
cmr
aFx
@@ -160871,7 +155861,7 @@ aFx
aFx
aFx
cFu
-cGU
+cGV
cIk
aFx
aFx
@@ -160893,7 +155883,7 @@ dfI
dfI
dfI
dhi
-dmK
+cLW
dfI
dfJ
dfJ
@@ -161118,7 +156108,7 @@ cjr
cpa
cqI
csh
-bng
+bgs
ckW
cmr
aFx
@@ -161128,7 +156118,7 @@ cBY
cyY
bmW
cFv
-cGR
+cGV
cIl
bmW
cyY
@@ -161139,23 +156129,23 @@ 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
+xWD
ujH
aOx
dwY
@@ -161372,10 +156362,10 @@ cjy
ukv
cmD
cjr
-bng
-cqJ
-bng
-bng
+bgs
+bws
+bgs
+bgs
cuH
cqI
aFx
@@ -161384,8 +156374,8 @@ cAr
cAr
cAr
cEv
-cFt
-cGU
+cFv
+cGV
cIk
cEv
cAr
@@ -161632,7 +156622,7 @@ cjr
aaa
aaa
abj
-cqJ
+bws
cLm
cwk
aFx
@@ -161641,9 +156631,9 @@ cAs
cAs
cAs
bmW
-cFt
+bFh
cGT
-cIk
+bKD
bmW
cLr
cAs
@@ -161669,8 +156659,8 @@ bng
dev
bng
vMI
-bHF
-sZT
+cSL
+cUM
bLn
dxa
dyl
@@ -161899,7 +156889,7 @@ bmW
aFx
aFx
cFw
-bmW
+bHg
cIm
aFx
aFx
@@ -162153,7 +157143,7 @@ ctx
czb
cAt
cBZ
-ctx
+jHa
ctx
cFx
cGX
@@ -162181,11 +157171,11 @@ aaa
cqJ
dmF
dor
-aeB
-aeB
+cPC
+cPC
dtD
-aeB
-aeB
+cPC
+cPC
iwQ
tks
dAF
@@ -162405,7 +157395,7 @@ abj
csj
ctx
cuL
-cwn
+czc
cxx
czc
czc
@@ -162438,11 +157428,11 @@ abj
cqJ
dot
dos
-aeB
-dtF
-duO
-dGZ
-aeB
+cPC
+cRf
+cSM
+cVL
+cPC
dAF
yiO
tks
@@ -162662,22 +157652,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
@@ -162695,11 +157685,11 @@ aaa
cqJ
cqJ
bng
-aeB
-dtG
+cPC
+cRC
dGr
uAP
-aeB
+cPC
vFf
pBz
ojw
@@ -162919,16 +157909,16 @@ aaa
csj
cty
cuM
-cwp
-cxz
-czd
+cLt
+cxA
+cze
cAu
cuM
cDr
cEx
cze
cze
-cIq
+cze
cJB
cLu
cuM
@@ -162952,11 +157942,11 @@ abj
abj
abj
abj
-aeB
+cPC
odY
dGs
sPS
-aeB
+cPC
bLn
mDm
bLn
@@ -163176,7 +158166,7 @@ abj
csj
ctz
cuM
-cwp
+cLt
cxA
cze
cAu
@@ -163209,11 +158199,11 @@ abi
aaa
abi
abi
-aeC
-aeC
+cPS
+cPS
dGX
-aeC
-aeC
+cPS
+cPS
abj
abj
abj
@@ -163433,14 +158423,14 @@ aaa
csj
ctA
cuM
-cwp
+cLt
cxA
cze
cAu
cuM
cDr
cEx
-cFA
+cze
cze
cze
cJB
@@ -163467,9 +158457,9 @@ aaa
aaa
aaa
abj
-aeC
+cPS
dKx
-aeC
+cPS
abj
abj
abi
@@ -163690,15 +158680,15 @@ abj
csj
ctB
cuM
-cwq
+cuM
cxB
czf
cuM
cuM
cAu
cEy
-cFB
cGZ
+bIB
cGZ
cJC
cLt
@@ -163724,9 +158714,9 @@ aaa
aaa
aaa
abj
-aeC
+cPS
qRT
-aeC
+cPS
abj
abj
abi
@@ -163947,7 +158937,7 @@ aaa
csj
ctB
cuM
-cwo
+cuM
cxC
czg
czg
@@ -163955,9 +158945,9 @@ czg
czg
czg
cFC
+bIE
czg
-czg
-czg
+bOp
czg
czg
czg
@@ -163989,9 +158979,9 @@ aaa
abj
aaa
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
aaa
abj
@@ -164204,24 +159194,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
@@ -164239,20 +159229,20 @@ aaa
aaa
abi
abj
-acg
+cSN
abj
aaa
-kYo
-ace
-aco
+dak
+daz
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
abj
aaa
@@ -164496,20 +159486,20 @@ aaa
aaa
abj
aaa
-acp
+cTN
abj
abj
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
abi
aaa
@@ -164753,20 +159743,20 @@ aaa
aaa
abi
abj
-acp
+cTN
abj
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
abj
-kYo
-acf
-aco
+dak
+daC
+dbc
abj
-kYo
-acf
-aco
+dak
+daC
+dbc
abj
abj
aaa
@@ -164936,13 +159926,13 @@ abj
aaa
abj
aaa
-biG
+aZw
bmk
-bmg
+baJ
bpi
brk
bmk
-biG
+aZw
aaa
aaa
ePS
@@ -165010,20 +160000,20 @@ aaa
aaa
abi
aaa
-acp
+cTN
abj
abj
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
abi
aaa
@@ -165193,13 +160183,13 @@ abj
aaa
abj
aaa
-biG
+aZw
bml
-bmh
+bbm
bpj
brl
bta
-biG
+aZw
abj
abj
ePS
@@ -165267,20 +160257,20 @@ aaa
aaa
abi
abj
-acp
+cTN
abj
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
abj
-acg
+cSN
abj
aaa
-kYo
-acf
-aco
+dak
+daC
+dbc
aaa
abi
abj
@@ -165450,13 +160440,13 @@ aJx
abj
abj
abj
-biG
+aZw
bmm
bnK
myN
brm
btb
-biG
+aZw
aaa
abj
ngg
@@ -165524,19 +160514,19 @@ aaa
aaa
abj
aaa
-acp
+cTN
abj
aaa
abj
-acg
+cSN
abj
abj
abj
-acp
+cTN
abj
abj
abj
-acg
+cSN
abj
aaa
aaa
@@ -165707,13 +160697,13 @@ aJx
aaa
abj
aaa
-biG
+aZw
bmn
bnL
bpk
-brn
+beI
btR
-biG
+aZw
abj
abj
aaa
@@ -165781,22 +160771,22 @@ aaa
aaa
abi
abj
-acp
+cTN
ewF
-xKG
-xKG
-xKG
-xKG
-xKG
-xKG
-ach
-acp
-acp
-acp
+cYU
+cYU
+cYU
+cYU
+cYU
+cYU
+dbm
+cTN
+cTN
+cTN
ewF
-xKG
-xKG
-xKG
+cYU
+cYU
+cYU
rnO
abj
abi
@@ -165964,13 +160954,13 @@ fcg
aaa
abj
aaa
-biG
-biG
-bmg
+aZw
+aZw
+baJ
bpl
bro
-biG
-biG
+aZw
+aZw
aaa
abj
abj
@@ -166042,15 +161032,15 @@ aaa
abj
aaa
abj
-aci
+daG
abj
abj
abj
-acp
+cTN
abj
abj
abj
-aci
+daG
abj
aaa
aaa
@@ -166298,17 +161288,17 @@ abi
abj
abj
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
abj
-aci
+daG
abj
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
abi
abi
@@ -166555,17 +161545,17 @@ aaa
aaa
abj
abj
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
abi
aaa
@@ -166812,17 +161802,17 @@ aaa
vXX
abi
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
abj
-kYo
-acj
-aco
+dak
+daT
+dbc
abj
-kYo
-acj
-aco
+dak
+daT
+dbc
abj
abi
aaa
@@ -167069,17 +162059,17 @@ aaa
vXX
abi
abj
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
abj
aaa
@@ -167326,17 +162316,17 @@ aaa
aaa
abi
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
abi
aaa
@@ -167587,9 +162577,9 @@ aaa
aaa
aaa
aaa
-kYo
-acj
-aco
+dak
+daT
+dbc
aaa
aaa
aaa
diff --git a/_maps/map_files/generic/centcomm.dmm b/_maps/map_files/generic/centcomm.dmm
index a4efbde1682..1acf135edc8 100644
--- a/_maps/map_files/generic/centcomm.dmm
+++ b/_maps/map_files/generic/centcomm.dmm
@@ -1620,6 +1620,7 @@
/obj/structure/sign/securearea{
pixel_x = -32
},
+/obj/machinery/suit_storage_unit/gamma,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
"fW" = (
@@ -3547,6 +3548,12 @@
/obj/structure/flora/ausbushes/sparsegrass,
/turf/simulated/floor/grass,
/area/centcom/control)
+"nb" = (
+/obj/machinery/autolathe/upgraded/gamma,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/turf/simulated/floor/mineral/plastitanium/red,
+/area/shuttle/gamma/space)
"nc" = (
/obj/machinery/door/airlock/centcom{
name = "Gamma Armory";
@@ -4076,18 +4083,12 @@
/area/centcom/gamma)
"oJ" = (
/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/ammo_box/magazine/m10mm,
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
-/obj/item/gun/projectile/automatic/pistol{
- name = "pistol"
- },
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/ammo_box/magazine/smgm9mm,
+/obj/item/gun/projectile/automatic/proto,
+/obj/item/gun/projectile/automatic/proto,
+/obj/item/gun/projectile/automatic/proto,
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
"oN" = (
@@ -4258,14 +4259,6 @@
/obj/structure/flora/ausbushes,
/turf/simulated/floor/grass,
/area/centcom/specops)
-"pk" = (
-/obj/structure/closet/secure_closet/guncabinet,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/ammo_casing/rocket,
-/obj/item/gun/rocketlauncher,
-/turf/simulated/floor/mineral/plastitanium/red,
-/area/shuttle/gamma/space)
"pl" = (
/obj/structure/window/reinforced{
dir = 1
@@ -4317,9 +4310,7 @@
/turf/simulated/floor/mineral/plastitanium/red,
/area/shuttle/gamma/space)
"pu" = (
-/obj/mecha/combat/durand/loaded{
- operation_req_access = list(1)
- },
+/obj/mecha/combat/marauder/ares/loaded,
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4527,6 +4518,11 @@
},
/turf/simulated/floor/plasteel/dark,
/area/centcom/specops)
+"qf" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/gun/medbeam,
+/turf/simulated/floor/mineral/plastitanium/red,
+/area/shuttle/gamma/space)
"qh" = (
/obj/structure/holowindow,
/turf/simulated/floor/holofloor{
@@ -9964,6 +9960,12 @@
icon_state = "red"
},
/area/holodeck/source_knightarena)
+"LN" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -24
+ },
+/turf/simulated/floor/mineral/plastitanium/red,
+/area/shuttle/gamma/space)
"LO" = (
/obj/machinery/autolathe/upgraded{
hacked = 1
@@ -25459,8 +25461,8 @@ th
fm
of
oB
-pf
-pf
+LN
+nb
pf
fV
of
@@ -25717,7 +25719,7 @@ fm
of
oJ
pf
-pk
+po
pf
pq
of
@@ -25974,7 +25976,7 @@ fm
of
oW
pf
-po
+qf
pf
pu
of
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index a633ddab5eb..d9b98c7724f 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -40,7 +40,6 @@
#define BELOW_OPEN_DOOR_LAYER 2.6
#define BLASTDOOR_LAYER 2.65
#define OPEN_DOOR_LAYER 2.7
-#define DOOR_HELPER_LAYER 2.71 //keep this above OPEN_DOOR_LAYER
#define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible
#define TABLE_LAYER 2.8
#define BELOW_OBJ_LAYER 2.9
@@ -52,6 +51,7 @@
#define SHUTTER_LAYER 3.12 // HERE BE DRAGONS
#define ABOVE_OBJ_LAYER 3.2
#define ABOVE_WINDOW_LAYER 3.3
+#define DOOR_HELPER_LAYER 3.31 // Keep this above doors and windoors
#define SIGN_LAYER 3.4
#define NOT_HIGH_OBJ_LAYER 3.5
#define HIGH_OBJ_LAYER 3.6
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index 20a73482e79..2b95577ef3c 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -130,6 +130,8 @@
#define SOUTH_OF_TURF(T) locate(T.x, T.y - 1, T.z)
#define WEST_OF_TURF(T) locate(T.x - 1, T.y, T.z)
+#define ATOM_COORDS(A) list(A.x, A.y, A.z)
+
#define MIN_SUPPLIED_LAW_NUMBER 15
#define MAX_SUPPLIED_LAW_NUMBER 50
@@ -306,10 +308,10 @@
#define TRIGGER_GUARD_NORMAL 1
// Macro to get the current elapsed round time, rather than total world runtime
-#define ROUND_TIME (SSticker.round_start_time ? (world.time - SSticker.round_start_time) : 0)
+#define ROUND_TIME (SSticker.time_game_started ? (world.time - SSticker.time_game_started) : 0)
// Macro that returns true if it's too early in a round to freely ghost out
-#define TOO_EARLY_TO_GHOST (ROUND_TIME < GLOB.configuration.general.cryo_penalty_period)
+#define TOO_EARLY_TO_GHOST (ROUND_TIME < GLOB.configuration.general.cryo_penalty_period MINUTES)
// Used by radios to indicate that they have sent a message via something other than subspace
#define RADIO_CONNECTION_FAIL 0
@@ -491,3 +493,6 @@
#define HALLUCINATE_MINOR 1
#define HALLUCINATE_MODERATE 2
#define HALLUCINATE_MAJOR 3
+
+// Runechat symbol types
+#define RUNECHAT_SYMBOL_EMOTE 1
diff --git a/code/__DEFINES/radiation.dm b/code/__DEFINES/radiation.dm
index 25ae77cf83d..9f7ea16f7b2 100644
--- a/code/__DEFINES/radiation.dm
+++ b/code/__DEFINES/radiation.dm
@@ -53,5 +53,3 @@ Ask ninjanomnom if they're around
#define RAD_GEIGER_MEASURE_SMOOTHING 5
#define RAD_GEIGER_GRACE_PERIOD 2
-
-#define RAD_DOSAGE_MULTIPLIER 10 // This is used to increase radiation dosage taken during rad_act() calls
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index c61d8319d39..81ef450643b 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -50,7 +50,7 @@ GLOBAL_PROTECT(log_end)
/proc/log_access_in(client/new_client)
if(GLOB.configuration.logging.access_logging)
- var/message = "[key_name(new_client)] - IP:[new_client.address] - CID:[new_client.computer_id] - BYOND v[new_client.byond_version]"
+ var/message = "[key_name(new_client)] - IP:[new_client.address] - CID:[new_client.computer_id] - BYOND v[new_client.byond_version].[new_client.byond_build]"
rustg_log_write(GLOB.world_game_log, "ACCESS IN: [message][GLOB.log_end]")
/proc/log_access_out(mob/last_mob)
diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm
index bf0d7ab2b61..8266d470ff9 100644
--- a/code/__HELPERS/lists.dm
+++ b/code/__HELPERS/lists.dm
@@ -680,6 +680,7 @@ proc/dd_sortedObjectList(list/incoming)
#define UNSETEMPTY(L) if (L && !L.len) L = null
#define LAZYREMOVE(L, I) if(L) { L -= I; if(!L.len) { L = null; } }
#define LAZYADD(L, I) if(!L) { L = list(); } L += I;
+#define LAZYADDOR(L, I) if(!L) { L = list(); } L |= I;
#define LAZYACCESS(L, I) (L ? (isnum(I) ? (I > 0 && I <= L.len ? L[I] : null) : L[I]) : null)
#define LAZYLEN(L) length(L) // Despite how pointless this looks, it's still needed in order to convey that the list is specificially a 'Lazy' list.
#define LAZYCLEARLIST(L) if(L) L.Cut()
diff --git a/code/__HELPERS/names.dm b/code/__HELPERS/names.dm
index 3d7d14e59ce..14add1b8308 100644
--- a/code/__HELPERS/names.dm
+++ b/code/__HELPERS/names.dm
@@ -15,10 +15,6 @@ GLOBAL_VAR(church_name)
return name
-// AA TODO: Remove this. Its always gonna be NAS Trurl
-/proc/command_name()
- return "NAS Trurl"
-
GLOBAL_VAR(religion_name)
/proc/religion_name()
if(GLOB.religion_name)
@@ -139,7 +135,7 @@ GLOBAL_VAR(syndicate_code_response) //Code response for traitors.
var/safety[] = list(1,2,3)//Tells the proc which options to remove later on.
var/nouns[] = list("love","hate","anger","peace","pride","sympathy","bravery","loyalty","honesty","integrity","compassion","charity","success","courage","deceit","skill","beauty","brilliance","pain","misery","beliefs","dreams","justice","truth","faith","liberty","knowledge","thought","information","culture","trust","dedication","progress","education","hospitality","leisure","trouble","friendships", "relaxation")
var/drinks[] = list("vodka and tonic","gin fizz","bahama mama","manhattan","black Russian","whiskey soda","long island tea","margarita","Irish coffee"," manly dwarf","Irish cream","doctor's delight","Beepksy Smash","tequila sunrise","brave bull","gargle blaster","bloody mary","whiskey cola","white Russian","vodka martini","martini","Cuba libre","kahlua","vodka","wine","moonshine")
- var/locations[] = GLOB.teleportlocs.len ? GLOB.teleportlocs : drinks//if null, defaults to drinks instead.
+ var/locations[] = length(SSmapping.teleportlocs) ? SSmapping.teleportlocs : drinks//if null, defaults to drinks instead.
var/names[] = list()
for(var/datum/data/record/t in GLOB.data_core.general)//Picks from crew manifest.
diff --git a/code/__HELPERS/traits.dm b/code/__HELPERS/traits.dm
index a6d288d6af0..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) (\
@@ -185,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/_globalvars/mapping.dm b/code/_globalvars/mapping.dm
index caf4a2a58bb..2e447d0484a 100644
--- a/code/_globalvars/mapping.dm
+++ b/code/_globalvars/mapping.dm
@@ -54,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/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm
index 2eb3d0b36ed..c88dd0671b1 100644
--- a/code/_onclick/hud/alert.dm
+++ b/code/_onclick/hud/alert.dm
@@ -616,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/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/controllers/configuration/sections/system_configuration.dm b/code/controllers/configuration/sections/system_configuration.dm
index a0354bb2b77..42e563d7057 100644
--- a/code/controllers/configuration/sections/system_configuration.dm
+++ b/code/controllers/configuration/sections/system_configuration.dm
@@ -14,6 +14,8 @@
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
@@ -24,3 +26,5 @@
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/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/mapping.dm b/code/controllers/subsystem/mapping.dm
index 044913acb89..014b247ba9e 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -6,6 +6,10 @@ SUBSYSTEM_DEF(mapping)
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()
@@ -62,26 +66,28 @@ SUBSYSTEM_DEF(mapping)
log_startup_progress("Successfully populated lavaland in [stop_watch(lavaland_setup_timer)]s.")
// Now we make a list of areas for teleport locs
- // AA TODO: 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)
+ ghostteleportlocs = sortAssoc(ghostteleportlocs)
// World name
if(GLOB.configuration.general.server_name)
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/shuttles.dm b/code/controllers/subsystem/shuttles.dm
index 85e9e5da52c..71c504b3032 100644
--- a/code/controllers/subsystem/shuttles.dm
+++ b/code/controllers/subsystem/shuttles.dm
@@ -37,7 +37,6 @@ 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
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 320f3671000..14a952cb36f 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -7,8 +7,10 @@ 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 = 75 SECONDS
/// Current status of the game. See code\__DEFINES\game.dm
@@ -266,7 +268,7 @@ 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 + GLOB.configuration.vote.autotransfer_initial_time
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 83963e99562..579a6b7c07c 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -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
@@ -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,9 @@ 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
@@ -222,7 +222,7 @@ SUBSYSTEM_DEF(vote)
if(SSticker.current_state >= 2)
return 0
choices.Add(GLOB.configuration.gamemode.votable_modes)
- if("crew_transfer")
+ if("crew transfer")
if(check_rights(R_ADMIN|R_MOD))
if(SSticker.current_state <= 2)
return 0
@@ -266,16 +266,16 @@ SUBSYSTEM_DEF(vote)
Click here or type vote to place your vote.
You have [GLOB.configuration.vote.vote_time / 10] seconds to vote."})
switch(vote_type)
- if("crew_transfer", "gamemode", "custom", "map")
+ 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" && GLOB.ooc_enabled)
+ 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" && GLOB.ooc_enabled)
auto_muted = TRUE
@@ -314,37 +314,41 @@ SUBSYSTEM_DEF(vote)
dat += "(Cancel Vote) "
else
dat += "Start a vote:
- "
- //restart
- if(admin || GLOB.configuration.vote.allow_restart_votes)
- dat += "Restart"
- else
- dat += "Restart (Disallowed)"
- dat += "
- "
+ // Crew transfer
if(admin || GLOB.configuration.vote.allow_restart_votes)
dat += "Crew Transfer"
else
dat += "Crew Transfer (Disallowed)"
+ dat += "
- "
+
+ // Restart
+ if(admin || GLOB.configuration.vote.allow_restart_votes)
+ dat += "Restart"
+ else
+ dat += "Restart (Disallowed)"
if(admin)
dat += "\t([GLOB.configuration.vote.allow_restart_votes ? "Allowed" : "Disallowed"])"
dat += "
- "
- //gamemode
+
+ // Gamemode
if(admin || GLOB.configuration.vote.allow_mode_votes)
- dat += "GameMode"
+ dat += "Gamemode"
else
- dat += "GameMode (Disallowed)"
+ dat += "Gamemode (Disallowed)"
if(admin)
dat += "\t([GLOB.configuration.vote.allow_mode_votes ? "Allowed" : "Disallowed"])"
-
dat += "
- "
+
+ // Map
if(admin)
dat += "Map"
else
dat += "Map (Disallowed)"
+ dat += "
- "
- dat += "
"
- //custom
+ // Custom
if(admin)
- dat += "- Custom
"
+ dat += "Custom"
dat += "
"
var/datum/browser/popup = new(C.mob, "vote", "Voting Panel", nref=src)
popup.set_content(dat)
@@ -387,14 +391,16 @@ SUBSYSTEM_DEF(vote)
var/votedesc = capitalize(mode)
if(mode == "custom")
votedesc += " ([question])"
- log_and_message_admins("cancelled the running [votedesc] vote.")
+ log_and_message_admins("cancelled the running '[votedesc]' vote.")
reset()
if("toggle_restart")
if(admin)
GLOB.configuration.vote.allow_restart_votes = !GLOB.configuration.vote.allow_restart_votes
+ log_and_message_admins("has [GLOB.configuration.vote.allow_restart_votes ? "enabled" : "disabled"] public restart voting.")
if("toggle_gamemode")
if(admin)
GLOB.configuration.vote.allow_mode_votes = !GLOB.configuration.vote.allow_mode_votes
+ log_and_message_admins("has [GLOB.configuration.vote.allow_mode_votes ? "enabled" : "disabled"] public gamemode voting.")
if("restart")
if(GLOB.configuration.vote.allow_restart_votes || admin)
initiate_vote("restart",usr.key)
@@ -406,7 +412,7 @@ SUBSYSTEM_DEF(vote)
initiate_vote("map", usr.key)
if("crew_transfer")
if(GLOB.configuration.vote.allow_restart_votes || admin)
- initiate_vote("crew_transfer",usr.key)
+ initiate_vote("crew transfer", usr.key)
if("custom")
if(admin)
initiate_vote("custom",usr.key)
diff --git a/code/datums/chatmessage.dm b/code/datums/chatmessage.dm
index 32fca2cb249..ea64c708f55 100644
--- a/code/datums/chatmessage.dm
+++ b/code/datums/chatmessage.dm
@@ -55,8 +55,9 @@
* * owner - The mob that owns this overlay, only this mob will be able to view it
* * italics - Should we use italics or not
* * lifespan - The lifespan of the message in deciseconds
+ * * symbol - The symbol type of the message
*/
-/datum/chatmessage/New(text, atom/target, mob/owner, italics, size, lifespan = CHAT_MESSAGE_LIFESPAN)
+/datum/chatmessage/New(text, atom/target, mob/owner, italics, size, lifespan = CHAT_MESSAGE_LIFESPAN, symbol)
. = ..()
if (!istype(target))
CRASH("Invalid target given for chatmessage")
@@ -64,7 +65,7 @@
stack_trace("/datum/chatmessage created with [isnull(owner) ? "null" : "invalid"] mob owner")
qdel(src)
return
- INVOKE_ASYNC(src, .proc/generate_image, text, target, owner, lifespan, italics, size)
+ INVOKE_ASYNC(src, .proc/generate_image, text, target, owner, lifespan, italics, size, symbol)
/datum/chatmessage/Destroy()
if (owned_by)
@@ -93,8 +94,10 @@
* * radio_speech - Fancy shmancy radio icon represents that we use radio
* * lifespan - The lifespan of the message in deciseconds
* * italics - Just copy and paste, sir
+ * * size - Size of the message
+ * * symbol - The symbol type of the message
*/
-/datum/chatmessage/proc/generate_image(text, atom/target, mob/owner, lifespan, italics, size)
+/datum/chatmessage/proc/generate_image(text, atom/target, mob/owner, lifespan, italics, size, symbol)
// Register client who owns this message
owned_by = owner.client
RegisterSignal(owned_by, COMSIG_PARENT_QDELETING, .proc/on_parent_qdel)
@@ -123,9 +126,17 @@
var/output_color = sanitize_color(target.get_runechat_color()) // Get_runechat_color can be overriden on atoms to display a specific one (Example: Humans having their hair colour as runechat colour)
+ // Symbol for special runechats (emote)
+ switch(symbol)
+ if(RUNECHAT_SYMBOL_EMOTE)
+ symbol = "* "
+ size = size || "small"
+ else
+ symbol = null
+
// Approximate text height
var/static/regex/html_metachars = new(@"&[A-Za-z]{1,7};", "g")
- var/complete_text = "[text]"
+ var/complete_text = "[symbol][text]"
var/mheight = WXH_TO_HEIGHT(owned_by.MeasureText(complete_text, null, CHAT_MESSAGE_WIDTH))
approx_lines = max(1, mheight / CHAT_MESSAGE_APPROX_LHEIGHT)
@@ -183,15 +194,16 @@
* * raw_message - The text content of the message
* * italics - Vacuum and other things
* * size - Size of the message
+ * * symbol - The symbol type of the message
*/
-/mob/proc/create_chat_message(atom/movable/speaker, raw_message, italics=FALSE, size)
+/mob/proc/create_chat_message(atom/movable/speaker, raw_message, italics = FALSE, size, symbol)
if(isobserver(src))
return
// Display visual above source
- new /datum/chatmessage(raw_message, speaker, src, italics, size)
+ new /datum/chatmessage(raw_message, speaker, src, italics, size, CHAT_MESSAGE_LIFESPAN, symbol)
// Tweak these defines to change the available color ranges
diff --git a/code/datums/outfits/outfit_admin.dm b/code/datums/outfits/outfit_admin.dm
index 8a7763410bf..18175766871 100644
--- a/code/datums/outfits/outfit_admin.dm
+++ b/code/datums/outfits/outfit_admin.dm
@@ -647,20 +647,20 @@
name = "Solar Federation Marine"
uniform = /obj/item/clothing/under/solgov
suit = /obj/item/clothing/suit/armor/bulletproof
- back = /obj/item/storage/backpack/security
+ back = /obj/item/storage/backpack/ert/solgov
belt = /obj/item/storage/belt/military/assault/marines/full
head = /obj/item/clothing/head/soft/solgov/marines
glasses = /obj/item/clothing/glasses/night
gloves = /obj/item/clothing/gloves/combat
shoes = /obj/item/clothing/shoes/combat
- l_ear = /obj/item/radio/headset/ert
+ l_ear = /obj/item/radio/headset/ert/alt/solgov
id = /obj/item/card/id
l_hand = /obj/item/gun/projectile/automatic/shotgun/bulldog
suit_store = /obj/item/gun/projectile/automatic/pistol/m1911
r_pocket = /obj/item/flashlight/seclite
pda = /obj/item/pda
+ box = /obj/item/storage/box/responseteam
backpack_contents = list(
- /obj/item/storage/box/responseteam = 1,
/obj/item/clothing/shoes/magboots = 1,
/obj/item/whetstone = 1,
/obj/item/clothing/mask/gas/explorer/marines = 1,
@@ -702,13 +702,12 @@
head = /obj/item/clothing/head/beret/solgov/command
glasses = /obj/item/clothing/glasses/night
back = /obj/item/storage/backpack/satchel
- l_ear = /obj/item/radio/headset/ert/alt/commander
+ l_ear = /obj/item/radio/headset/ert/alt/commander/solgov
l_hand = null
belt = /obj/item/melee/baton/loaded
suit_store = /obj/item/gun/projectile/automatic/pistol/deagle
l_pocket = /obj/item/pinpointer/advpinpointer
backpack_contents = list(
- /obj/item/storage/box/responseteam = 1,
/obj/item/storage/box/handcuffs = 1,
/obj/item/clothing/shoes/magboots/advance = 1,
/obj/item/reagent_containers/hypospray/autoinjector/survival = 1,
@@ -720,14 +719,14 @@
/datum/outfit/admin/solgov/elite
name = "Solar Federation Specops Marine"
uniform = /obj/item/clothing/under/solgov/elite
- head = /obj/item/clothing/head/soft/solgov/marines/elite
+ suit = /obj/item/clothing/suit/space/hardsuit/ert/solgov
+ head = null
+ mask = /obj/item/clothing/mask/gas/explorer/marines
belt = /obj/item/storage/belt/military/assault/marines/elite/full
l_hand = /obj/item/gun/projectile/automatic/ar
backpack_contents = list(
- /obj/item/storage/box/responseteam = 1,
/obj/item/clothing/shoes/magboots/advance = 1,
/obj/item/whetstone = 1,
- /obj/item/clothing/mask/gas/explorer/marines = 1,
/obj/item/reagent_containers/hypospray/autoinjector/survival = 1
)
cybernetic_implants = list(
@@ -737,22 +736,22 @@
/obj/item/organ/internal/cyberimp/arm/flash,
/obj/item/organ/internal/eyes/cybernetic/shield
)
+
/datum/outfit/admin/solgov/elite/lieutenant
name = "Solar Federation Specops Lieutenant"
uniform = /obj/item/clothing/under/solgov/command/elite
- head = /obj/item/clothing/head/beret/solgov/command/elite
+ suit = /obj/item/clothing/suit/space/hardsuit/ert/solgov/command
+ head = null
+ mask = /obj/item/clothing/mask/gas/explorer/marines
glasses = /obj/item/clothing/glasses/night
- back = /obj/item/storage/backpack/satchel
belt = /obj/item/melee/baton/loaded
l_hand = null
suit_store = /obj/item/gun/projectile/automatic/pistol/deagle
l_pocket = /obj/item/pinpointer/advpinpointer
- l_ear = /obj/item/radio/headset/ert/alt/commander
+ l_ear = /obj/item/radio/headset/ert/alt/commander/solgov
backpack_contents = list(
- /obj/item/storage/box/responseteam = 1,
/obj/item/storage/box/handcuffs = 1,
/obj/item/clothing/shoes/magboots/advance = 1,
- /obj/item/clothing/mask/gas/explorer/marines = 1,
/obj/item/reagent_containers/hypospray/autoinjector/survival = 1,
/obj/item/ammo_box/magazine/m50 = 3
)
diff --git a/code/datums/spell.dm b/code/datums/spell.dm
index fe2cc8e346b..9fdfb68bbea 100644
--- a/code/datums/spell.dm
+++ b/code/datums/spell.dm
@@ -560,7 +560,8 @@ GLOBAL_LIST_INIT(spells, typesof(/obj/effect/proc_holder/spell))
to_chat(user, "You shouldn't have this spell! Something's wrong.")
return 0
- if(is_admin_level(user.z) && !centcom_cancast) //Certain spells are not allowed on the centcom zlevel
+ var/turf/T = get_turf(user)
+ if(is_admin_level(T.z) && !centcom_cancast) //Certain spells are not allowed on the centcom zlevel
return 0
if(!holy_area_cancast && user.holy_check())
diff --git a/code/datums/spells/area_teleport.dm b/code/datums/spells/area_teleport.dm
index b931bd9840f..0fdce753476 100644
--- a/code/datums/spells/area_teleport.dm
+++ b/code/datums/spells/area_teleport.dm
@@ -25,14 +25,14 @@
var/A = null
if(!randomise_selection)
- A = input("Area to teleport to", "Teleport", A) as null|anything in GLOB.teleportlocs
+ A = input("Area to teleport to", "Teleport", A) as null|anything in SSmapping.teleportlocs
else
- A = pick(GLOB.teleportlocs)
+ A = pick(SSmapping.teleportlocs)
if(!A)
return
- var/area/thearea = GLOB.teleportlocs[A]
+ var/area/thearea = SSmapping.teleportlocs[A]
if(thearea.tele_proof && !istype(thearea, /area/wizard_station))
to_chat(usr, "A mysterious force disrupts your arcane spell matrix, and you remain where you are.")
diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm
index 10ee68c1104..a566c5148bb 100644
--- a/code/datums/uplink_item.dm
+++ b/code/datums/uplink_item.dm
@@ -849,11 +849,11 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
/datum/uplink_item/stealthy_weapons/martialarts
name = "Martial Arts Scroll"
desc = "This scroll contains the secrets of an ancient martial arts technique. You will master unarmed combat, \
- deflecting all ranged weapon fire, but you also refuse to use dishonorable ranged weaponry. \
+ deflecting ranged weapon fire when you are in a defensive stance (throw mode). Learning this art means you will also refuse to use dishonorable ranged weaponry. \
Unable to be understood by vampire and changeling agents."
reference = "SCS"
item = /obj/item/sleeping_carp_scroll
- cost = 17
+ cost = 13
excludefrom = list(/datum/game_mode/nuclear)
refundable = TRUE
cant_discount = TRUE
diff --git a/code/defines/procs/announce.dm b/code/defines/procs/announce.dm
index b62f0f8763b..e8d3abb7335 100644
--- a/code/defines/procs/announce.dm
+++ b/code/defines/procs/announce.dm
@@ -32,8 +32,8 @@ GLOBAL_DATUM_INIT(event_announcement, /datum/announcement/priority/command/event
/datum/announcement/priority/command/New(do_log = 1, new_sound = sound('sound/misc/notice2.ogg'), do_newscast = 0)
..(do_log, new_sound, do_newscast)
admin_announcement = 1
- title = "[command_name()] Update"
- announcement_type = "[command_name()] Update"
+ title = "NAS Trurl Update"
+ announcement_type = "NAS Trurl Update"
/datum/announcement/priority/command/event/New(do_log = 1, new_sound = sound('sound/misc/notice2.ogg'), do_newscast = 0)
..(do_log, new_sound, do_newscast)
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index d7223c1209d..d8dd3bb44c8 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -273,6 +273,12 @@
/atom/proc/HasProximity(atom/movable/AM)
return
+/**
+ * Proc which will make the atom act accordingly to an EMP.
+ * This proc can sleep depending on the implementation. So assume it sleeps!
+ *
+ * severity - The severity of the EMP. Either EMP_HEAVY or EMP_LIGHT
+ */
/atom/proc/emp_act(severity)
return
diff --git a/code/game/dna/mutations/powers.dm b/code/game/dna/mutations/powers.dm
index c0e20372a19..3d2f991acb6 100644
--- a/code/game/dna/mutations/powers.dm
+++ b/code/game/dna/mutations/powers.dm
@@ -822,9 +822,10 @@
else
M.change_gender(FEMALE)
- var/new_eyes = input("Please select eye color.", "Character Generation", eyes_organ.eye_color) as null|color
- if(new_eyes)
- M.change_eye_color(new_eyes)
+ if(eyes_organ)
+ var/new_eyes = input("Please select eye color.", "Character Generation", eyes_organ.eye_color) as null|color
+ if(new_eyes)
+ M.change_eye_color(new_eyes)
//Alt heads.
if(head_organ.dna.species.bodyflags & HAS_ALT_HEADS)
diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm
index ad3cedafb85..6a64c19ac29 100644
--- a/code/game/gamemodes/blob/blob_report.dm
+++ b/code/game/gamemodes/blob/blob_report.dm
@@ -11,7 +11,7 @@
if(is_station_level(bomb.z))
bomb.r_code = nukecode
- interceptname = "Classified [command_name()] Update"
+ interceptname = "Classified NAS Trurl Update"
intercepttext += "Nanotrasen Update: Biohazard Alert.
"
intercepttext += "Directive 7-12 has been issued for [station_name()].
"
intercepttext += "The biohazard has grown out of control and will soon reach critical mass.
"
@@ -28,7 +28,7 @@
to_chat(aiPlayer, "Laws Updated: [law]")
print_command_report(intercepttext, interceptname, FALSE)
- GLOB.event_announcement.Announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/AI/commandreport.ogg', from = "[command_name()] Update")
+ GLOB.event_announcement.Announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/AI/commandreport.ogg', from = "NAS Trurl Update")
/datum/station_state
var/floor = 0
diff --git a/code/game/gamemodes/blob/powers.dm b/code/game/gamemodes/blob/powers.dm
index 6ed1bc1aef8..f7320a40c72 100644
--- a/code/game/gamemodes/blob/powers.dm
+++ b/code/game/gamemodes/blob/powers.dm
@@ -238,7 +238,7 @@
blobber.LoseTarget()
spawn()
var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as a blobbernaut?", ROLE_BLOB, TRUE, 10 SECONDS, source = blobber)
- if(candidates.len)
+ if(length(candidates) && !QDELETED(blobber))
var/mob/C = pick(candidates)
if(C)
blobber.key = C.key
diff --git a/code/game/gamemodes/changeling/changeling.dm b/code/game/gamemodes/changeling/changeling.dm
index 03326235953..9ffad32b15d 100644
--- a/code/game/gamemodes/changeling/changeling.dm
+++ b/code/game/gamemodes/changeling/changeling.dm
@@ -11,7 +11,7 @@ GLOBAL_LIST_INIT(possible_changeling_IDs, list("Alpha","Beta","Gamma","Delta","E
name = "changeling"
config_tag = "changeling"
restricted_jobs = list("AI", "Cyborg")
- protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer")
+ protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer", "Solar Federation Brigadier General")
protected_species = list("Machine")
required_players = 15
required_enemies = 1
diff --git a/code/game/gamemodes/cult/blood_magic.dm b/code/game/gamemodes/cult/blood_magic.dm
index f9d4edb105c..4c7b174749a 100644
--- a/code/game/gamemodes/cult/blood_magic.dm
+++ b/code/game/gamemodes/cult/blood_magic.dm
@@ -185,7 +185,7 @@
owner.visible_message("[owner]'s body flashes a bright blue!", \
"You speak the cursed words, channeling an electromagnetic pulse from your body.")
owner.emp_act(2)
- empulse(owner, 2, 5, cause = "cult")
+ INVOKE_ASYNC(GLOBAL_PROC, /proc/empulse, owner, 2, 5, TRUE, "cult")
owner.whisper(invocation)
charges--
if(charges <= 0)
diff --git a/code/game/gamemodes/cult/cult.dm b/code/game/gamemodes/cult/cult.dm
index 60ded97ac3f..e3ede981b48 100644
--- a/code/game/gamemodes/cult/cult.dm
+++ b/code/game/gamemodes/cult/cult.dm
@@ -48,7 +48,7 @@ GLOBAL_LIST_EMPTY(all_cults)
/datum/game_mode/cult
name = "cult"
config_tag = "cult"
- restricted_jobs = list("Chaplain", "AI", "Cyborg", "Internal Affairs Agent", "Security Officer", "Warden", "Detective", "Security Pod Pilot", "Head of Security", "Captain", "Head of Personnel", "Blueshield", "Nanotrasen Representative", "Magistrate", "Brig Physician", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer")
+ restricted_jobs = list("Chaplain", "AI", "Cyborg", "Internal Affairs Agent", "Security Officer", "Warden", "Detective", "Security Pod Pilot", "Head of Security", "Captain", "Head of Personnel", "Blueshield", "Nanotrasen Representative", "Magistrate", "Brig Physician", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer", "Solar Federation Brigadier General")
protected_jobs = list()
required_players = 30
required_enemies = 3
diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm
index 203d370af8b..b3c3aacad02 100644
--- a/code/game/gamemodes/cult/runes.dm
+++ b/code/game/gamemodes/cult/runes.dm
@@ -607,7 +607,7 @@ structure_check() searches for nearby cultist structures required for the invoca
set waitfor = FALSE
to_chat(user, "[mob_to_revive] was revived, but their mind is lost! Seeking a lost soul to replace it.")
var/list/mob/dead/observer/candidates = SSghost_spawns.poll_candidates("Would you like to play as a revived Cultist?", ROLE_CULTIST, TRUE, poll_time = 20 SECONDS, source = /obj/item/melee/cultblade/dagger)
- if(length(candidates))
+ if(length(candidates) && !QDELETED(mob_to_revive))
var/mob/dead/observer/C = pick(candidates)
to_chat(mob_to_revive.mind, "Your physical form has been taken over by another soul due to your inactivity! Ahelp if you wish to regain your form.")
message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(mob_to_revive)]) to replace an AFK player.")
diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm
index 88a287efc02..4e5372ffc2d 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -132,15 +132,15 @@
msg="Task #[count] completed! "
if(pay>0)
if(M.mind.initial_account)
- M.mind.initial_account.credit(pay, "Payment", "\[CLASSIFIED\] Terminal #[rand(111,333)]", "[command_name()] Payroll")
+ M.mind.initial_account.credit(pay, "Payment", "\[CLASSIFIED\] Terminal #[rand(111,333)]", "NAS Trurl Payroll")
msg += "You have been sent the $[pay], as agreed."
else
msg += "However, we were unable to send you the $[pay] you're entitled."
if(useMS && P)
- useMS.send_pda_message("[P.owner]", "[command_name()] Payroll", msg)
+ useMS.send_pda_message("[P.owner]", "NAS Trurl Payroll", msg)
var/datum/data/pda/app/messenger/PM = P.find_program(/datum/data/pda/app/messenger)
- PM.notify("Message from [command_name()] (Payroll), \"[msg]\" (Unable to Reply)", 0)
+ PM.notify("Message from NAS Trurl (Payroll), \"[msg]\" (Unable to Reply)", 0)
break
/datum/game_mode/proc/check_finished() //to be called by ticker
@@ -510,7 +510,7 @@
/datum/game_mode/proc/send_station_goals_message()
var/message_text = "
"
- message_text += "
[command_name()] Orders
"
+ message_text += "NAS Trurl Orders
"
message_text += "Special Orders for [station_name()]:
"
for(var/datum/station_goal/G in station_goals)
@@ -518,7 +518,7 @@
message_text += G.get_report()
message_text += "
"
- print_command_report(message_text, "[command_name()] Orders", FALSE)
+ print_command_report(message_text, "NAS Trurl Orders", FALSE)
/datum/game_mode/proc/declare_station_goal_completion()
for(var/V in station_goals)
diff --git a/code/game/gamemodes/miniantags/abduction/machinery/pad.dm b/code/game/gamemodes/miniantags/abduction/machinery/pad.dm
index 24e43b6583f..b74f9445664 100644
--- a/code/game/gamemodes/miniantags/abduction/machinery/pad.dm
+++ b/code/game/gamemodes/miniantags/abduction/machinery/pad.dm
@@ -12,7 +12,7 @@
/obj/machinery/abductor/pad/proc/Send()
if(teleport_target == null)
- teleport_target = GLOB.teleportlocs[pick(GLOB.teleportlocs)]
+ teleport_target = SSmapping.teleportlocs[pick(SSmapping.teleportlocs)]
flick("alien-pad", src)
for(var/mob/living/target in loc)
target.forceMove(teleport_target)
diff --git a/code/game/gamemodes/miniantags/bot_swarm/swarmer_event.dm b/code/game/gamemodes/miniantags/bot_swarm/swarmer_event.dm
index 5c4b83e965c..d2462442fdf 100644
--- a/code/game/gamemodes/miniantags/bot_swarm/swarmer_event.dm
+++ b/code/game/gamemodes/miniantags/bot_swarm/swarmer_event.dm
@@ -4,10 +4,10 @@
/datum/event/spawn_swarmer/announce()
if(prob(25)) //25% chance to announce it to the crew
- var/swarmer_report = "[command_name()] High-Priority Update"
+ var/swarmer_report = "NAS Trurl High-Priority Update"
swarmer_report += "
Our long-range sensors have detected an odd signal emanating from your station's gateway. We recommend immediate investigation of your gateway, as something may have come \
through."
- print_command_report(swarmer_report, "Classified [command_name()] Update", FALSE)
+ print_command_report(swarmer_report, "Classified NAS Trurl Update", FALSE)
GLOB.event_announcement.Announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/AI/commandreport.ogg')
/datum/event/spawn_swarmer/start()
diff --git a/code/game/gamemodes/miniantags/guardian/host_actions.dm b/code/game/gamemodes/miniantags/guardian/host_actions.dm
index 1e431a7bb00..c03354a8f4b 100644
--- a/code/game/gamemodes/miniantags/guardian/host_actions.dm
+++ b/code/game/gamemodes/miniantags/guardian/host_actions.dm
@@ -90,6 +90,8 @@
if(!length(candidates))
to_chat(owner, "There were no ghosts willing to take control of your guardian. You can try again in 5 minutes.")
return
+ if(QDELETED(guardian)) // Just in case
+ return
var/mob/dead/observer/new_stand = pick(candidates)
to_chat(guardian, "Your user reset you, and your body was taken over by a ghost. Looks like they weren't happy with your performance.")
diff --git a/code/game/gamemodes/miniantags/slaughter/slaughter.dm b/code/game/gamemodes/miniantags/slaughter/slaughter.dm
index feeffc68c04..3f8eb42b8e4 100644
--- a/code/game/gamemodes/miniantags/slaughter/slaughter.dm
+++ b/code/game/gamemodes/miniantags/slaughter/slaughter.dm
@@ -168,6 +168,8 @@
visible_message("[src] disappears in a flash of red light!")
qdel(src)
return
+ if(QDELETED(src)) // Just in case
+ return
var/mob/M = pick(demon_candidates)
var/mob/living/simple_animal/slaughter/cult/S = src
if(!M || !M.client)
diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm
index 3b8649e26a5..b03a5d10fdf 100644
--- a/code/game/gamemodes/nuclear/nuclearbomb.dm
+++ b/code/game/gamemodes/nuclear/nuclearbomb.dm
@@ -4,6 +4,10 @@
#define NUKE_SEALANT_OPEN 3
#define NUKE_UNWRENCHED 4
#define NUKE_MOBILE 5
+#define NUKE_CORE_EVERYTHING_FINE 6
+#define NUKE_CORE_PANEL_EXPOSED 7
+#define NUKE_CORE_PANEL_UNWELDED 8
+#define NUKE_CORE_FULLY_EXPOSED 9
GLOBAL_VAR(bomb_set)
@@ -25,12 +29,17 @@ GLOBAL_VAR(bomb_set)
var/yes_code = FALSE
var/safety = TRUE
var/obj/item/disk/nuclear/auth = null
- var/removal_stage = NUKE_INTACT
+ var/obj/item/nuke_core/plutonium/core = null
var/lastentered
var/is_syndicate = FALSE
use_power = NO_POWER_USE
var/previous_level = ""
var/datum/wires/nuclearbomb/wires = null
+ var/removal_stage = NUKE_INTACT
+ ///The same state removal stage is, until someone opens the panel of the nuke. This way we can have someone open the front of the nuke, while keeping track of where in the world we are on the anchoring bolts.
+ var/anchor_stage = NUKE_INTACT
+ ///This is so that we can check if the internal components are sealed up properly when the outer hatch is closed.
+ var/core_stage = NUKE_CORE_EVERYTHING_FINE
/obj/machinery/nuclearbomb/syndicate
is_syndicate = TRUE
@@ -39,16 +48,19 @@ GLOBAL_VAR(bomb_set)
extended = FALSE
anchored = FALSE
-/obj/machinery/nuclearbomb/New()
- ..()
- r_code = rand(10000, 99999.0) // Creates a random code upon object spawn.
+/obj/machinery/nuclearbomb/Initialize()
+ . = ..()
+ r_code = rand(10000, 99999) // Creates a random code upon object spawn.
wires = new/datum/wires/nuclearbomb(src)
previous_level = get_security_level()
GLOB.poi_list |= src
+ core = new /obj/item/nuke_core/plutonium(src)
+ STOP_PROCESSING(SSobj, core) //Let us not irradiate the vault by default.
/obj/machinery/nuclearbomb/Destroy()
SStgui.close_uis(wires)
QDEL_NULL(wires)
+ QDEL_NULL(core)
GLOB.poi_list.Remove(src)
return ..()
@@ -73,16 +85,41 @@ GLOBAL_VAR(bomb_set)
else
to_chat(user, "You need to deploy [src] first.")
return
+ if(istype(O, /obj/item/stack/sheet/mineral/titanium) && removal_stage == NUKE_CORE_FULLY_EXPOSED)
+ if(do_after(user, 2 SECONDS, target = src))
+ var/obj/item/stack/S = O
+ if(!loc || !S || S.get_amount() < 5)
+ return
+ S.use(5)
+ user.visible_message("[user] repairs [src]'s inner core plate.", "You repair [src]'s inner core plate. The radiation is contained.")
+ removal_stage = NUKE_CORE_PANEL_UNWELDED
+ if(core)
+ STOP_PROCESSING(SSobj, core)
+ return
+ if(istype(O, /obj/item/stack/sheet/metal) && removal_stage == NUKE_CORE_PANEL_EXPOSED)
+ var/obj/item/stack/S = O
+ if(do_after(user, 2 SECONDS, target = src))
+ if(!loc || !S || S.get_amount() < 5)
+ return
+ S.use(5)
+ user.visible_message("[user] repairs [src]'s outer core plate.", "You repair [src]'s outer core plate.")
+ removal_stage = NUKE_CORE_EVERYTHING_FINE
+ return
+ if(istype(O, /obj/item/nuke_core/plutonium) && removal_stage == NUKE_CORE_FULLY_EXPOSED)
+ if(do_after(user, 2 SECONDS, target = src))
+ if(!user.unEquip(O))
+ to_chat(user, "The [O] is stuck to your hand!")
+ return
+ user.visible_message("[user] puts [O] back in [src].", "You put [O] back in [src].")
+ O.forceMove(src)
+ core = O
+
else if(istype(O, /obj/item/disk/plantgene))
to_chat(user, "You try to plant the disk, but despite rooting around, it won't fit! After you branch out to read the instructions, you find out where the problem stems from. You've been bamboo-zled, this isn't a nuclear disk at all!")
return
return ..()
/obj/machinery/nuclearbomb/crowbar_act(mob/user, obj/item/I)
- if(!anchored)
- return
- if(removal_stage != NUKE_UNWRENCHED && removal_stage != NUKE_COVER_OFF)
- return
. = TRUE
if(!I.tool_use_check(user, 0))
return
@@ -92,9 +129,26 @@ GLOBAL_VAR(bomb_set)
return
user.visible_message("[user] forces open the bolt covers on [src].", "You force open the bolt covers.")
removal_stage = NUKE_COVER_OPEN
- else
+ if(removal_stage == NUKE_CORE_EVERYTHING_FINE)
+ user.visible_message("[user] starts removing [src]'s outer core plate...", "You start removing [src]'s outer core plate...")
+ if(!I.use_tool(src, user, 4 SECONDS, volume = I.tool_volume) || removal_stage != NUKE_CORE_EVERYTHING_FINE)
+ return
+ user.visible_message("[user] finishes removing [src]'s outer core plate.", "You finish removing [src]'s outer core plate.")
+ new /obj/item/stack/sheet/metal(loc, 5)
+ removal_stage = NUKE_CORE_PANEL_EXPOSED
+
+ if(removal_stage == NUKE_CORE_PANEL_UNWELDED)
+ user.visible_message("[user] starts removing [src]'s inner core plate...", "You start removing [src]'s inner core plate...")
+ if(!I.use_tool(src, user, 8 SECONDS, volume = I.tool_volume) || removal_stage != NUKE_CORE_PANEL_UNWELDED)
+ return
+ user.visible_message("[user] finishes removing [src]'s inner core plate.", "You remove [src]'s inner core plate. You can see the core's green glow!")
+ removal_stage = NUKE_CORE_FULLY_EXPOSED
+ new /obj/item/stack/sheet/mineral/titanium(loc, 5)
+ if(core)
+ START_PROCESSING(SSobj, core)
+ if(removal_stage == NUKE_UNWRENCHED)
user.visible_message("[user] begins lifting [src] off of the anchors.", "You begin lifting the device off the anchors...")
- if(!I.use_tool(src, user, 80, volume = I.tool_volume) || removal_stage != NUKE_UNWRENCHED)
+ if(!I.use_tool(src, user, 8 SECONDS, volume = I.tool_volume) || removal_stage != NUKE_UNWRENCHED)
return
user.visible_message("[user] crowbars [src] off of the anchors. It can now be moved.", "You jam the crowbar under the nuclear device and lift it off its anchors. You can now move it!")
anchored = FALSE
@@ -126,15 +180,19 @@ GLOBAL_VAR(bomb_set)
. = TRUE
if(!I.use_tool(src, user, 0, volume = I.tool_volume))
return
- if(auth)
+ if(auth || (istype(I, /obj/item/screwdriver/nuke)))
if(!panel_open)
panel_open = TRUE
overlays += image(icon, "npanel_open")
to_chat(user, "You unscrew the control panel of [src].")
+ anchor_stage = removal_stage
+ removal_stage = core_stage
else
panel_open = FALSE
overlays -= image(icon, "npanel_open")
to_chat(user, "You screw the control panel of [src] back on.")
+ core_stage = removal_stage
+ removal_stage = anchor_stage
else
if(!panel_open)
to_chat(user, "[src] emits a buzzing noise, the panel staying locked in.")
@@ -142,6 +200,8 @@ GLOBAL_VAR(bomb_set)
panel_open = FALSE
overlays -= image(icon, "npanel_open")
to_chat(user, "You screw the control panel of [src] back on.")
+ core_stage = removal_stage
+ removal_stage = anchor_stage
flick("nuclearbombc", src)
/obj/machinery/nuclearbomb/wirecutter_act(mob/user, obj/item/I)
@@ -154,8 +214,6 @@ GLOBAL_VAR(bomb_set)
/obj/machinery/nuclearbomb/welder_act(mob/user, obj/item/I)
. = TRUE
- if(removal_stage != NUKE_INTACT && removal_stage != NUKE_COVER_OPEN)
- return
if(!I.tool_use_check(user, 0))
return
if(removal_stage == NUKE_INTACT)
@@ -167,7 +225,20 @@ GLOBAL_VAR(bomb_set)
visible_message("[user] cuts through the bolt covers on [src].",\
"You cut through the bolt cover.")
removal_stage = NUKE_COVER_OFF
- else if(removal_stage == NUKE_COVER_OPEN)
+ if(removal_stage == NUKE_CORE_PANEL_UNWELDED)
+ user.visible_message("[user] starts welding [src]'s inner core plate...", "You start welding [src]'s inner core plate...")
+ if(!I.use_tool(src, user, 4 SECONDS, 5, volume = I.tool_volume) || removal_stage != NUKE_CORE_PANEL_UNWELDED)
+ return
+ user.visible_message("[user] finishes welding [src]'s inner core plate...", "You finish welding [src]'s inner core plate...")
+ removal_stage = NUKE_CORE_PANEL_EXPOSED
+
+ else if(removal_stage == NUKE_CORE_PANEL_EXPOSED)
+ user.visible_message("[user] starts unwelding [src]'s inner core plate...", "You start unwelding [src]'s inner core plate...")
+ if(!I.use_tool(src, user, 4 SECONDS, 5, volume = I.tool_volume) || removal_stage != NUKE_CORE_PANEL_EXPOSED)
+ return
+ user.visible_message("[user] finishes unwelding [src]'s inner core plate...", "You finish unwelding [src]'s inner core plate...")
+ removal_stage = NUKE_CORE_PANEL_UNWELDED
+ if(removal_stage == NUKE_COVER_OPEN)
visible_message("[user] starts cutting apart the anchoring system sealant on [src].",\
"You start cutting apart the anchoring system's sealant with [I]...",\
"You hear welding.")
@@ -181,10 +252,18 @@ GLOBAL_VAR(bomb_set)
attack_hand(user)
/obj/machinery/nuclearbomb/attack_hand(mob/user as mob)
- if(panel_open)
- wires.Interact(user)
- else
- ui_interact(user)
+ if(!panel_open)
+ return ui_interact(user)
+ if(removal_stage != NUKE_CORE_FULLY_EXPOSED || !core)
+ return wires.Interact(user)
+ if(timing) //removing the core is less risk then cutting wires, and doesnt take long, so we should not let crew do it while the nuke is armed. You can however get to it, without the special screwdriver, if you put the NAD in.
+ to_chat(user, "[core] won't budge, metal clamps keep it in!")
+ return
+ user.visible_message("[user] starts to pull [core] out of [src]!", "You start to pull [core] out of [src]!")
+ if(do_after(user, 5 SECONDS, target = src))
+ user.visible_message("[user] pulls [core] out of [src]!", "You pull [core] out of [src]! Might want to put it somewhere safe.")
+ core.forceMove(loc)
+ core = null
/obj/machinery/nuclearbomb/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = TRUE, datum/tgui/master_ui = null, datum/ui_state/state = GLOB.physical_state)
ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
@@ -308,6 +387,9 @@ GLOBAL_VAR(bomb_set)
if(safety)
to_chat(usr, "The safety is still on.")
return
+ if(!core)
+ to_chat(usr, "[src]'s screen blinks red! There is no plutonium core in [src]!")
+ return
timing = !(timing)
if(timing)
if(!lighthack)
@@ -471,3 +553,7 @@ GLOBAL_VAR(bomb_set)
#undef NUKE_SEALANT_OPEN
#undef NUKE_UNWRENCHED
#undef NUKE_MOBILE
+#undef NUKE_CORE_EVERYTHING_FINE
+#undef NUKE_CORE_PANEL_EXPOSED
+#undef NUKE_CORE_PANEL_UNWELDED
+#undef NUKE_CORE_FULLY_EXPOSED
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index b7ff2d7992e..e4d3aecd279 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -389,8 +389,10 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
steal_target = O
explanation_text = "Steal [steal_target]. One was last seen in [get_location()]. "
- if(length(O.protected_jobs))
+ if(length(O.protected_jobs) && O.job_possession)
explanation_text += "It may also be in the possession of the [english_list(O.protected_jobs, and_text = " or ")]."
+ if(steal_target.special_equipment)
+ give_kit(steal_target.special_equipment)
return
explanation_text = "Free Objective."
@@ -412,6 +414,8 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
else
steal_target = new new_target
explanation_text = "Steal [steal_target.name]."
+ if(steal_target.special_equipment)
+ give_kit(steal_target.special_equipment)
return steal_target
/datum/objective/steal/check_completion()
@@ -429,6 +433,23 @@ GLOBAL_LIST_INIT(potential_theft_objectives, (subtypesof(/datum/theft_objective)
if(I.type in steal_target.altitems)
return steal_target.check_special_completion(I)
+/datum/objective/steal/proc/give_kit(obj/item/item_path)
+ var/mob/living/carbon/human/mob = owner.current
+ var/I = new item_path
+ var/list/slots = list(
+ "backpack" = slot_in_backpack,
+ "left pocket" = slot_l_store,
+ "right pocket" = slot_r_store,
+ "left hand" = slot_l_hand,
+ "right hand" = slot_r_hand,
+ )
+ var/where = mob.equip_in_one_of_slots(I, slots)
+ if(where)
+ to_chat(mob, "
In your [where] is a box containing items and instructions to help you with your steal objective.
")
+ else
+ to_chat(mob, "Unfortunately, you weren't able to get a stealing kit. This is very bad and you should adminhelp immediately (press F1).")
+ message_admins("[ADMIN_LOOKUPFLW(mob)] Failed to spawn with their [item_path] theft kit.")
+ qdel(I)
/datum/objective/steal/exchange
martyr_compatible = 0
diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm
index 1cb4e6fbb35..14fa2c74ec0 100644
--- a/code/game/gamemodes/shadowling/shadowling.dm
+++ b/code/game/gamemodes/shadowling/shadowling.dm
@@ -74,7 +74,7 @@ Made by Xhuis
required_enemies = 2
recommended_enemies = 2
restricted_jobs = list("AI", "Cyborg")
- protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Head of Personnel", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer")
+ protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Head of Personnel", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer", "Solar Federation Brigadier General")
/datum/game_mode/shadowling/announce()
to_chat(world, "The current game mode is - Shadowling!")
diff --git a/code/game/gamemodes/steal_items.dm b/code/game/gamemodes/steal_items.dm
index 53377d9f88b..4b9ac2b9631 100644
--- a/code/game/gamemodes/steal_items.dm
+++ b/code/game/gamemodes/steal_items.dm
@@ -12,6 +12,10 @@
var/list/altitems = list()
var/flags = 0
var/location_override
+ /// Do we have a special item we give to somewhen when they get this objective?
+ var/special_equipment = null
+ /// If a steal objective has forbidden jobs, and the forbidden jobs would not be in the possession of this item, set this to false
+ var/job_possession = TRUE
/datum/theft_objective/proc/check_completion(datum/mind/owner)
if(!owner.current)
@@ -138,6 +142,20 @@
protected_jobs = list("Head Of Security", "Warden")
location_override = "the Warden's Office"
+/datum/theft_objective/supermatter_sliver
+ name = "a supermatter sliver"
+ typepath = /obj/item/nuke_core/supermatter_sliver
+ protected_jobs = list("Chief Engineer", "Engineer", "Atmospheric Technician") //Unlike other steal objectives, all jobs in the department have easy access, and would not be noticed at all stealing this
+ location_override = "Engineering. You can use the box and instructions provided to harvest the sliver"
+ special_equipment = /obj/item/storage/box/syndie_kit/supermatter
+ job_possession = FALSE //The CE / engineers / atmos techs do not carry around supermater slivers.
+
+/datum/theft_objective/plutonium_core
+ name = "the plutonium core from the stations nuclear device"
+ typepath = /obj/item/nuke_core/plutonium
+ location_override = "the Vault. You can use the box and instructions provided to remove the core, with some extra tools"
+ special_equipment = /obj/item/storage/box/syndie_kit/nuke
+
/datum/theft_objective/number
var/min=0
var/max=0
diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm
index 6cbfeca3c10..bb3df423653 100644
--- a/code/game/gamemodes/traitor/traitor.dm
+++ b/code/game/gamemodes/traitor/traitor.dm
@@ -11,7 +11,7 @@
name = "traitor"
config_tag = "traitor"
restricted_jobs = list("Cyborg")//They are part of the AI if he is traitor so are they, they use to get double chances
- protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Internal Affairs Agent", "Brig Physician", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer")
+ protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Internal Affairs Agent", "Brig Physician", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer", "Solar Federation Brigadier General")
required_players = 0
required_enemies = 1
recommended_enemies = 4
diff --git a/code/game/gamemodes/vampire/traitor_vamp.dm b/code/game/gamemodes/vampire/traitor_vamp.dm
index 9ad66fdb976..86f496d057d 100644
--- a/code/game/gamemodes/vampire/traitor_vamp.dm
+++ b/code/game/gamemodes/vampire/traitor_vamp.dm
@@ -2,7 +2,7 @@
name = "traitor+vampire"
config_tag = "traitorvamp"
traitors_possible = 3 //hard limit on traitors if scaling is turned off
- protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Chaplain", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer")
+ protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Chaplain", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Solar Federation Brigadier General")
restricted_jobs = list("Cyborg")
secondary_restricted_jobs = list("AI")
required_players = 10
diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm
index 69972d2bea5..e646213c7da 100644
--- a/code/game/gamemodes/vampire/vampire.dm
+++ b/code/game/gamemodes/vampire/vampire.dm
@@ -9,7 +9,7 @@
name = "vampire"
config_tag = "vampire"
restricted_jobs = list("AI", "Cyborg")
- protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Chaplain", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer")
+ protected_jobs = list("Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Blueshield", "Nanotrasen Representative", "Security Pod Pilot", "Magistrate", "Chaplain", "Brig Physician", "Internal Affairs Agent", "Nanotrasen Navy Officer", "Special Operations Officer", "Syndicate Officer", "Solar Federation Brigadier General")
protected_species = list("Machine")
required_players = 15
required_enemies = 1
diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm
index 937dc11f61c..259de282382 100644
--- a/code/game/gamemodes/wizard/artefact.dm
+++ b/code/game/gamemodes/wizard/artefact.dm
@@ -8,107 +8,99 @@
throw_speed = 1
throw_range = 5
w_class = WEIGHT_CLASS_TINY
- var/used = 0
+ var/used = FALSE
+/obj/item/contract/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, datum/tgui/master_ui = null, datum/ui_state/state = GLOB.inventory_state)
+ ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
+ if(!ui)
+ ui = new(user, src, ui_key, "WizardApprenticeContract", name, 400, 600, master_ui, state)
+ ui.open()
-/obj/item/contract/attack_self(mob/user as mob)
- user.set_machine(src)
- var/dat
- if(used)
- dat = "You have already summoned your apprentice.
"
- else
- dat = "Contract of Apprenticeship:
"
- dat += "Using this contract, you may summon an apprentice to aid you on your mission.
"
- dat += "If you are unable to establish contact with your apprentice, you can feed the contract back to the spellbook to refund your points.
"
- dat += "Which school of magic is your apprentice studying?:
"
- dat += "Destruction
"
- dat += "Your apprentice is skilled in offensive magic. They know Magic Missile and Fireball.
"
- dat += "Bluespace Manipulation
"
- dat += "Your apprentice is able to defy physics, melting through solid objects and travelling great distances in the blink of an eye. They know Teleport and Ethereal Jaunt.
"
- dat += "Healing
"
- dat += "Your apprentice is training to cast spells that will aid your survival. They know Forcewall and Charge and come with a Staff of Healing.
"
- dat += "Robeless
"
- dat += "Your apprentice is training to cast spells without their robes. They know Knock and Mindswap.
"
- user << browse(dat, "window=radio")
- onclose(user, "radio")
- return
+/obj/item/contract/ui_data(mob/user)
+ var/list/data = list()
+ data["used"] = used
+ return data
+/obj/item/contract/ui_act(action, params)
+ if(..())
+ return
-/obj/item/contract/Topic(href, href_list)
- ..()
var/mob/living/carbon/human/H = usr
- if(H.stat || H.restrained())
+ if(used)
return
- if(!istype(H, /mob/living/carbon/human))
- return 1
- if(loc == H || (in_range(src, H) && istype(loc, /turf)))
- H.set_machine(src)
- if(href_list["school"])
- if(used)
- to_chat(H, "You already used this contract!")
- return
- used = 1
- var/image/source = image('icons/obj/cardboard_cutout.dmi', "cutout_wizard")
- var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as the wizard apprentice of [H.real_name]?", ROLE_WIZARD, TRUE, source = source)
- if(candidates.len)
- var/mob/C = pick(candidates)
- new /obj/effect/particle_effect/smoke(H.loc)
- var/mob/living/carbon/human/M = new/mob/living/carbon/human(H.loc)
- M.key = C.key
- to_chat(M, "You are [H.real_name]'s apprentice! You are bound by magic contract to follow [H.p_their()] orders and help [H.p_them()] in accomplishing their goals.")
- switch(href_list["school"])
- if("destruction")
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/projectile/magic_missile(null))
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/click/fireball(null))
- to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned powerful, destructive spells. You are able to cast magic missile and fireball.")
- if("bluespace")
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/area_teleport/teleport(null))
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/ethereal_jaunt(null))
- to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned reality bending mobility spells. You are able to cast teleport and ethereal jaunt.")
- if("healing")
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/charge(null))
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/forcewall(null))
- M.equip_to_slot_or_del(new /obj/item/gun/magic/staff/healing(M), slot_r_hand)
- to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned livesaving survival spells. You are able to cast charge and forcewall.")
- if("robeless")
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/aoe_turf/knock(null))
- M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/click/mind_transfer(null))
- to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned stealthy, robeless spells. You are able to cast knock and mindswap.")
+ used = TRUE
- M.equip_to_slot_or_del(new /obj/item/radio/headset(M), slot_l_ear)
- M.equip_to_slot_or_del(new /obj/item/clothing/under/color/lightpurple(M), slot_w_uniform)
- M.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(M), slot_shoes)
- M.equip_to_slot_or_del(new /obj/item/clothing/suit/wizrobe(M), slot_wear_suit)
- M.equip_to_slot_or_del(new /obj/item/clothing/head/wizard(M), slot_head)
- M.equip_to_slot_or_del(new /obj/item/storage/backpack(M), slot_back)
- M.equip_to_slot_or_del(new /obj/item/storage/box(M), slot_in_backpack)
- M.equip_to_slot_or_del(new /obj/item/teleportation_scroll/apprentice(M), slot_r_store)
- var/wizard_name_first = pick(GLOB.wizard_first)
- var/wizard_name_second = pick(GLOB.wizard_second)
- var/randomname = "[wizard_name_first] [wizard_name_second]"
- var/newname = sanitize(copytext(input(M, "You are the wizard's apprentice. Would you like to change your name to something else?", "Name change", randomname) as null|text,1,MAX_NAME_LEN))
+ var/image/source = image('icons/obj/cardboard_cutout.dmi', "cutout_wizard")
+ var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as the wizard apprentice of [H.real_name]?", ROLE_WIZARD, TRUE, source = source)
- if(!newname)
- newname = randomname
- M.mind.name = newname
- M.real_name = newname
- M.name = newname
- var/datum/objective/protect/new_objective = new /datum/objective/protect
- new_objective.owner = M:mind
- new_objective:target = H:mind
- new_objective.explanation_text = "Protect [H.real_name], the wizard."
- M.mind.objectives += new_objective
- SSticker.mode.apprentices += M.mind
- M.mind.special_role = SPECIAL_ROLE_WIZARD_APPRENTICE
- SSticker.mode.update_wiz_icons_added(M.mind)
- M.faction = list("wizard")
- else
- used = 0
- to_chat(H, "Unable to reach your apprentice! You can either attack the spellbook with the contract to refund your points, or wait and try again later.")
- return
+ if(length(candidates))
+ var/mob/C = pick(candidates)
+ new /obj/effect/particle_effect/smoke(H.loc)
+ var/mob/living/carbon/human/M = new/mob/living/carbon/human(H.loc)
+ M.key = C.key
+ to_chat(M, "You are the [H.real_name]'s apprentice! You are bound by magic contract to follow [H.p_their()] orders and help [H.p_them()] in accomplishing their goals.")
+ switch(action)
+ if("destruction")
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/projectile/magic_missile(null))
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/click/fireball(null))
+ to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned powerful, destructive spells. You are able to cast magic missile and fireball.")
+ if("bluespace")
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/area_teleport/teleport(null))
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/ethereal_jaunt(null))
+ to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned reality bending mobility spells. You are able to cast teleport and ethereal jaunt.")
+ if("healing")
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/charge(null))
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/forcewall(null))
+ M.equip_to_slot_or_del(new /obj/item/gun/magic/staff/healing(M), slot_r_hand)
+ to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned livesaving survival spells. You are able to cast charge and forcewall.")
+ if("robeless")
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/aoe_turf/knock(null))
+ M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/click/mind_transfer(null))
+ to_chat(M, "Your service has not gone unrewarded, however. Studying under [H.real_name], you have learned stealthy, robeless spells. You are able to cast knock and mindswap.")
+ M.equip_to_slot_or_del(new /obj/item/radio/headset(M), slot_l_ear)
+ M.equip_to_slot_or_del(new /obj/item/clothing/under/color/lightpurple(M), slot_w_uniform)
+ M.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(M), slot_shoes)
+ M.equip_to_slot_or_del(new /obj/item/clothing/suit/wizrobe(M), slot_wear_suit)
+ M.equip_to_slot_or_del(new /obj/item/clothing/head/wizard(M), slot_head)
+ M.equip_to_slot_or_del(new /obj/item/storage/backpack(M), slot_back)
+ M.equip_to_slot_or_del(new /obj/item/storage/box(M), slot_in_backpack)
+ M.equip_to_slot_or_del(new /obj/item/teleportation_scroll/apprentice(M), slot_r_store)
+ var/wizard_name_first = pick(GLOB.wizard_first)
+ var/wizard_name_second = pick(GLOB.wizard_second)
+ var/randomname = "[wizard_name_first] [wizard_name_second]"
+ var/newname = sanitize(copytext(input(M, "You are the wizard's apprentice. Would you like to change your name to something else?", "Name change", randomname) as null|text,1,MAX_NAME_LEN))
+
+ if(!newname)
+ newname = randomname
+ M.mind.name = newname
+ M.real_name = newname
+ M.name = newname
+ var/datum/objective/protect/new_objective = new /datum/objective/protect
+ new_objective.owner = M.mind
+ new_objective.target = H.mind
+ new_objective.explanation_text = "Protect [H.real_name], the wizard."
+ M.mind.objectives += new_objective
+ SSticker.mode.apprentices += M.mind
+ M.mind.special_role = SPECIAL_ROLE_WIZARD_APPRENTICE
+ SSticker.mode.update_wiz_icons_added(M.mind)
+ M.faction = list("wizard")
+ SStgui.close_uis(src)
+ else
+ used = FALSE
+ to_chat(H, "Unable to reach your apprentice! You can either attack the spellbook with the contract to refund your points, or wait and try again later.")
+
+/obj/item/contract/attack_self(mob/user as mob)
+ if(..())
+ return
+
+ if(used)
+ to_chat(user, " You've already summoned an apprentice or you are in process of summoning one. ")
+ return
+
+ ui_interact(user)
///////////////////////////Veil Render//////////////////////
@@ -341,7 +333,7 @@ GLOBAL_LIST_EMPTY(multiverse)
var/image/source = image('icons/obj/cardboard_cutout.dmi', "cutout_wizard")
var/list/candidates = SSghost_spawns.poll_candidates("Do you want to play as the wizard apprentice of [user.real_name]?", ROLE_WIZARD, TRUE, 10 SECONDS, source = source)
- if(candidates.len)
+ if(length(candidates))
var/mob/C = pick(candidates)
spawn_copy(C.client, get_turf(user.loc), user)
to_chat(user, "The sword flashes, and you find yourself face to face with...you!")
diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm
index f2b28fea297..42d91002257 100644
--- a/code/game/jobs/access.dm
+++ b/code/game/jobs/access.dm
@@ -100,6 +100,8 @@
return get_all_centcom_access() + get_all_accesses()
if("Special Operations Officer")
return get_all_centcom_access() + get_all_accesses()
+ if("Solar Federation Brigadier General")
+ return get_all_centcom_access() + get_all_accesses()
if("Nanotrasen Navy Representative")
return get_all_centcom_access() + get_all_accesses()
if("Nanotrasen Navy Officer")
@@ -401,7 +403,7 @@
return list("VIP Guest","Custodian","Thunderdome Overseer","Emergency Response Team Member","Emergency Response Team Leader","Intel Officer","Medical Officer","Death Commando","Research Officer","Deathsquad Officer","Special Operations Officer","Nanotrasen Navy Representative","Nanotrasen Navy Officer","Nanotrasen Navy Captain","Supreme Commander")
/proc/get_all_solgov_jobs()
- return list("Solar Federation Lieutenant","Solar Federation Specops Lieutenant","Solar Federation Marine","Solar Federation Specops Marine","Solar Federation Representative","Sol Trader")
+ return list("Solar Federation Lieutenant","Solar Federation Specops Lieutenant","Solar Federation Marine","Solar Federation Specops Marine","Solar Federation Representative","Sol Trader","Solar Federation Brigadier General")
//gets the actual job rank (ignoring alt titles)
//this is used solely for sechuds
diff --git a/code/game/jobs/job/central.dm b/code/game/jobs/job/central.dm
index e4ce321082e..8a74598951d 100644
--- a/code/game/jobs/job/central.dm
+++ b/code/game/jobs/job/central.dm
@@ -69,9 +69,9 @@
/datum/outfit/job/ntspecops
name = "Special Operations Officer"
jobtype = /datum/job/ntspecops
+ allow_backbag_choice = FALSE
uniform = /obj/item/clothing/under/rank/centcom/captain
suit = /obj/item/clothing/suit/space/deathsquad/officer
- back = /obj/item/storage/backpack/ert/security
belt = /obj/item/storage/belt/military/assault
gloves = /obj/item/clothing/gloves/combat
shoes = /obj/item/clothing/shoes/combat
@@ -82,8 +82,8 @@
id = /obj/item/card/id/centcom
pda = /obj/item/pda/centcom
r_pocket = /obj/item/storage/box/matches
+ back = /obj/item/storage/backpack/satchel
box = /obj/item/storage/box/centcomofficer
- backpack = /obj/item/storage/backpack/satchel
backpack_contents = list(
/obj/item/clothing/shoes/magboots/advance = 1,
/obj/item/storage/box/zipties = 1
@@ -104,3 +104,23 @@
if(visualsOnly)
return
H.mind.offstation_role = TRUE
+
+/datum/job/ntspecops/solgovspecops
+ title = "Solar Federation Brigadier General"
+ outfit = /datum/outfit/job/ntspecops/solgovspecops
+
+/datum/outfit/job/ntspecops/solgovspecops
+ name = "Solar Federation Brigadier General"
+ uniform = /obj/item/clothing/under/rank/centcom/captain/solgov
+ suit = /obj/item/clothing/suit/space/deathsquad/officer/solgov
+ head = /obj/item/clothing/head/helmet/space/deathsquad/beret/solgov
+
+/datum/outfit/job/ntspecops/solgovspecops/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
+ . = ..()
+ if(visualsOnly)
+ return
+ var/obj/item/card/id/I = H.wear_id
+ if(istype(I))
+ apply_to_card(I, H, get_centcom_access(name), name, "lifetimeid")
+ H.sec_hud_set_ID()
+ H.mind.offstation_role = TRUE
diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm
index 1c82df936bb..c39e1ff555f 100644
--- a/code/game/jobs/job/job.dm
+++ b/code/game/jobs/job/job.dm
@@ -87,6 +87,8 @@
/datum/job/proc/get_access()
if(!GLOB?.configuration?.jobs) //Needed for robots.
// AA TODO: Remove this once mulebots and stuff use Initialize()
+ // Update: Now that the map is loaded after SSjobs this might not be needed
+ // However, I dont want to take that chance
return src.minimal_access.Copy()
if(GLOB.configuration.jobs.jobs_have_minimal_access)
diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm
index c148ca6e68f..946ecfca4bb 100644
--- a/code/game/machinery/autolathe.dm
+++ b/code/game/machinery/autolathe.dm
@@ -66,6 +66,21 @@
component_parts += new /obj/item/stack/sheet/glass(null)
RefreshParts()
+/obj/machinery/autolathe/upgraded/gamma/New()
+ . = ..()
+ component_parts = list()
+ component_parts += new /obj/item/circuitboard/autolathe(null)
+ component_parts += new /obj/item/stock_parts/matter_bin/super(null)
+ component_parts += new /obj/item/stock_parts/matter_bin/super(null)
+ component_parts += new /obj/item/stock_parts/matter_bin/super(null)
+ component_parts += new /obj/item/stock_parts/manipulator/pico(null)
+ component_parts += new /obj/item/stack/sheet/glass(null)
+ RefreshParts()
+
+/obj/machinery/autolathe/upgraded/gamma/Initialize()
+ . = ..()
+ adjust_hacked(TRUE)
+
/obj/machinery/autolathe/Destroy()
SStgui.close_uis(wires)
QDEL_NULL(wires)
diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm
index 6edc4d21eed..563fded5f1d 100644
--- a/code/game/machinery/computer/card.dm
+++ b/code/game/machinery/computer/card.dm
@@ -30,6 +30,7 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0)
var/list/blacklisted_full = list(
/datum/job/ntnavyofficer,
/datum/job/ntspecops,
+ /datum/job/ntspecops/solgovspecops,
/datum/job/civilian,
/datum/job/syndicateofficer,
/datum/job/explorer // blacklisted so that HOPs don't try prioritizing it, then wonder why that doesn't work
diff --git a/code/game/machinery/computer/store.dm b/code/game/machinery/computer/store.dm
index 856e2322f71..06f806e1acc 100644
--- a/code/game/machinery/computer/store.dm
+++ b/code/game/machinery/computer/store.dm
@@ -31,7 +31,7 @@
var/dat = {"
- [command_name()] Merchandise
+ Nanotrasen Merchandise
",o.insertBefore(n.lastChild,o.firstChild)}(e,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),r||function(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return f.shivMethods?m(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+u().join().replace(/[\w\-:]+/g,(function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'}))+");return n}")(f,t.frag)}(e,t),e}!function(){try{var e=n.createElement("a");e.innerHTML="",o="hidden"in e,r=1==e.childNodes.length||function(){n.createElement("a");var e=n.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(t){o=!0,r=!0}}();var f={elements:a.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:"3.7.3",shivCSS:!1!==a.shivCSS,supportsUnknownElements:r,shivMethods:!1!==a.shivMethods,type:"default",shivDocument:p,createElement:m,createDocumentFragment:function(e,t){if(e||(e=n),r)return e.createDocumentFragment();for(var o=(t=t||s(e)).frag.cloneNode(),a=0,c=u(),i=c.length;a1?r-1:0),c=1;c1?t-1:0),o=1;o=0||(r[n]=e[n]);return r}(e,["className"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["BlockQuote",t])},n)))}},function(e,t,n){"use strict";var o,r;t.__esModule=!0,t.VNodeFlags=t.ChildFlags=void 0,t.VNodeFlags=o,function(e){e[e.HtmlElement=1]="HtmlElement",e[e.ComponentUnknown=2]="ComponentUnknown",e[e.ComponentClass=4]="ComponentClass",e[e.ComponentFunction=8]="ComponentFunction",e[e.Text=16]="Text",e[e.SvgElement=32]="SvgElement",e[e.InputElement=64]="InputElement",e[e.TextareaElement=128]="TextareaElement",e[e.SelectElement=256]="SelectElement",e[e.Void=512]="Void",e[e.Portal=1024]="Portal",e[e.ReCreate=2048]="ReCreate",e[e.ContentEditable=4096]="ContentEditable",e[e.Fragment=8192]="Fragment",e[e.InUse=16384]="InUse",e[e.ForwardRef=32768]="ForwardRef",e[e.Normalized=65536]="Normalized",e[e.ForwardRefComponent=32776]="ForwardRefComponent",e[e.FormElement=448]="FormElement",e[e.Element=481]="Element",e[e.Component=14]="Component",e[e.DOMRef=2033]="DOMRef",e[e.InUseOrNormalized=81920]="InUseOrNormalized",e[e.ClearInUse=-16385]="ClearInUse",e[e.ComponentKnown=12]="ComponentKnown"}(o||(t.VNodeFlags=o={})),t.ChildFlags=r,function(e){e[e.UnknownChildren=0]="UnknownChildren",e[e.HasInvalidChildren=1]="HasInvalidChildren",e[e.HasVNodeChildren=2]="HasVNodeChildren",e[e.HasNonKeyedChildren=4]="HasNonKeyedChildren",e[e.HasKeyedChildren=8]="HasKeyedChildren",e[e.HasTextChildren=16]="HasTextChildren",e[e.MultipleChildren=12]="MultipleChildren"}(r||(t.ChildFlags=r={}))},function(e,t,n){"use strict";t.__esModule=!0,t.ByondUi=void 0;var o=n(0),r=n(8),a=n(431),c=n(25),i=n(61),l=n(17);function d(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var u=(0,i.createLogger)("ByondUi"),s=[];window.addEventListener("beforeunload",(function(){for(var e=0;e=0||(r[n]=e[n]);return r}(t,["data","rangeX","rangeY","fillColor","strokeColor","strokeWidth"]),C=this.state.viewBox,N=function(e,t,n,o){if(0===e.length)return[];var a=(0,r.zipWith)(Math.min).apply(void 0,e),c=(0,r.zipWith)(Math.max).apply(void 0,e);return n!==undefined&&(a[0]=n[0],c[0]=n[1]),o!==undefined&&(a[1]=o[0],c[1]=o[1]),(0,r.map)((function(e){return(0,r.zipWith)((function(e,t,n,o){return(e-t)/(n-t)*o}))(e,a,c,t)}))(e)}(a,C,c,l);if(N.length>0){var b=N[0],g=N[N.length-1];N.push([C[0]+f,g[1]]),N.push([C[0]+f,-f]),N.push([-f,-f]),N.push([-f,b[1]])}var V=function(e){for(var t="",n=0;n=0||(r[n]=e[n]);return r}(t,["children","color","title","buttons"]);return(0,o.createVNode)(1,"div","Collapsible",[(0,o.createVNode)(1,"div","Table",[(0,o.createVNode)(1,"div","Table__cell",(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({fluid:!0,color:l,icon:n?"chevron-down":"chevron-right",onClick:function(){return e.setState({open:!n})}},s,{children:d}))),2),u&&(0,o.createVNode)(1,"div","Table__cell Table__cell--collapsing",u,0)],0),n&&(0,o.createComponentVNode)(2,r.Box,{mt:1,children:c})],0)},c}(o.Component);t.Collapsible=c},function(e,t,n){"use strict";t.__esModule=!0,t.ColorBox=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.content,n=(e.children,e.className),c=e.color,i=e.backgroundColor,l=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["content","children","className","color","backgroundColor"]);return l.color=t?null:"transparent",l.backgroundColor=c||i,(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["ColorBox",n,(0,a.computeBoxClassName)(l)]),t||".",0,Object.assign({},(0,a.computeBoxProps)(l))))};t.ColorBox=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Dropdown=void 0;var o=n(0),r=n(8),a=n(17),c=n(130);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t,n;function l(t){var n;return(n=e.call(this,t)||this).state={open:!1},n.handleClick=function(){n.state.open&&n.setOpen(!1)},n}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentWillUnmount=function(){window.removeEventListener("click",this.handleClick)},d.setOpen=function(e){var t=this;this.setState({open:e}),e?(setTimeout((function(){return window.addEventListener("click",t.handleClick)})),this.menuRef.focus()):window.removeEventListener("click",this.handleClick)},d.setSelected=function(e){this.setOpen(!1),this.props.onSelected(e)},d.buildMenu=function(){var e=this,t=this.props.options,n=(void 0===t?[]:t).map((function(t){return(0,o.createVNode)(1,"div","Dropdown__menuentry",t,0,{onClick:function(){e.setSelected(t)}},t)}));return n.length?n:"No Options Found"},d.render=function(){var e=this,t=this.props,n=t.color,l=void 0===n?"default":n,d=t.over,u=t.noscroll,s=t.nochevron,m=t.width,p=(t.onClick,t.selected),f=t.disabled,h=i(t,["color","over","noscroll","nochevron","width","onClick","selected","disabled"]),C=h.className,N=i(h,["className"]),b=d?!this.state.open:this.state.open,g=this.state.open?(0,o.createVNode)(1,"div",(0,r.classes)([u?"Dropdown__menu-noscroll":"Dropdown__menu",d&&"Dropdown__over"]),this.buildMenu(),0,{tabIndex:"-1",style:{width:m}},null,(function(t){e.menuRef=t})):null;return(0,o.createVNode)(1,"div","Dropdown",[(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({width:m,className:(0,r.classes)(["Dropdown__control","Button","Button--color--"+l,f&&"Button--disabled",C])},N,{onClick:function(){f&&!e.state.open||e.setOpen(!e.state.open)},children:[(0,o.createVNode)(1,"span","Dropdown__selected-text",p,0),!!s||(0,o.createVNode)(1,"span","Dropdown__arrow-button",(0,o.createComponentVNode)(2,c.Icon,{name:b?"chevron-up":"chevron-down"}),2)]}))),g],0)},l}(o.Component);t.Dropdown=l},function(e,t,n){"use strict";t.__esModule=!0,t.Input=void 0;var o=n(0),r=n(8),a=n(17);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var i=function(e){return(0,r.isFalsy)(e)?"":e},l=function(e){var t,n;function l(){var t;return(t=e.call(this)||this).inputRef=(0,o.createRef)(),t.state={editing:!1},t.handleInput=function(e){var n=t.state.editing,o=t.props.onInput;n||t.setEditing(!0),o&&o(e,e.target.value)},t.handleFocus=function(e){t.state.editing||t.setEditing(!0)},t.handleBlur=function(e){var n=t.state.editing,o=t.props.onChange;n&&(t.setEditing(!1),o&&o(e,e.target.value))},t.handleKeyDown=function(e){var n=t.props,o=n.onInput,r=n.onChange,a=n.onEnter;return 13===e.keyCode?(t.setEditing(!1),r&&r(e,e.target.value),o&&o(e,e.target.value),a&&a(e,e.target.value),void(t.props.selfClear?e.target.value="":e.target.blur())):27===e.keyCode?(t.setEditing(!1),e.target.value=i(t.props.value),void e.target.blur()):void 0},t}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentDidMount=function(){var e=this.props.value,t=this.inputRef.current;t&&(t.value=i(e),this.props.autofocus&&(t.focus(),t.selectionStart=0,t.selectionEnd=t.value.length))},d.componentDidUpdate=function(e,t){var n=this.state.editing,o=e.value,r=this.props.value,a=this.inputRef.current;a&&!n&&o!==r&&(a.value=i(r))},d.setEditing=function(e){this.setState({editing:e})},d.render=function(){var e=this.props,t=(e.selfClear,e.onInput,e.onChange,e.onEnter,e.value,e.maxLength),n=e.placeholder,i=(e.autofocus,e.disabled),l=e.multiline,d=e.cols,u=void 0===d?32:d,s=e.rows,m=void 0===s?4:s,p=c(e,["selfClear","onInput","onChange","onEnter","value","maxLength","placeholder","autofocus","disabled","multiline","cols","rows"]),f=p.className,h=p.fluid,C=c(p,["className","fluid"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Input",h&&"Input--fluid",i&&"Input--disabled",f])},C,{children:[(0,o.createVNode)(1,"div","Input__baseline",".",16),l?(0,o.createVNode)(128,"textarea","Input__textarea",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,maxLength:t,cols:u,rows:m,disabled:i},null,this.inputRef):(0,o.createVNode)(64,"input","Input__input",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyDown:this.handleKeyDown,maxLength:t,disabled:i},null,this.inputRef)]})))},l}(o.Component);t.Input=l},function(e,t,n){"use strict";t.__esModule=!0,t.Knob=void 0;var o=n(0),r=n(16),a=n(8),c=n(25),i=n(17),l=n(180),d=n(131);t.Knob=function(e){if(c.IS_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,d.NumberInput,Object.assign({},e)));var t=e.animated,n=e.format,u=e.maxValue,s=e.minValue,m=e.onChange,p=e.onDrag,f=e.step,h=e.stepPixelSize,C=e.suppressFlicker,N=e.unit,b=e.value,g=e.className,V=e.style,v=e.fillValue,y=e.color,_=e.ranges,x=void 0===_?{}:_,k=e.size,L=e.bipolar,B=(e.children,e.popUpPosition),w=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","style","fillValue","color","ranges","size","bipolar","children","popUpPosition"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.DraggableControl,Object.assign({dragMatrix:[0,-1]},{animated:t,format:n,maxValue:u,minValue:s,onChange:m,onDrag:p,step:f,stepPixelSize:h,suppressFlicker:C,unit:N,value:b},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,d=e.inputElement,m=e.handleDragStart,p=(0,r.scale)(null!=v?v:c,s,u),f=(0,r.scale)(c,s,u),h=y||(0,r.keyOfMatchingRange)(null!=v?v:n,x)||"default",C=270*(f-.5);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Knob","Knob--color--"+h,L&&"Knob--bipolar",g,(0,i.computeBoxClassName)(w)]),[(0,o.createVNode)(1,"div","Knob__circle",(0,o.createVNode)(1,"div","Knob__cursorBox",(0,o.createVNode)(1,"div","Knob__cursor"),2,{style:{transform:"rotate("+C+"deg)"}}),2),t&&(0,o.createVNode)(1,"div",(0,a.classes)(["Knob__popupValue",B&&"Knob__popupValue--"+B]),l,0),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringTrackPivot",(0,o.createVNode)(32,"circle","Knob__ringTrack",null,1,{cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringFillPivot",(0,o.createVNode)(32,"circle","Knob__ringFill",null,1,{style:{"stroke-dashoffset":((L?2.75:2)-1.5*p)*Math.PI*50},cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),d],0,Object.assign({},(0,i.computeBoxProps)(Object.assign({style:Object.assign({"font-size":k+"rem"},V)},w)),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledControls=void 0;var o=n(0),r=n(75);function a(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){var t=e.children,n=a(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({mx:-.5,align:"stretch",justify:"space-between"},n,{children:t})))};t.LabeledControls=c;c.Item=function(e){var t=e.label,n=e.children,c=a(e,["label","children"]);return(0,o.createComponentVNode)(2,r.Flex.Item,{mx:1,children:(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({minWidth:"52px",height:"100%",direction:"column",align:"center",textAlign:"center",justify:"space-between"},c,{children:[(0,o.createComponentVNode)(2,r.Flex.Item),(0,o.createComponentVNode)(2,r.Flex.Item,{children:n}),(0,o.createComponentVNode)(2,r.Flex.Item,{color:"label",children:t})]})))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NanoMap=void 0;var o=n(0),r=n(2),a=n(1),c=n(77),i=n(181);var l=function(e){return e.stopPropagation&&e.stopPropagation(),e.preventDefault&&e.preventDefault(),e.cancelBubble=!0,e.returnValue=!1,!1},d=function(e){var t,n;function c(t){var n;n=e.call(this,t)||this;window.innerWidth,window.innerHeight;return n.state={offsetX:128,offsetY:48,transform:"none",dragging:!1,originX:null,originY:null,zoom:1},n.handleDragStart=function(e){n.ref=e.target,n.setState({dragging:!1,originX:e.screenX,originY:e.screenY}),document.addEventListener("mousemove",n.handleDragMove),document.addEventListener("mouseup",n.handleDragEnd),l(e)},n.handleDragMove=function(e){n.setState((function(t){var n=Object.assign({},t),o=e.screenX-n.originX,r=e.screenY-n.originY;return t.dragging?(n.offsetX+=o,n.offsetY+=r,n.originX=e.screenX,n.originY=e.screenY):n.dragging=!0,n})),l(e)},n.handleDragEnd=function(e){n.setState({dragging:!1,originX:null,originY:null}),document.removeEventListener("mousemove",n.handleDragMove),document.removeEventListener("mouseup",n.handleDragEnd),l(e)},n.handleZoom=function(e,o){n.setState((function(e){var n=Math.min(Math.max(o,1),8),r=1.5*(n-e.zoom);return e.zoom=n,e.offsetX=e.offsetX-262*r,e.offsetY=e.offsetY-256*r,t.onZoom&&t.onZoom(e.zoom),e}))},n}return n=e,(t=c).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n,c.prototype.render=function(){var e=(0,a.useBackend)(this.context).config,t=this.state,n=t.dragging,c=t.offsetX,i=t.offsetY,l=t.zoom,d=void 0===l?1:l,s=this.props.children,m=510*d+"px",p={width:m,height:m,"margin-top":i+"px","margin-left":c+"px",overflow:"hidden",position:"relative","background-image":"url("+e.map+"_nanomap_z1.png)","background-size":"cover","background-repeat":"no-repeat","text-align":"center",cursor:n?"move":"auto"};return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__container",children:[(0,o.createComponentVNode)(2,r.Box,{style:p,textAlign:"center",onMouseDown:this.handleDragStart,children:(0,o.createComponentVNode)(2,r.Box,{children:s})}),(0,o.createComponentVNode)(2,u,{zoom:d,onZoom:this.handleZoom})]})},c}(o.Component);t.NanoMap=d;d.Marker=function(e,t){var n=e.x,a=e.y,c=e.zoom,i=void 0===c?1:c,l=e.icon,d=e.tooltip,u=e.color,s=2*n*i-i-3,m=2*a*i-i-3;return(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,r.Box,{position:"absolute",className:"NanoMap__marker",lineHeight:"0",bottom:m+"px",left:s+"px",children:[(0,o.createComponentVNode)(2,r.Icon,{name:l,color:u,fontSize:"6px"}),(0,o.createComponentVNode)(2,r.Tooltip,{content:d})]}),2)};var u=function(e,t){return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__zoomer",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Zoom",children:(0,o.createComponentVNode)(2,i.Slider,{minValue:"1",maxValue:"8",stepPixelSize:"10",format:function(e){return e+"x"},value:e.zoom,onDrag:function(t,n){return e.onZoom(t,n)}})})})})};d.Zoomer=u},function(e,t,n){"use strict";t.__esModule=!0,t.Modal=void 0;var o=n(0),r=n(8),a=n(17),c=n(177);t.Modal=function(e){var t,n=e.className,i=e.children,l=e.onEnter,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","children","onEnter"]);return l&&(t=function(e){13===e.keyCode&&l(e)}),(0,o.createComponentVNode)(2,c.Dimmer,{onKeyDown:t,children:(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Modal",n,(0,a.computeBoxClassName)(d)]),i,0,Object.assign({},(0,a.computeBoxProps)(d))))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBox=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.className,n=e.color,c=e.info,i=(e.warning,e.success),l=e.danger,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","color","info","warning","success","danger"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["NoticeBox",n&&"NoticeBox--color--"+n,c&&"NoticeBox--type--info",i&&"NoticeBox--type--success",l&&"NoticeBox--type--danger",t])},d)))};t.NoticeBox=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.ProgressBarCountdown=t.ProgressBar=void 0;var o=n(0),r=n(16),a=n(8),c=n(17);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.value,l=e.minValue,d=void 0===l?0:l,u=e.maxValue,s=void 0===u?1:u,m=e.color,p=e.ranges,f=void 0===p?{}:p,h=e.children,C=i(e,["className","value","minValue","maxValue","color","ranges","children"]),N=(0,r.scale)(n,d,s),b=h!==undefined,g=m||(0,r.keyOfMatchingRange)(n,f)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar","ProgressBar--color--"+g,t,(0,c.computeBoxClassName)(C)]),[(0,o.createVNode)(1,"div","ProgressBar__fill ProgressBar__fill--animated",null,1,{style:{width:100*(0,r.clamp01)(N)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",b?h:(0,r.toFixed)(100*N)+"%",0)],4,Object.assign({},(0,c.computeBoxProps)(C))))};t.ProgressBar=l,l.defaultHooks=a.pureComponentHooks;var d=function(e){var t,n;function r(t){var n;return(n=e.call(this,t)||this).timer=null,n.state={value:Math.max(100*t.current,0)},n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var a=r.prototype;return a.tick=function(){var e=Math.max(this.state.value+this.props.rate,0);e<=0&&clearInterval(this.timer),this.setState((function(t){return{value:e}}))},a.componentDidMount=function(){var e=this;this.timer=setInterval((function(){return e.tick()}),this.props.rate)},a.componentWillUnmount=function(){clearInterval(this.timer)},a.render=function(){var e=this.props,t=e.start,n=(e.current,e.end),r=i(e,["start","current","end"]),a=(this.state.value/100-t)/(n-t);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l,Object.assign({value:a},r)))},r}(o.Component);t.ProgressBarCountdown=d,d.defaultProps={rate:1e3},l.Countdown=d},function(e,t,n){"use strict";t.__esModule=!0,t.Section=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.className,n=e.title,c=e.level,i=void 0===c?1:c,l=e.buttons,d=e.content,u=e.stretchContents,s=e.noTopPadding,m=e.children,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","title","level","buttons","content","stretchContents","noTopPadding","children"]),f=!(0,r.isFalsy)(n)||!(0,r.isFalsy)(l),h=!(0,r.isFalsy)(d)||!(0,r.isFalsy)(m);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Section","Section--level--"+i,e.flexGrow&&"Section--flex",t])},p,{children:[f&&(0,o.createVNode)(1,"div","Section__title",[(0,o.createVNode)(1,"span","Section__titleText",n,0),(0,o.createVNode)(1,"div","Section__buttons",l,0)],4),h&&(0,o.createComponentVNode)(2,a.Box,{className:(0,r.classes)(["Section__content",!!u&&"Section__content--stretchContents",!!s&&"Section__content--noTopPadding"]),children:[d,m]})]})))};t.Section=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Tabs=void 0;var o=n(0),r=n(8),a=n(17),c=n(129);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.vertical,c=e.children,l=i(e,["className","vertical","children"]);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Tabs",n?"Tabs--vertical":"Tabs--horizontal",t,(0,a.computeBoxClassName)(l)]),(0,o.createVNode)(1,"div","Tabs__tabBox",c,0),2,Object.assign({},(0,a.computeBoxProps)(l))))};t.Tabs=l;l.Tab=function(e){var t=e.className,n=e.selected,a=e.altSelection,l=i(e,["className","selected","altSelection"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Button,Object.assign({className:(0,r.classes)(["Tabs__tab",n&&"Tabs__tab--selected",a&&n&&"Tabs__tab--altSelection",t]),selected:!a&&n,color:"transparent"},l)))}},function(e,t,n){"use strict";t.__esModule=!0,t.TimeDisplay=void 0;t.TimeDisplay=function(e){var t=e.totalSeconds;return function(e){return(!e||e<0)&&(e=0),[Math.floor(e/60).toString(10),(Math.floor(e)%60).toString(10)].map((function(e){return e.length<2?"0"+e:e})).join(":")}(void 0===t?0:t)}},function(e,t,n){var o={"./AICard.js":447,"./AIFixer.js":448,"./APC.js":449,"./ATM.js":450,"./AccountsUplinkTerminal.js":451,"./AiAirlock.js":452,"./AirAlarm.js":453,"./AirlockAccessController.js":454,"./AirlockElectronics.js":455,"./AppearanceChanger.js":456,"./AtmosAlertConsole.js":457,"./AtmosControl.js":458,"./AtmosFilter.js":459,"./AtmosMixer.js":460,"./AtmosPump.js":461,"./Autolathe.js":462,"./BlueSpaceArtilleryControl.js":463,"./BluespaceTap.js":464,"./BodyScanner.js":465,"./BotClean.js":466,"./BotSecurity.js":467,"./BrigCells.js":468,"./BrigTimer.js":469,"./CameraConsole.js":470,"./Canister.js":471,"./CardComputer.js":472,"./CargoConsole.js":473,"./ChemDispenser.js":474,"./ChemHeater.js":478,"./ChemMaster.js":479,"./CloningConsole.js":480,"./CommunicationsComputer.js":481,"./Contractor.js":482,"./ConveyorSwitch.js":483,"./CrewMonitor.js":484,"./Cryo.js":485,"./DNAModifier.js":486,"./DisposalBin.js":487,"./DnaVault.js":488,"./DroneConsole.js":489,"./EFTPOS.js":490,"./ERTManager.js":491,"./Electropack.js":492,"./EvolutionMenu.js":493,"./ExosuitFabricator.js":494,"./ExternalAirlockController.js":495,"./FaxMachine.js":496,"./FloorPainter.js":497,"./GPS.js":498,"./GenericCrewManifest.js":499,"./GhostHudPanel.js":500,"./GravityGen.js":501,"./GuestPass.js":502,"./HandheldChemDispenser.js":503,"./Instrument.js":504,"./KeycardAuth.js":505,"./LaborClaimConsole.js":506,"./LawManager.js":507,"./MechBayConsole.js":508,"./MechaControlConsole.js":509,"./MedicalRecords.js":510,"./MiningVendor.js":511,"./Newscaster.js":512,"./NuclearBomb.js":513,"./OperatingComputer.js":514,"./Orbit.js":515,"./OreRedemption.js":516,"./PAI.js":517,"./PDA.js":530,"./Pacman.js":546,"./PersonalCrafting.js":547,"./PodTracking.js":548,"./PoolController.js":549,"./PortablePump.js":550,"./PortableScrubber.js":551,"./PortableTurret.js":552,"./PowerMonitor.js":188,"./RCD.js":553,"./RPD.js":554,"./Radio.js":555,"./RequestConsole.js":556,"./RndConsole.js":62,"./RobotSelfDiagnosis.js":571,"./RoboticsControlConsole.js":572,"./Safe.js":573,"./SatelliteControl.js":574,"./SecurityRecords.js":575,"./ShuttleConsole.js":576,"./ShuttleManipulator.js":577,"./Sleeper.js":578,"./SlotMachine.js":579,"./Smartfridge.js":580,"./Smes.js":581,"./SolarControl.js":582,"./SpawnersMenu.js":583,"./StationAlertConsole.js":584,"./SuitStorage.js":585,"./SupermatterMonitor.js":586,"./SyndicateComputerSimple.js":587,"./TEG.js":588,"./TachyonArray.js":589,"./Tank.js":590,"./TankDispenser.js":591,"./TcommsCore.js":592,"./TcommsRelay.js":593,"./Teleporter.js":594,"./ThermoMachine.js":595,"./TransferValve.js":596,"./Uplink.js":597,"./Vending.js":598,"./VolumeMixer.js":599,"./Wires.js":600};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=446},function(e,t,n){"use strict";t.__esModule=!0,t.AICard=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AICard=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;if(0===l.has_ai)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No AI detected.",16)})})})});var d=null;return d=l.integrity>=75?"green":l.integrity>=25?"yellow":"red",(0,o.createComponentVNode)(2,c.Window,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,display:"inline-block",children:(0,o.createVNode)(1,"h3",null,l.name,0)}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:d,value:l.integrity/100})})})}),(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h2",null,1===l.flushing?"Wipe of AI in progress...":"",0)})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!l.has_laws&&(0,o.createComponentVNode)(2,a.Box,{children:l.laws.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.wireless?"check":"times",content:l.wireless?"Enabled":"Disabled",color:l.wireless?"green":"red",onClick:function(){return i("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.radio?"check":"times",content:l.radio?"Enabled":"Disabled",color:l.radio?"green":"red",onClick:function(){return i("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wipe",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash-alt",confirmIcon:"trash-alt",disabled:l.flushing||0===l.integrity,confirmColor:"red",content:"Wipe AI",onClick:function(){return i("wipe")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AIFixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AIFixer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;if(null===l.occupant)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No artificial intelligence detected.",16)})})})});var d=null;d=2!==l.stat&&null!==l.stat;var u=null;u=l.integrity>=75?"green":l.integrity>=25?"yellow":"red";var s=null;return s=l.integrity>=100,(0,o.createComponentVNode)(2,c.Window,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:(0,o.createVNode)(1,"h3",null,l.occupant,0)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:u,value:l.integrity/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:d?"green":"red",children:d?"Functional":"Non-Functional"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!l.has_laws&&(0,o.createComponentVNode)(2,a.Box,{children:l.laws.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.wireless?"times":"check",content:l.wireless?"Disabled":"Enabled",color:l.wireless?"red":"green",onClick:function(){return i("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.radio?"times":"check",content:l.radio?"Disabled":"Enabled",color:l.radio?"red":"green",onClick:function(){return i("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Start Repairs",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:s||l.active,content:s?"Already Repaired":"Repair",onClick:function(){return i("fix")}})})]}),(0,o.createComponentVNode)(2,a.Box,{color:"green",lineHeight:2,children:l.active?"Reconstruction in progress.":""})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.APC=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(183);t.APC=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,u)})})};var l={2:{color:"good",externalPowerText:"External Power",chargingText:"Fully Charged"},1:{color:"average",externalPowerText:"Low External Power",chargingText:"Charging"},0:{color:"bad",externalPowerText:"No External Power",chargingText:"Not Charging"}},d={1:{icon:"terminal",content:"Override Programming",action:"hack"},2:{icon:"caret-square-down",content:"Shunt Core Process",action:"occupy"},3:{icon:"caret-square-left",content:"Return to Main Core",action:"deoccupy"},4:{icon:"caret-square-down",content:"Shunt Core Process",action:"occupy"}},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,u=n.data,s=u.locked&&!u.siliconUser,m=(u.normallyLocked,l[u.externalPower]||l[0]),p=l[u.chargingStatus]||l[0],f=u.powerChannels||[],h=d[u.malfStatus]||d[0],C=u.powerCellStatus/100;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.InterfaceLockNoticeBox),(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main Breaker",color:m.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.isOperating?"power-off":"times",content:u.isOperating?"On":"Off",selected:u.isOperating&&!s,color:u.isOperating?"":"bad",disabled:s,onClick:function(){return c("breaker")}}),children:["[ ",m.externalPowerText," ]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Cell",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:C})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",color:p.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.chargeMode?"sync":"times",content:u.chargeMode?"Auto":"Off",selected:u.chargeMode,disabled:s,onClick:function(){return c("charge")}}),children:["[ ",p.chargingText," ]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Channels",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[f.map((function(e){var t=e.topicParams;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{inline:!0,mx:2,color:e.status>=2?"good":"bad",children:e.status>=2?"On":"Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:!s&&(1===e.status||3===e.status),disabled:s,onClick:function(){return c("channel",t.auto)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"On",selected:!s&&2===e.status,disabled:s,onClick:function(){return c("channel",t.on)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:!s&&0===e.status,disabled:s,onClick:function(){return c("channel",t.off)}})],4),children:[e.powerLoad," W"]},e.title)})),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Load",children:(0,o.createVNode)(1,"b",null,[u.totalLoad,(0,o.createTextVNode)(" W")],0)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Misc",buttons:!!u.siliconUser&&(0,o.createFragment)([!!u.malfStatus&&(0,o.createComponentVNode)(2,a.Button,{icon:h.icon,content:h.content,color:"bad",onClick:function(){return c(h.action)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Overload",onClick:function(){return c("overload")}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.coverLocked?"lock":"unlock",content:u.coverLocked?"Engaged":"Disengaged",selected:u.coverLocked,disabled:s,onClick:function(){return c("cover")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Night Shift Lighting",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:u.nightshiftLights?"Enabled":"Disabled",selected:u.nightshiftLights,onClick:function(){return c("toggle_nightshift")}})})]})})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ATM=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ATM=function(e,t){var n,p=(0,r.useBackend)(t),f=(p.act,p.data),h=f.view_screen,C=f.authenticated_account,N=f.ticks_left_locked_down,b=f.linked_db;if(N>0)n=(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle"}),"Maximum number of pin attempts exceeded! Access to this ATM has been temporarily disabled."]});else if(b)if(C)switch(h){case 1:n=(0,o.createComponentVNode)(2,l);break;case 2:n=(0,o.createComponentVNode)(2,d);break;case 3:n=(0,o.createComponentVNode)(2,m);break;default:n=(0,o.createComponentVNode)(2,u)}else n=(0,o.createComponentVNode)(2,s);else n=(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle"}),"Unable to connect to accounts database, please retry and if the issue persists contact Nanotrasen IT support."]});return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Section,{children:n})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.machine_id,d=i.held_card_name;return(0,o.createComponentVNode)(2,a.Section,{title:"Nanotrasen Automatic Teller Machine",children:[(0,o.createComponentVNode)(2,a.Box,{children:"For all your monetary need!"}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:"info-circle"})," This terminal is ",(0,o.createVNode)(1,"i",null,l,0),", report this code when contacting Nanotrasen IT Support."]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Card",children:(0,o.createComponentVNode)(2,a.Button,{content:d,icon:"eject",onClick:function(){return c("insert_card")}})})})]})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.security_level;return(0,o.createComponentVNode)(2,a.Section,{title:"Select a new security level for this account",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"Zero",icon:"unlock",selected:0===i,onClick:function(){return c("change_security_level",{new_security_level:0})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"Either the account number or card is required to access this account. EFTPOS transactions will require a card and ask for a pin, but not verify the pin is correct."}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"One",icon:"unlock",selected:1===i,onClick:function(){return c("change_security_level",{new_security_level:1})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"An account number and pin must be manually entered to access this account and process transactions."}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"Two",selected:2===i,icon:"unlock",onClick:function(){return c("change_security_level",{new_security_level:2})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"In addition to account number and pin, a card is required to access this account and process transactions."})]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"targetAccNumber",0),d=l[0],u=l[1],s=(0,r.useLocalState)(t,"fundsAmount",0),m=s[0],f=s[1],h=(0,r.useLocalState)(t,"purpose",0),C=h[0],N=h[1],b=i.money;return(0,o.createComponentVNode)(2,a.Section,{title:"Transfer Fund",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Balance",children:["$",b]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target account number",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Funds to transfer",children:(0,o.createComponentVNode)(2,a.Input,{onInput:function(e,t){return f(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transaction Purpose",children:(0,o.createComponentVNode)(2,a.Input,{fluid:!0,onInput:function(e,t){return N(t)}})})]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Button,{content:"Transfer",icon:"sign-out-alt",onClick:function(){return c("transfer",{target_acc_number:d,funds_amount:m,purpose:C})}}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"fundsAmount",0),d=l[0],u=l[1],s=i.owner_name,m=i.money;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Welcome, "+s,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Logout",icon:"sign-out-alt",onClick:function(){return c("logout")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Balance",children:["$",m]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Withdrawal Amount",children:(0,o.createComponentVNode)(2,a.Input,{onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Withdraw Fund",icon:"sign-out-alt",onClick:function(){return c("withdrawal",{funds_amount:d})}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Change account security level",icon:"lock",onClick:function(){return c("view_screen",{view_screen:1})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Make transfer",icon:"exchange-alt",onClick:function(){return c("view_screen",{view_screen:2})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"View transaction log",icon:"list",onClick:function(){return c("view_screen",{view_screen:3})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Print balance statement",icon:"print",onClick:function(){return c("balance_statement")}})})]})],4)},s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"accountID",null),d=l[0],u=l[1],s=(0,r.useLocalState)(t,"accountPin",null),m=s[0],p=s[1];i.machine_id,i.held_card_name;return(0,o.createComponentVNode)(2,a.Section,{title:"Insert card or enter ID and pin to login",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account ID",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pin",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return p(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Login",icon:"sign-in-alt",onClick:function(){return c("attempt_auth",{account_num:d,account_pin:m})}})})]})})},m=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.transaction_log);return(0,o.createComponentVNode)(2,a.Section,{title:"Transactions",children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Terminal"})]}),c.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{p:"1rem",children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:["$",e.amount]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source_terminal})]},e)}))]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act;n.data;return(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"sign-out-alt",onClick:function(){return c("view_screen",{view_screen:0})}})}},function(e,t,n){"use strict";t.__esModule=!0,t.AccountsUplinkTerminal=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(75),l=n(4),d=n(132),u=n(133);t.AccountsUplinkTerminal=function(e,t){var n,r=(0,a.useBackend)(t),c=(r.act,r.data),i=c.loginState,m=c.currentPage;return i.logged_in?(1===m?n=(0,o.createComponentVNode)(2,s):2===m?n=(0,o.createComponentVNode)(2,f):3===m&&(n=(0,o.createComponentVNode)(2,h)),(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d.LoginInfo),n]})})):(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,u.LoginScreen)})})};var s=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.accounts,d=(0,a.useLocalState)(t,"searchText",""),u=d[0],s=(d[1],(0,a.useLocalState)(t,"sortId","owner_name")),f=s[0],h=(s[1],(0,a.useLocalState)(t,"sortOrder",!0)),C=h[0];h[1];return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,c.Flex.Item,{flexGrow:"1",mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{height:"100%",children:(0,o.createComponentVNode)(2,c.Table,{className:"AccountsUplinkTerminal__list",children:[(0,o.createComponentVNode)(2,c.Table.Row,{bold:!0,children:[(0,o.createComponentVNode)(2,m,{id:"owner_name",children:"Account Holder"}),(0,o.createComponentVNode)(2,m,{id:"account_number",children:"Account Number"}),(0,o.createComponentVNode)(2,m,{id:"suspended",children:"Account Status"})]}),l.filter((0,r.createSearch)(u,(function(e){return e.owner_name+"|"+e.account_number+"|"+e.suspended}))).sort((function(e,t){var n=C?1:-1;return e[f].localeCompare(t[f])*n})).map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{onClick:function(){return i("view_account_detail",{index:e.account_index})},children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",e.owner_name]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:["#",e.account_number]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.suspended})]},e.id)}))]})})})]})},m=function(e,t){var n=(0,a.useLocalState)(t,"sortId","name"),r=n[0],i=n[1],l=(0,a.useLocalState)(t,"sortOrder",!0),d=l[0],u=l[1],s=e.id,m=e.children;return(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,c.Button,{color:r!==s&&"transparent",width:"100%",onClick:function(){r===s?u(!d):(i(s),u(!0))},children:[m,r===s&&(0,o.createComponentVNode)(2,c.Icon,{name:d?"sort-up":"sort-down",ml:"0.25rem;"})]})})},p=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data.is_printing,d=(0,a.useLocalState)(t,"searchText",""),u=(d[0],d[1]);return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,i.FlexItem,{children:[(0,o.createComponentVNode)(2,c.Button,{content:"New Account",icon:"plus",onClick:function(){return r("create_new_account")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"print",content:"Print Account List",disabled:l,ml:"0.25rem",onClick:function(){return r("print_records")}})]}),(0,o.createComponentVNode)(2,i.FlexItem,{grow:"1",ml:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by account holder, number, status",width:"100%",onInput:function(e,t){return u(t)}})})]})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.is_printing,d=i.account_number,u=i.owner_name,s=i.money,m=i.suspended,p=i.transactions;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"#"+d+" / "+u,mt:1,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"print",content:"Print Account Details",disabled:l,onClick:function(){return r("print_account_details")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("back")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Number",children:["#",d]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Holder",children:u}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Balance",children:s}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Status",color:m?"red":"green",children:[m?"Suspended":"Active",(0,o.createComponentVNode)(2,c.Button,{ml:1,content:m?"Unsuspend":"Suspend",icon:m?"unlock":"lock",onClick:function(){return r("toggle_suspension")}})]})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Transactions",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Terminal"})]}),p.map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:["$",e.amount]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.source_terminal})]},e)}))]})})],4)},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=(n.data,(0,a.useLocalState)(t,"accName","")),l=i[0],d=i[1],u=(0,a.useLocalState)(t,"accDeposit",""),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,c.Section,{title:"Create Account",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("back")}}),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Holder",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Name Here",onChange:function(e,t){return d(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Initial Deposit",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"0",onChange:function(e,t){return m(t)}})})]}),(0,o.createComponentVNode)(2,c.Button,{mt:1,fluid:!0,content:"Create Account",onClick:function(){return r("finalise_create_account",{holder_name:l,starting_funds:s})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiAirlock=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i={2:{color:"good",localStatusText:"Offline"},1:{color:"average",localStatusText:"Caution"},0:{color:"bad",localStatusText:"Optimal"}};t.AiAirlock=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=i[d.power.main]||i[0],s=i[d.power.backup]||i[0],m=i[d.shock]||i[0];return(0,o.createComponentVNode)(2,c.Window,{width:500,height:390,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main",color:u.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.main,content:"Disrupt",onClick:function(){return l("disrupt-main")}}),children:[d.power.main?"Online":"Offline"," ",d.wires.main_power?d.power.main_timeleft>0&&"["+d.power.main_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Backup",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.backup,content:"Disrupt",onClick:function(){return l("disrupt-backup")}}),children:[d.power.backup?"Online":"Offline"," ",d.wires.backup_power?d.power.backup_timeleft>0&&"["+d.power.backup_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Electrify",color:m.color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:!(d.wires.shock&&2!==d.shock),content:"Restore",onClick:function(){return l("shock-restore")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Temporary",onClick:function(){return l("shock-temp")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock||0===d.shock,content:"Permanent",onClick:function(){return l("shock-perm")}})],4),children:[2===d.shock?"Safe":"Electrified"," ",(d.wires.shock?d.shock_timeleft>0&&"["+d.shock_timeleft+"s]":"[Wires have been cut!]")||-1===d.shock_timeleft&&"[Permanent]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Access and Door Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Scan",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.id_scanner?"power-off":"times",content:d.id_scanner?"Enabled":"Disabled",selected:d.id_scanner,disabled:!d.wires.id_scanner,onClick:function(){return l("idscan-toggle")}}),children:!d.wires.id_scanner&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Access",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.emergency?"power-off":"times",content:d.emergency?"Enabled":"Disabled",selected:d.emergency,onClick:function(){return l("emergency-toggle")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolts",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.locked?"lock":"unlock",content:d.locked?"Lowered":"Raised",selected:d.locked,disabled:!d.wires.bolts,onClick:function(){return l("bolt-toggle")}}),children:!d.wires.bolts&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolt Lights",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.lights?"power-off":"times",content:d.lights?"Enabled":"Disabled",selected:d.lights,disabled:!d.wires.lights,onClick:function(){return l("light-toggle")}}),children:!d.wires.lights&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Force Sensors",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.safe?"power-off":"times",content:d.safe?"Enabled":"Disabled",selected:d.safe,disabled:!d.wires.safe,onClick:function(){return l("safe-toggle")}}),children:!d.wires.safe&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Timing Safety",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.speed?"power-off":"times",content:d.speed?"Enabled":"Disabled",selected:d.speed,disabled:!d.wires.timing,onClick:function(){return l("speed-toggle")}}),children:!d.wires.timing&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Control",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.opened?"sign-out-alt":"sign-in-alt",content:d.opened?"Open":"Closed",selected:d.opened,disabled:d.locked||d.welded,onClick:function(){return l("open-close")}}),children:!(!d.locked&&!d.welded)&&(0,o.createVNode)(1,"span",null,[(0,o.createTextVNode)("[Door is "),d.locked?"bolted":"",d.locked&&d.welded?" and ":"",d.welded?"welded":"",(0,o.createTextVNode)("!]")],0)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirAlarm=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(183);t.AirAlarm=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data.locked);return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,i.InterfaceLockNoticeBox),!a&&(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s)],4)]})})};var l=function(e){return 0===e?"green":1===e?"orange":"red"},d=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,d=c.data,u=d.air,s=d.mode,m=d.atmos_alarm,p=d.locked,f=d.alarmActivated,h=d.rcon;return n=0===u.danger.overall?0===m?"Optimal":"Caution: Atmos alert in area":1===u.danger.overall?"Caution":"DANGER: Internals Required",(0,o.createComponentVNode)(2,a.Section,{title:"Air Status",children:u?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.pressure),children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.pressure})," kPa",!p&&(0,o.createFragment)([(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,a.Button,{content:3===s?"Deactivate Panic Siphon":"Activate Panic Siphon",selected:3===s,icon:"exclamation-triangle",onClick:function(){return i("mode",{mode:3===s?1:3})}})],4)]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.oxygen/100,color:l(u.danger.oxygen)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nitrogen",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.nitrogen/100,color:l(u.danger.nitrogen)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Carbon Dioxide",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.co2/100,color:l(u.danger.co2)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Toxins",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.plasma/100,color:l(u.danger.plasma)})}),u.contents.other>0&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Other",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.other/100,color:l(u.danger.other)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.temperature),children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.temperature})," K / ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.temperature_c})," C\xa0",(0,o.createComponentVNode)(2,a.Button,{icon:"thermometer-full",content:u.temperature_c+" C",onClick:function(){return i("temperature")}})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Local Status",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.overall),children:[n,!p&&(0,o.createFragment)([(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,a.Button,{content:f?"Reset Alarm":"Activate Alarm",selected:f,onClick:function(){return i(f?"atmos_reset":"atmos_alarm")}})],4)]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Control Settings",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Off",selected:1===h,onClick:function(){return i("set_rcon",{rcon:1})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Auto",selected:2===h,onClick:function(){return i("set_rcon",{rcon:2})}}),(0,o.createComponentVNode)(2,a.Button,{content:"On",selected:3===h,onClick:function(){return i("set_rcon",{rcon:3})}})]})]}):(0,o.createComponentVNode)(2,a.Box,{children:"Unable to acquire air sample!"})})},u=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),c=n[0],i=n[1];return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===c,onClick:function(){return i(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"sign-out-alt"})," Vent Control"]},"Vents"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===c,onClick:function(){return i(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"sign-in-alt"})," Scrubber Control"]},"Scrubbers"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i(2)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"cog"})," Mode"]},"Mode"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i(3)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"tachometer-alt"})," Thresholds"]},"Thresholds")]})},s=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),a=n[0];n[1];switch(a){case 0:return(0,o.createComponentVNode)(2,m);case 1:return(0,o.createComponentVNode)(2,p);case 2:return(0,o.createComponentVNode)(2,f);case 3:return(0,o.createComponentVNode)(2,h);default:return"WE SHOULDN'T BE HERE!"}},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act;return n.data.vents.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Button,{content:e.power?"On":"Off",selected:e.power,icon:"power-off",onClick:function(){return c("command",{cmd:"power",val:1===e.power?0:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"release"===e.direction?"Blowing":"Siphoning",icon:"release"===e.direction?"sign-out-alt":"sign-in-alt",onClick:function(){return c("command",{cmd:"direction",val:"release"===e.direction?0:1,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Checks",children:[(0,o.createComponentVNode)(2,a.Button,{content:"External",selected:1===e.checks,onClick:function(){return c("command",{cmd:"checks",val:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Internal",selected:2===e.checks,onClick:function(){return c("command",{cmd:"checks",val:2,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"External Pressure Target",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.external})," kPa\xa0",(0,o.createComponentVNode)(2,a.Button,{content:"Set",icon:"cog",onClick:function(){return c("command",{cmd:"set_external_pressure",id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Reset",icon:"redo-alt",onClick:function(){return c("command",{cmd:"set_external_pressure",val:101.325,id_tag:e.id_tag})}})]})]})},e.name)}))},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act;return n.data.scrubbers.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Button,{content:e.power?"On":"Off",selected:e.power,icon:"power-off",onClick:function(){return c("command",{cmd:"power",val:1===e.power?0:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:0===e.scrubbing?"Siphoning":"Scrubbing",icon:0===e.scrubbing?"sign-in-alt":"filter",onClick:function(){return c("command",{cmd:"scrubbing",val:0===e.scrubbing?1:0,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,a.Button,{content:e.widenet?"Extended":"Normal",selected:e.widenet,icon:"expand-arrows-alt",onClick:function(){return c("command",{cmd:"widenet",val:0===e.widenet?1:0,id_tag:e.id_tag})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filtering",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Carbon Dioxide",selected:e.filter_co2,onClick:function(){return c("command",{cmd:"co2_scrub",val:0===e.filter_co2?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Plasma",selected:e.filter_toxins,onClick:function(){return c("command",{cmd:"tox_scrub",val:0===e.filter_toxins?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Nitrous Oxide",selected:e.filter_n2o,onClick:function(){return c("command",{cmd:"n2o_scrub",val:0===e.filter_n2o?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Oxygen",selected:e.filter_o2,onClick:function(){return c("command",{cmd:"o2_scrub",val:0===e.filter_o2?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Nitrogen",selected:e.filter_n2,onClick:function(){return c("command",{cmd:"n2_scrub",val:0===e.filter_n2?1:0,id_tag:e.id_tag})}})]})]})},e.name)}))},f=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.modes,d=i.presets,u=i.emagged,s=i.mode,m=i.preset;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"System Mode",children:(0,o.createComponentVNode)(2,a.Table,{children:l.map((function(e){return(!e.emagonly||e.emagonly&&!!u)&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"right",width:1,children:(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:"cog",selected:e.id===s,onClick:function(){return c("mode",{mode:e.id})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.desc})]},e.name)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"System Presets",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,children:"After making a selection, the system will automatically cycle in order to remove contaminants."}),(0,o.createComponentVNode)(2,a.Table,{mt:1,children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"right",width:1,children:(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:"cog",selected:e.id===m,onClick:function(){return c("preset",{preset:e.id})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.desc})]},e.name)}))})]})],4)},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.thresholds;return(0,o.createComponentVNode)(2,a.Section,{title:"Alarm Thresholds",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"20%",children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"red",width:"20%",children:"Danger Min"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"orange",width:"20%",children:"Warning Min"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"orange",width:"20%",children:"Warning Max"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"red",width:"20%",children:"Danger Max"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),e.settings.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:-1===e.selected?"Off":e.selected,onClick:function(){return c("command",{cmd:"set_threshold",env:e.env,"var":e.val})}})},e.val)}))]},e.name)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirlockAccessController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AirlockAccessController=function(e,t){var n,i,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.exterior_status,m=u.interior_status,p=u.processing;return n="open"===u.exterior_status.state?(0,o.createComponentVNode)(2,a.Button,{content:"Lock Exterior Door",icon:"exclamation-triangle",disabled:p,onClick:function(){return d("force_ext")}}):(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Exterior",icon:"arrow-circle-left",disabled:p,onClick:function(){return d("cycle_ext_door")}}),i="open"===u.interior_status.state?(0,o.createComponentVNode)(2,a.Button,{content:"Lock Interior Door",icon:"exclamation-triangle",disabled:p,color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_int")}}):(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Interior",icon:"arrow-circle-right",disabled:p,onClick:function(){return d("cycle_int_door")}}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"External Door Status",children:"closed"===s.state?"Locked":"Open"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Internal Door Status",children:"closed"===m.state?"Locked":"Open"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Box,{children:n}),(0,o.createComponentVNode)(2,a.Box,{children:i})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirlockElectronics=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(78);t.AirlockElectronics=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,d)]})};var l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.unrestricted_dir;return(0,o.createComponentVNode)(2,a.Section,{title:"Access Control",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,mb:1,children:"Unrestricted Access From:"}),(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-down",content:"North",selected:"north"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"North"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-up",content:"South",selected:"south"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"South"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-left",content:"East",selected:"east"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"East"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-right",content:"West",selected:"west"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"West"})}})})]})]})})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.selected_accesses,u=l.one_access,s=l.regions;return(0,o.createComponentVNode)(2,i.AccessList,{usedByRcd:1,rcdButtons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:u,content:"One",onClick:function(){return c("set_one_access",{access:"one"})}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:!u,content:"All",onClick:function(){return c("set_one_access",{access:"all"})}})],4),accesses:s,selectedList:d,accessMod:function(e){return c("set",{access:e})},grantAll:function(){return c("grant_all")},denyAll:function(){return c("clear_all")},grantDep:function(e){return c("grant_region",{region:e})},denyDep:function(e){return c("deny_region",{region:e})}})}},function(e,t,n){"use strict";t.__esModule=!0,t.AppearanceChanger=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AppearanceChanger=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.change_race,s=d.species,m=d.specimen,p=d.change_gender,f=d.gender,h=d.has_gender,C=d.change_eye_color,N=d.change_skin_tone,b=d.change_skin_color,g=d.change_head_accessory_color,V=d.change_hair_color,v=d.change_secondary_hair_color,y=d.change_facial_hair_color,_=d.change_secondary_facial_hair_color,x=d.change_head_marking_color,k=d.change_body_marking_color,L=d.change_tail_marking_color,B=d.change_head_accessory,w=d.head_accessory_styles,S=d.head_accessory_style,I=d.change_hair,T=d.hair_styles,A=d.hair_style,E=d.change_facial_hair,M=d.facial_hair_styles,O=d.facial_hair_style,P=d.change_head_markings,R=d.head_marking_styles,D=d.head_marking_style,F=d.change_body_markings,j=d.body_marking_styles,W=d.body_marking_style,z=d.change_tail_markings,U=d.tail_marking_styles,H=d.tail_marking_style,K=d.change_body_accessory,G=d.body_accessory_styles,q=d.body_accessory_style,Y=d.change_alt_head,$=d.alt_head_styles,X=d.alt_head_style,J=!1;return(C||N||b||g||V||v||y||_||x||k||L)&&(J=!0),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.specimen,selected:e.specimen===m,onClick:function(){return l("race",{race:e.specimen})}},e.specimen)}))}),!!p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gender",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Male",selected:"male"===f,onClick:function(){return l("gender",{gender:"male"})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Female",selected:"female"===f,onClick:function(){return l("gender",{gender:"female"})}}),!h&&(0,o.createComponentVNode)(2,a.Button,{content:"Genderless",selected:"plural"===f,onClick:function(){return l("gender",{gender:"plural"})}})]}),!!J&&(0,o.createComponentVNode)(2,i),!!B&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Head accessory",children:w.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.headaccessorystyle,selected:e.headaccessorystyle===S,onClick:function(){return l("head_accessory",{head_accessory:e.headaccessorystyle})}},e.headaccessorystyle)}))}),!!I&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hair",children:T.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.hairstyle,selected:e.hairstyle===A,onClick:function(){return l("hair",{hair:e.hairstyle})}},e.hairstyle)}))}),!!E&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Facial hair",children:M.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.facialhairstyle,selected:e.facialhairstyle===O,onClick:function(){return l("facial_hair",{facial_hair:e.facialhairstyle})}},e.facialhairstyle)}))}),!!P&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Head markings",children:R.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.headmarkingstyle,selected:e.headmarkingstyle===D,onClick:function(){return l("head_marking",{head_marking:e.headmarkingstyle})}},e.headmarkingstyle)}))}),!!F&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Body markings",children:j.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.bodymarkingstyle,selected:e.bodymarkingstyle===W,onClick:function(){return l("body_marking",{body_marking:e.bodymarkingstyle})}},e.bodymarkingstyle)}))}),!!z&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tail markings",children:U.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.tailmarkingstyle,selected:e.tailmarkingstyle===H,onClick:function(){return l("tail_marking",{tail_marking:e.tailmarkingstyle})}},e.tailmarkingstyle)}))}),!!K&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Body accessory",children:G.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.bodyaccessorystyle,selected:e.bodyaccessorystyle===q,onClick:function(){return l("body_accessory",{body_accessory:e.bodyaccessorystyle})}},e.bodyaccessorystyle)}))}),!!Y&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alternate head",children:$.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.altheadstyle,selected:e.altheadstyle===X,onClick:function(){return l("alt_head",{alt_head:e.altheadstyle})}},e.altheadstyle)}))})]})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Colors",children:[{key:"change_eye_color",text:"Change eye color",action:"eye_color"},{key:"change_skin_tone",text:"Change skin tone",action:"skin_tone"},{key:"change_skin_color",text:"Change skin color",action:"skin_color"},{key:"change_head_accessory_color",text:"Change head accessory color",action:"head_accessory_color"},{key:"change_hair_color",text:"Change hair color",action:"hair_color"},{key:"change_secondary_hair_color",text:"Change secondary hair color",action:"secondary_hair_color"},{key:"change_facial_hair_color",text:"Change facial hair color",action:"facial_hair_color"},{key:"change_secondary_facial_hair_color",text:"Change secondary facial hair color",action:"secondary_facial_hair_color"},{key:"change_head_marking_color",text:"Change head marking color",action:"head_marking_color"},{key:"change_body_marking_color",text:"Change body marking color",action:"body_marking_color"},{key:"change_tail_marking_color",text:"Change tail marking color",action:"tail_marking_color"}].map((function(e){return!!i[e.key]&&(0,o.createComponentVNode)(2,a.Button,{content:e.text,onClick:function(){return c(e.action)}})}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosAlertConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.priority||[],u=l.minor||[];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Alarms",children:(0,o.createVNode)(1,"ul",null,[0===d.length&&(0,o.createVNode)(1,"li","color-good","No Priority Alerts",16),d.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e,color:"bad",onClick:function(){return i("clear",{zone:e})}}),2,null,e)})),0===u.length&&(0,o.createVNode)(1,"li","color-good","No Minor Alerts",16),u.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e,color:"average",onClick:function(){return i("clear",{zone:e})}}),2,null,e)}))],0)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(76),i=n(4);t.AtmosControl=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data,(0,r.useLocalState)(t,"tabIndex",0)),u=c[0],s=c[1];return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:0===u,children:(0,o.createComponentVNode)(2,a.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"table"})," Data View"]},"DataView"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"map-marked-alt"})," Map View"]},"MapView")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,l);case 1:return(0,o.createComponentVNode)(2,d);default:return"WE SHOULDN'T BE HERE!"}}(u)]})})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.alarms;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Access"})]}),l.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,c.TableCell,{children:e.name}),(0,o.createComponentVNode)(2,c.TableCell,{children:(t=e.danger,0===t?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Good"}):1===t?(0,o.createComponentVNode)(2,a.Box,{color:"orange",bold:!0,children:"Warning"}):2===t?(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"DANGER"}):void 0)}),(0,o.createComponentVNode)(2,c.TableCell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",content:"Access",onClick:function(){return i("open_alarm",{aref:e.ref})}})})]},e.name);var t}))]})})},d=function(e,t){var n=(0,r.useBackend)(t).data,c=(0,r.useLocalState)(t,"zoom",1),i=c[0],l=c[1],d=n.alarms;return(0,o.createComponentVNode)(2,a.Box,{height:"526px",mb:"0.5rem",overflow:"hidden",children:(0,o.createComponentVNode)(2,a.NanoMap,{onZoom:function(e){return l(e)},children:d.filter((function(e){return 2===e.z})).map((function(e){return(0,o.createComponentVNode)(2,a.NanoMap.Marker,{x:e.x,y:e.y,zoom:i,icon:"circle",tooltip:e.name,color:(t=e.danger,0===t?"green":1===t?"orange":2===t?"red":void 0)},e.ref);var t}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosFilter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosFilter=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.on,u=l.pressure,s=l.max_pressure,m=l.filter_type,p=l.filter_type_list;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"On":"Off",color:d?null:"red",selected:d,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===u,width:2.2,onClick:function(){return i("min_pressure")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"kPa",width:6.1,lineHeight:1.5,step:10,minValue:0,maxValue:s,value:u,onDrag:function(e,t){return i("custom_pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:u===s,width:2.2,onClick:function(){return i("max_pressure")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filter",children:p.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e.gas_type===m,content:e.label,onClick:function(){return i("set_filter",{filter:e.gas_type})}},e.label)}))})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosMixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosMixer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.on,s=d.pressure,m=d.max_pressure,p=d.node1_concentration,f=d.node2_concentration;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",color:u?null:"red",selected:u,onClick:function(){return l("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===s,width:2.2,onClick:function(){return l("min_pressure")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"kPa",width:6.1,lineHeight:1.5,step:10,minValue:0,maxValue:m,value:s,onDrag:function(e,t){return l("custom_pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:s===m,width:2.2,onClick:function(){return l("max_pressure")}})]}),(0,o.createComponentVNode)(2,i,{node_name:"Node 1",node_ref:p}),(0,o.createComponentVNode)(2,i,{node_name:"Node 2",node_ref:f})]})})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.node_name),l=e.node_ref;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:i,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",width:2.2,disabled:0===l,onClick:function(){return c("set_node",{node_name:i,concentration:(l-10)/100})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"%",width:6.1,lineHeight:1.5,stepPixelSize:10,minValue:0,maxValue:100,value:l,onChange:function(e,t){return c("set_node",{node_name:i,concentration:t/100})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",width:2.2,disabled:100===l,onClick:function(){return c("set_node",{node_name:i,concentration:(l+10)/100})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosPump=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosPump=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.on,u=l.rate,s=l.max_rate,m=l.gas_unit,p=l.step;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"On":"Off",color:d?null:"red",selected:d,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===u,width:2.2,onClick:function(){return i("min_rate")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:m,width:6.1,lineHeight:1.5,step:p,minValue:0,maxValue:s,value:u,onDrag:function(e,t){return i("custom_rate",{rate:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:u===s,width:2.2,onClick:function(){return i("max_rate")}})]})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Autolathe=void 0;var o=n(0),r=n(43),a=n(26),c=n(1),i=n(2),l=n(4),d=n(19),u=function(e,t,n,o){return null===e.requirements||!(e.requirements.metal*o>t)&&!(e.requirements.glass*o>n)};t.Autolathe=function(e,t){var n=(0,c.useBackend)(t),s=n.act,m=n.data,p=m.total_amount,f=(m.max_amount,m.metal_amount),h=m.glass_amount,C=m.busyname,N=(m.busyamt,m.showhacked,m.buildQueue),b=m.buildQueueLen,g=m.recipes,V=m.categories,v=(0,c.useSharedState)(t,"category",0),y=v[0],_=v[1];0===y&&(y="Tools");var x=f.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),k=h.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),L=p.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),B=(0,c.useSharedState)(t,"search_text",""),w=B[0],S=B[1],I=(0,d.createSearch)(w,(function(e){return e.name})),T="";b>0&&(T=N.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"times",content:N[t][0],onClick:function(){return s("remove_from_queue",{remove_from_queue:N.indexOf(e)+1})}},e)},t)})));var A=(0,r.flow)([(0,a.filter)((function(e){return(e.category.indexOf(y)>-1||w)&&(m.showhacked||!e.hacked)})),w&&(0,a.filter)(I),(0,a.sortBy)((function(e){return e.name.toLowerCase()}))])(g),E="Build";w?E="Results for: '"+w+"':":y&&(E="Build ("+y+")");return(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,i.Section,{title:E,buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"190px",options:V,selected:y,onSelected:function(e){return _(e)}}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",onInput:function(e,t){return S(t)},mb:1}),A.map((function(e){return(0,o.createComponentVNode)(2,i.Flex,{justify:"space-between",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+e.image,style:{"vertical-align":"middle",width:"32px",margin:"0px","margin-left":"0px"}}),(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&1===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,1),onClick:function(){return s("make",{make:e.uid,multiplier:1})},children:(0,d.toTitleCase)(e.name)}),e.max_multiplier>=10&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&10===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,10),onClick:function(){return s("make",{make:e.uid,multiplier:10})},children:"10x"}),e.max_multiplier>=25&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&25===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,25),onClick:function(){return s("make",{make:e.uid,multiplier:25})},children:"25x"}),e.max_multiplier>25&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&m.busyamt===e.max_multiplier,disabled:!u(e,m.metal_amount,m.glass_amount,e.max_multiplier),onClick:function(){return s("make",{make:e.uid,multiplier:e.max_multiplier})},children:[e.max_multiplier,"x"]})]}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:e.requirements&&Object.keys(e.requirements).map((function(t){return(0,d.toTitleCase)(t)+": "+e.requirements[t]})).join(", ")||(0,o.createComponentVNode)(2,i.Box,{children:"No resources required."})})]},e.ref)}))]}),2,{style:{float:"left",width:"68%"}}),(0,o.createVNode)(1,"div",null,[(0,o.createComponentVNode)(2,i.Section,{title:"Materials",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Metal",children:x}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Glass",children:k}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total",children:L}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Storage",children:[m.fill_percent,"% Full"]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Building",children:(0,o.createComponentVNode)(2,i.Box,{color:C?"green":"",children:C||"Nothing"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Build Queue",children:[T,(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,i.Button,{icon:"times",content:"Clear All",disabled:!m.buildQueueLen,onClick:function(){return s("clear_queue")}}),2,{align:"right"})]})],4,{style:{float:"right",width:"30%"}})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BlueSpaceArtilleryControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BlueSpaceArtilleryControl=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return n=d.ready?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:"green",children:"Ready"}):d.reloadtime_text?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reloading In",color:"red",children:d.reloadtime_text}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:"red",children:"No cannon connected!"}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.notice&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alert",color:"red",children:d.notice}),n,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Button,{icon:"crosshairs",content:d.target?d.target:"None",onClick:function(){return l("recalibrate")}})}),1===d.ready&&!!d.target&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Firing",children:(0,o.createComponentVNode)(2,a.Button,{icon:"skull",content:"FIRE!",color:"red",onClick:function(){return l("fire")}})}),!d.connected&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"Complete Deployment",onClick:function(){return l("build")}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BluespaceTap=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(95);t.BluespaceTap=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.product||[],s=d.desiredLevel,m=d.inputLevel,p=d.points,f=d.totalPoints,h=d.powerUse,C=d.availablePower,N=d.maxLevel,b=d.emagged,g=d.safeLevels,V=d.nextLevelPower,v=s>m?"bad":"good";return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!b&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:1,children:"Safety Protocols disabled"}),!!(m>g)&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:1,children:"High Power, Instability likely"}),(0,o.createComponentVNode)(2,a.Collapsible,{title:"Input Management",children:(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Input Level",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Desired Level",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===s,tooltip:"Set to 0",onClick:function(){return l("set",{set_level:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"step-backward",tooltip:"Decrease to actual input level",disabled:0===s,onClick:function(){return l("set",{set_level:m})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===s,tooltip:"Decrease one step",onClick:function(){return l("decrease")}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:s,fillValue:m,minValue:0,color:v,maxValue:N,stepPixelSize:20,step:1,onChange:function(e,t){return l("set",{set_level:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:s===N,tooltip:"Increase one step",tooltipPosition:"left",onClick:function(){return l("increase")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:s===N,tooltip:"Set to max",tooltipPosition:"left",onClick:function(){return l("set",{set_level:N})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Power Use",children:(0,i.formatPower)(h)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power for next level",children:(0,i.formatPower)(V)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Surplus Power",children:(0,i.formatPower)(C)})]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available Points",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Points",children:f})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{align:"end",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.price>=p,onClick:function(){return l("vend",{target:e.key})},content:e.price})},e.key)}))})})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyScanner=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(4),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["hasBorer","bad","Large growth detected in frontal lobe, possibly cancerous. Surgical removal is recommended."],["hasVirus","bad","Viral pathogen detected in blood stream."],["blind","average","Cataracts detected."],["colourblind","average","Photoreceptor abnormalities detected."],["nearsighted","average","Retinal misalignment detected."]],u=[["Respiratory","oxyLoss"],["Brain","brainLoss"],["Toxin","toxLoss"],["Radioactive","radLoss"],["Brute","bruteLoss"],["Genetic","cloneLoss"],["Burn","fireLoss"],["Paralysis","paralysis"]],s={average:[.25,.5],bad:[.5,Infinity]},m=function(e,t){for(var n=[],o=0;o0?e.filter((function(e){return!!e})).reduce((function(e,t){return(0,o.createFragment)([e,(0,o.createComponentVNode)(2,c.Box,{children:t},t)],0)}),null):null},f=function(e){if(e>100){if(e<300)return"mild infection";if(e<400)return"mild infection+";if(e<500)return"mild infection++";if(e<700)return"acute infection";if(e<800)return"acute infection+";if(e<900)return"acute infection++";if(e>=900)return"septic"}return""};t.BodyScanner=function(e,t){var n=(0,a.useBackend)(t).data,r=n.occupied,c=n.occupant,l=void 0===c?{}:c,d=r?(0,o.createComponentVNode)(2,h,{occupant:l}):(0,o.createComponentVNode)(2,y);return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:d})})};var h=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,C,{occupant:t}),(0,o.createComponentVNode)(2,N,{occupant:t}),(0,o.createComponentVNode)(2,b,{occupant:t}),(0,o.createComponentVNode)(2,V,{organs:t.extOrgan}),(0,o.createComponentVNode)(2,v,{organs:t.intOrgan})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=n.act,d=n.data.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"print",onClick:function(){return i("print_p")},children:"Print Report"}),(0,o.createComponentVNode)(2,c.Button,{icon:"user-slash",onClick:function(){return i("ejectify")},children:"Eject"})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:d.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:d.maxHealth,value:d.health/d.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[d.stat][0],children:l[d.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:(0,r.round)(d.bodyTempC,0)}),"\xb0C,\xa0",(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:(0,r.round)(d.bodyTempF,0)}),"\xb0F"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Implants",children:d.implant_len?(0,o.createComponentVNode)(2,c.Box,{children:d.implant.map((function(e){return e.name})).join(", ")}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"None"})})]})})},N=function(e){var t=e.occupant;return t.hasBorer||t.blind||t.colourblind||t.nearsighted||t.hasVirus?(0,o.createComponentVNode)(2,c.Section,{title:"Abnormalities",children:d.map((function(e,n){if(t[e[0]])return(0,o.createComponentVNode)(2,c.Box,{color:e[1],bold:"bad"===e[1],children:e[2]})}))}):(0,o.createComponentVNode)(2,c.Section,{title:"Abnormalities",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No abnormalities found."})})},b=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,c.Table,{children:m(u,(function(e,n,r){return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Table.Row,{color:"label",children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[e[0],":"]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:!!n&&n[0]+":"})]}),(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,g,{value:t[e[1]],marginBottom:r100)&&"average":"bad")||!!e.status.robotic&&"label",width:"33%",children:e.name}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",q:!0,children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:e.maxHealth,mt:t>0&&"0.5rem",value:e.totalLoss/100,ranges:s,children:[(0,o.createComponentVNode)(2,c.Box,{float:"left",display:"inline",children:[!!e.bruteLoss&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"bone"}),(0,r.round)(e.bruteLoss,0),"\xa0",(0,o.createComponentVNode)(2,c.Tooltip,{position:"top",content:"Brute damage"})]}),!!e.fireLoss&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"fire"}),(0,r.round)(e.fireLoss,0),(0,o.createComponentVNode)(2,c.Tooltip,{position:"top",content:"Burn damage"})]})]}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:(0,r.round)(e.totalLoss,0)})]})}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",verticalAlign:"top",width:"33%",pt:t>0&&"calc(0.5rem + 2px)",children:[(0,o.createComponentVNode)(2,c.Box,{color:"average",display:"inline",children:p([!!e.internalBleeding&&"Internal bleeding",!!e.lungRuptured&&"Ruptured lung",!!e.status.broken&&e.status.broken,f(e.germ_level),!!e.open&&"Open incision"])}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:[p([!!e.status.splinted&&(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Splinted"}),!!e.status.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Robotic"}),!!e.status.dead&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",bold:!0,children:"DEAD"})]),p(e.shrapnel.map((function(e){return e.known?e.name:"Unknown object"})))]})]})]},t)}))]})})},v=function(e){return 0===e.organs.length?(0,o.createComponentVNode)(2,c.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"N/A"})}):(0,o.createComponentVNode)(2,c.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",children:"Damage"}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",children:"Injuries"})]}),e.organs.map((function(e,t){return(0,o.createComponentVNode)(2,c.Table.Row,{textTransform:"capitalize",children:[(0,o.createComponentVNode)(2,c.Table.Cell,{color:(!e.dead?e.germ_level>100&&"average":"bad")||e.robotic>0&&"label",width:"33%",children:e.name}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:e.maxHealth,value:e.damage/100,mt:t>0&&"0.5rem",ranges:s,children:(0,r.round)(e.damage,0)})}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",verticalAlign:"top",width:"33%",pt:t>0&&"calc(0.5rem + 2px)",children:[(0,o.createComponentVNode)(2,c.Box,{color:"average",display:"inline",children:p([f(e.germ_level)])}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:p([1===e.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Robotic"}),2===e.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Assisted"}),!!e.dead&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",bold:!0,children:"DEAD"})])})]})]},t)}))]})})},y=function(){return(0,o.createComponentVNode)(2,c.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotClean=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BotClean=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.locked,u=l.noaccess,s=l.maintpanel,m=l.on,p=l.autopatrol,f=l.canhack,h=l.emagged,C=l.remote_disabled,N=l.painame,b=l.cleanblood;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{title:"General Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",selected:m,disabled:u,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Patrol",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,content:"Auto Patrol",disabled:u,onClick:function(){return i("autopatrol")}})}),!!s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Panel Open!"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety System",children:(0,o.createComponentVNode)(2,a.Box,{color:h?"bad":"good",children:h?"DISABLED!":"Enabled"})}),!!f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hacking",children:(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:h?"Restore Safties":"Hack",disabled:u,color:"bad",onClick:function(){return i("hack")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Access",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:!C,content:"AI Remote Control",disabled:u,onClick:function(){return i("disableremote")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cleaning Settings",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"Clean Blood",disabled:u,onClick:function(){return i("blood")}})}),N&&(0,o.createComponentVNode)(2,a.Section,{title:"pAI",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:N,disabled:u,onClick:function(){return i("ejectpai")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotSecurity=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BotSecurity=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.locked,u=l.noaccess,s=l.maintpanel,m=l.on,p=l.autopatrol,f=l.canhack,h=l.emagged,C=l.remote_disabled,N=l.painame,b=l.check_id,g=l.check_weapons,V=l.check_warrant,v=l.arrest_mode,y=l.arrest_declare;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{title:"General Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",selected:m,disabled:u,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Patrol",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,content:"Auto Patrol",disabled:u,onClick:function(){return i("autopatrol")}})}),!!s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Panel Open!"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety System",children:(0,o.createComponentVNode)(2,a.Box,{color:h?"bad":"good",children:h?"DISABLED!":"Enabled"})}),!!f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hacking",children:(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:h?"Restore Safties":"Hack",disabled:u,color:"bad",onClick:function(){return i("hack")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Access",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:!C,content:"AI Remote Control",disabled:u,onClick:function(){return i("disableremote")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Who To Arrest",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"Unidentifiable Persons",disabled:u,onClick:function(){return i("authid")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:g,content:"Unauthorized Weapons",disabled:u,onClick:function(){return i("authweapon")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:V,content:"Wanted Criminals",disabled:u,onClick:function(){return i("authwarrant")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Arrest Procedure",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:v,content:"Detain Targets Indefinitely",disabled:u,onClick:function(){return i("arrtype")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:y,content:"Announce Arrests On Radio",disabled:u,onClick:function(){return i("arrdeclare")}})]}),N&&(0,o.createComponentVNode)(2,a.Section,{title:"pAI",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:N,disabled:u,onClick:function(){return i("ejectpai")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigCells=void 0;var o=n(0),r=n(4),a=n(2),c=n(1),i=function(e,t){var n=e.cell,r=(0,c.useBackend)(t).act,i=n.cell_id,l=n.occupant,d=n.crimes,u=n.brigged_by,s=n.time_left_seconds,m=n.time_set_seconds,p=n.ref,f="";s>0&&(f+=" BrigCells__listRow--active");return(0,o.createComponentVNode)(2,a.Table.Row,{className:f,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:i}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:l}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:d}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:u}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.TimeDisplay,{totalSeconds:m})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.TimeDisplay,{totalSeconds:s})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{type:"button",onClick:function(){r("release",{ref:p})},children:"Release"})})]})},l=function(e){var t=e.cells;return(0,o.createComponentVNode)(2,a.Table,{className:"BrigCells__list",children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Cell"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Occupant"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Crimes"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Brigged By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Time Brigged For"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Time Left"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Release"})]}),t.map((function(e){return(0,o.createComponentVNode)(2,i,{cell:e},e.ref)}))]})};t.BrigCells=function(e,t){var n=(0,c.useBackend)(t),i=(n.act,n.data.cells);return(0,o.createComponentVNode)(2,r.Window,{theme:"security",resizable:!0,children:(0,o.createComponentVNode)(2,r.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",height:"100%",children:(0,o.createComponentVNode)(2,a.Section,{height:"100%",flexGrow:"1",children:(0,o.createComponentVNode)(2,l,{cells:i})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigTimer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BrigTimer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;l.nameText=l.occupant,l.timing&&(l.prisoner_hasrec?l.nameText=(0,o.createComponentVNode)(2,a.Box,{color:"green",children:l.occupant}):l.nameText=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:l.occupant}));var d="pencil-alt";l.prisoner_name&&(l.prisoner_hasrec||(d="exclamation-triangle"));var u=[],s=0;for(s=0;se.current_positions&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:e.total_positions-e.current_positions})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"0"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{content:"-",disabled:s.cooldown_time||!e.can_close,onClick:function(){return u("make_job_unavailable",{job:e.title})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{content:"+",disabled:s.cooldown_time||!e.can_open,onClick:function(){return u("make_job_available",{job:e.title})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:s.target_dept&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:s.priority_jobs.indexOf(e.title)>-1?"Yes":""})||(0,o.createComponentVNode)(2,a.Button,{content:e.is_priority?"Yes":"No",selected:e.is_priority,disabled:s.cooldown_time||!e.can_prioritize,onClick:function(){return u("prioritize_job",{job:e.title})}})})]},e.title)}))]})})],4):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 2:n=s.authenticated&&s.scan_name?s.modify_name?(0,o.createComponentVNode)(2,i.AccessList,{accesses:s.regions,selectedList:s.selectedAccess,accessMod:function(e){return u("set",{access:e})},grantAll:function(){return u("grant_all")},denyAll:function(){return u("clear_all")},grantDep:function(e){return u("grant_region",{region:e})},denyDep:function(e){return u("deny_region",{region:e})}}):(0,o.createComponentVNode)(2,a.Section,{title:"Card Missing",color:"red",children:"No card to modify."}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 3:n=s.authenticated?s.records.length?(0,o.createComponentVNode)(2,a.Section,{title:"Records",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Delete All Records",disabled:!s.authenticated||0===s.records.length||s.target_dept,onClick:function(){return u("wipe_all_logs")}}),children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Crewman"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Old Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"New Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Authorized By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Time"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Reason"}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Deleted By"})]}),s.records.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.transferee}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.oldvalue}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.newvalue}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.whodidit}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.timestamp}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.reason}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.deletedby})]},e.timestamp)}))]}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:"Delete MY Records",color:"purple",disabled:!s.authenticated||0===s.records.length,onClick:function(){return u("wipe_my_logs")}})})]}):(0,o.createComponentVNode)(2,a.Section,{title:"Records",children:"No records."}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 4:n=s.authenticated&&s.scan_name?(0,o.createComponentVNode)(2,a.Section,{title:"Your Team",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Sec Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Actions"})]}),s.people_dept.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.title}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.crimstat}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.buttontext,disabled:!e.demotable,onClick:function(){return u("remote_demote",{remote_demote:e.name})}})})]},e.title)}))]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;default:n=(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"ERROR: Unknown Mode."})}return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[m,p,n]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CargoConsole=void 0;var o=n(0),r=n(43),a=n(26),c=n(1),i=n(2),l=n(4),d=(n(77),n(19));t.CargoConsole=function(e,t){return(0,o.createComponentVNode)(2,l.Window,{children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,p)]})})};var u=function(e,t){var n=(0,c.useLocalState)(t,"contentsModal",null),r=n[0],a=n[1],l=(0,c.useLocalState)(t,"contentsModalTitle",null),d=l[0],u=l[1];return null!==r&&null!==d?(0,o.createComponentVNode)(2,i.Modal,{maxWidth:"75%",width:window.innerWidth+"px",maxHeight:.75*window.innerHeight+"px",mx:"auto",children:[(0,o.createComponentVNode)(2,i.Box,{width:"100%",bold:!0,children:(0,o.createVNode)(1,"h1",null,[d,(0,o.createTextVNode)(" contents:")],0)}),(0,o.createComponentVNode)(2,i.Box,{children:r.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:["- ",e]},e)}))}),(0,o.createComponentVNode)(2,i.Box,{m:2,children:(0,o.createComponentVNode)(2,i.Button,{content:"Close",onClick:function(){a(null),u(null)}})})]}):void 0},s=function(e,t){var n,r,a=(0,c.useBackend)(t),l=a.act,d=a.data,u=d.is_public,s=d.points,m=d.timeleft,p=d.moving,f=d.at_station;return p||f?!p&&f?(n="Docked at the station",r="Return Shuttle"):p&&(r="In Transit...",n=1!==m?"Shuttle is en route (ETA: "+m+" minutes)":"Shuttle is en route (ETA: "+m+" minute)"):(n="Docked off-station",r="Call Shuttle"),(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Points Available",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Shuttle Status",children:n}),0===u&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,i.Button,{content:r,disabled:p,onClick:function(){return l("moveShuttle")}}),(0,o.createComponentVNode)(2,i.Button,{content:"View Central Command Messages",onClick:function(){return l("showMessages")}})]})]})})},m=function(e,t){var n=(0,c.useBackend)(t),l=n.act,u=n.data,s=u.categories,m=u.supply_packs,p=(0,c.useSharedState)(t,"category","Emergency"),f=p[0],h=p[1],C=(0,c.useSharedState)(t,"search_text",""),N=C[0],b=C[1],g=(0,c.useLocalState)(t,"contentsModal",null),V=(g[0],g[1]),v=(0,c.useLocalState)(t,"contentsModalTitle",null),y=(v[0],v[1]),_=(0,d.createSearch)(N,(function(e){return e.name})),x=(0,r.flow)([(0,a.filter)((function(e){return e.cat===s.filter((function(e){return e.name===f}))[0].category||N})),N&&(0,a.filter)(_),(0,a.sortBy)((function(e){return e.name.toLowerCase()}))])(m),k="Crate Catalogue";return N?k="Results for '"+N+"':":f&&(k="Browsing "+f),(0,o.createComponentVNode)(2,i.Section,{title:k,buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"190px",options:s.map((function(e){return e.name})),selected:f,onSelected:function(e){return h(e)}}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",onInput:function(e,t){return b(t)},mb:1}),(0,o.createComponentVNode)(2,i.Box,{maxHeight:25,overflowY:"auto",overflowX:"hidden",children:(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:x.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{bold:!0,children:[e.name," (",e.cost," Points)"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",pr:1,children:[(0,o.createComponentVNode)(2,i.Button,{content:"Order 1",icon:"shopping-cart",onClick:function(){return l("order",{crate:e.ref,multiple:0})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Order Multiple",icon:"cart-plus",onClick:function(){return l("order",{crate:e.ref,multiple:1})}}),(0,o.createComponentVNode)(2,i.Button,{content:"View Contents",icon:"search",onClick:function(){V(e.contents),y(e.name)}})]})]},e.name)}))})})]})},p=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.requests,d=a.canapprove,u=a.orders;return(0,o.createComponentVNode)(2,i.Section,{title:"Details",children:(0,o.createComponentVNode)(2,i.Box,{maxHeight:15,overflowY:"auto",overflowX:"hidden",children:[(0,o.createComponentVNode)(2,i.Box,{bold:!0,children:"Requests"}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:l.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{children:["- #",e.ordernum,": ",e.supply_type," for ",(0,o.createVNode)(1,"b",null,e.orderedby,0)]}),(0,o.createComponentVNode)(2,i.Box,{italic:!0,children:["Reason: ",e.comment]})]}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",pr:1,children:[(0,o.createComponentVNode)(2,i.Button,{content:"Approve",color:"green",disabled:!d,onClick:function(){return r("approve",{ordernum:e.ordernum})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Deny",color:"red",onClick:function(){return r("deny",{ordernum:e.ordernum})}})]})]},e.ordernum)}))}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,children:"Confirmed Orders"}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{children:["- #",e.ordernum,": ",e.supply_type," for ",(0,o.createVNode)(1,"b",null,e.orderedby,0)]}),(0,o.createComponentVNode)(2,i.Box,{italic:!0,children:["Reason: ",e.comment]})]})},e.ordernum)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(134),i=n(4),l=[1,5,10,20,30,50],d=[1,5,10];t.ChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})})};var u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.amount,u=i.energy,s=i.maxEnergy;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:s,ranges:{good:[.5*s,Infinity],average:[.25*s,.5*s],bad:[-Infinity,.25*s]},children:[u," / ",s," Units"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispense",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",spacing:"1",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",width:"14%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:d===e,content:e,m:"0",width:"100%",onClick:function(){return c("amount",{amount:e})}})},t)}))})})]})})},s=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.chemicals,d=void 0===l?[]:l,u=[],s=0;s<(d.length+1)%3;s++)u.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:i.glass?"Drink Dispenser":"Chemical Dispenser",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px",width:"30%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",overflow:"hidden",textOverflow:"ellipsis",width:"100%",height:"100%",align:"flex-start",content:e.title,onClick:function(){return c("dispense",{reagent:e.id})}})},t)})),u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,u=l.isBeakerLoaded,s=l.beakerCurrentVolume,m=l.beakerMaxVolume,p=l.beakerContents,f=void 0===p?[]:p;return(0,o.createComponentVNode)(2,a.Section,{title:l.glass?"Glass":"Beaker",flex:"content",minHeight:"25%",buttons:(0,o.createComponentVNode)(2,a.Box,{children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mr:2,children:[s," / ",m," units"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject",disabled:!u,onClick:function(){return i("ejectBeaker")}})]}),children:(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:u,beakerContents:f,buttons:function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Isolate",icon:"compress-arrows-alt",onClick:function(){return i("remove",{reagent:e.id,amount:-1})}}),d.map((function(t,n){return(0,o.createComponentVNode)(2,a.Button,{content:t,onClick:function(){return i("remove",{reagent:e.id,amount:t})}},n)})),(0,o.createComponentVNode)(2,a.Button,{content:"ALL",onClick:function(){return i("remove",{reagent:e.id,amount:e.volume})}})],0)}})})}},function(e,t,n){"use strict";e.exports=n(476)()},function(e,t,n){"use strict";var o=n(477);function r(){}function a(){}a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,c){if(c!==o){var i=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw i.name="Invariant Violation",i}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";t.__esModule=!0,t.ChemHeater=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(134),l=n(4);t.ChemHeater=function(e,t){return(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.targetTemp,u=l.targetTempReached,s=l.autoEject,m=l.isActive,p=l.currentTemp,f=l.isBeakerLoaded;return(0,o.createComponentVNode)(2,c.Section,{title:"Settings",flexBasis:"content",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{content:"Auto-eject",icon:s?"toggle-on":"toggle-off",selected:s,onClick:function(){return i("toggle_autoeject")}}),(0,o.createComponentVNode)(2,c.Button,{content:m?"On":"Off",icon:"power-off",selected:m,disabled:!f,onClick:function(){return i("toggle_on")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,c.NumberInput,{width:"65px",unit:"K",step:10,stepPixelSize:3,value:(0,r.round)(d,0),minValue:0,maxValue:1e3,onDrag:function(e,t){return i("adjust_temperature",{target:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Reading",color:u?"good":"average",children:f&&(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:p,format:function(e){return(0,r.toFixed)(e)+" K"}})||"\u2014"})]})})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=l.isBeakerLoaded,u=l.beakerCurrentVolume,s=l.beakerMaxVolume,m=l.beakerContents;return(0,o.createComponentVNode)(2,c.Section,{title:"Beaker",flexGrow:"1",buttons:!!d&&(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{inline:!0,color:"label",mr:2,children:[u," / ",s," units"]}),(0,o.createComponentVNode)(2,c.Button,{icon:"eject",content:"Eject",onClick:function(){return r("eject_beaker")}})]}),children:(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:d,beakerContents:m})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemMaster=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(134),l=n(49),d=[1,5,10],u=["bottle.png","small_bottle.png","wide_bottle.png","round_bottle.png","reagent_bottle.png"];t.ChemMaster=function(e,t){var n=(0,r.useBackend)(t).data,a=n.condi,i=n.beaker,d=n.beaker_reagents,u=void 0===d?[]:d,f=n.buffer_reagents,h=void 0===f?[]:f,N=n.mode;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal),(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s,{beaker:i,beakerReagents:u,bufferNonEmpty:h.length>0}),(0,o.createComponentVNode)(2,m,{mode:N,bufferReagents:h}),(0,o.createComponentVNode)(2,p,{isCondiment:a,bufferNonEmpty:h.length>0}),(0,o.createComponentVNode)(2,C)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t).act,c=e.beaker,u=e.beakerReagents,s=e.bufferNonEmpty;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",flexGrow:"0",flexBasis:"300px",buttons:s?(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"eject",disabled:!c,content:"Eject and Clear Buffer",onClick:function(){return n("eject")}}):(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!c,content:"Eject and Clear Buffer",onClick:function(){return n("eject")}}),children:c?(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:!0,beakerContents:u,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?l.desc:"N/A"}),l.blood_type&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood type",children:l.blood_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood DNA",className:"LabeledList__breakContents",children:l.blood_dna})],4),!i.condi&&(0,o.createComponentVNode)(2,a.Button,{icon:i.printing?"spinner":"print",disabled:i.printing,iconSpin:!!i.printing,ml:"0.5rem",content:"Print",onClick:function(){return c("print",{idx:l.idx,beaker:e.args.beaker})}})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.CloningConsole=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(39),l=n(49),d=n(4),u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=e.args,u=d.activerecord,s=d.realname,m=d.health,p=d.unidentity,f=d.strucenzymes,h=m.split(" - ");return(0,o.createComponentVNode)(2,c.Section,{level:2,m:"-1rem",pb:"1rem",title:"Records of "+s,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:s}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Damage",children:h.length>1?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.oxy,display:"inline",children:h[0]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.toxin,display:"inline",children:h[2]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.brute,display:"inline",children:h[3]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.burn,display:"inline",children:h[1]})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Unknown"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"UI",className:"LabeledList__breakContents",children:p}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"SE",className:"LabeledList__breakContents",children:f}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Disk",children:[(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:!l.disk,icon:"arrow-circle-down",content:"Import",onClick:function(){return r("disk",{option:"load"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI",onClick:function(){return r("disk",{option:"save",savetype:"ui"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI and UE",onClick:function(){return r("disk",{option:"save",savetype:"ue"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export SE",onClick:function(){return r("disk",{option:"save",savetype:"se"})}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,c.Button,{disabled:!l.podready,icon:"user-plus",content:"Clone",onClick:function(){return r("clone",{ref:u})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",content:"Delete",onClick:function(){return r("del_rec")}})]})]})})};t.CloningConsole=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.menu;return(0,l.modalRegisterBodyOverride)("view_rec",u),(0,o.createComponentVNode)(2,d.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,d.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,c.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})]})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data.menu;return(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===i,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===i,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data.menu;return 1===r?n=(0,o.createComponentVNode)(2,p):2===r&&(n=(0,o.createComponentVNode)(2,f)),n},p=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.loading,u=l.scantemp,s=l.occupant,m=l.locked,p=l.can_brainscan,f=l.scan_mode,h=l.numberofpods,C=l.pods,N=l.selected_pod,b=m&&!!s;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Scanner",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline",color:"label",children:"Scanner Lock:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s,selected:b,icon:b?"toggle-on":"toggle-off",content:b?"Engaged":"Disengaged",onClick:function(){return i("lock")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:b||!s,icon:"user-slash",content:"Eject Occupant",onClick:function(){return i("eject")}})],4),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:d?(0,o.createComponentVNode)(2,c.Box,{color:"average",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"spinner",spin:!0}),"\xa0 Scanning..."]}):(0,o.createComponentVNode)(2,c.Box,{color:u.color,children:u.text})}),!!p&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Scan Mode",children:(0,o.createComponentVNode)(2,c.Button,{icon:f?"brain":"male",content:f?"Brain":"Body",onClick:function(){return i("toggle_mode")}})})]}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s||d,icon:"user",content:"Scan Occupant",mt:"0.5rem",mb:"0",onClick:function(){return i("scan")}})]}),(0,o.createComponentVNode)(2,c.Section,{title:"Pods",level:"2",children:h?C.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,c.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,c.Button,{selected:N===e.pod,icon:N===e.pod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return i("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,c.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,c.Box,{color:"label",children:["Pod #",t+1]}),(0,o.createComponentVNode)(2,c.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,c.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"No pods detected. Unable to clone."})})],4)},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data.records;return i.length?(0,o.createComponentVNode)(2,c.Box,{mt:"0.5rem",children:i.map((function(e,t){return(0,o.createComponentVNode)(2,c.Button,{icon:"user",mb:"0.5rem",content:e.realname,onClick:function(){return r("view_rec",{ref:e.record})}},t)}))}):(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},h=function(e,t){var n,r=(0,a.useBackend)(t),i=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,c.Button,{icon:"times-circle",float:"right",onClick:function(){return i("cleartemp")}}),(0,o.createComponentVNode)(2,c.Box,{clear:"both"})]})))}},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.scanner,d=i.numberofpods,u=i.autoallowed,s=i.autoprocess,m=i.disk;return(0,o.createComponentVNode)(2,c.Section,{title:"Status",buttons:(0,o.createFragment)([!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline",color:"label",children:"Auto-processing:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"Enabled":"Disabled",onClick:function(){return r("autoprocess",{on:s?0:1})}})],4),(0,o.createComponentVNode)(2,c.Button,{disabled:!m,icon:"eject",content:"Eject Disk",onClick:function(){return r("disk",{option:"eject"})}})],0),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Scanner",children:l?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Not connected!"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pods",children:d?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:[d," connected"]}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CommunicationsComputer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.CommunicationsComputer=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=!1;d.authenticated?1===d.authenticated?n="Command":2===d.authenticated?n="Captain":3===d.authenticated?(n="CentComm Secure Connection",u=!0):n="ERROR: Report This Bug!":n="Not Logged In";var s="View ("+d.messages.length+")",m=(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Authentication",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Access",children:n})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.authenticated?"sign-out-alt":"id-card",selected:d.authenticated,disabled:d.noauthbutton,content:d.authenticated?"Log Out ("+n+")":"Log In",onClick:function(){return l("auth")}})})})}),!!d.esc_section&&(0,o.createComponentVNode)(2,a.Section,{title:"Escape Shuttle",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[!!d.esc_status&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:d.esc_status}),!!d.esc_callable&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"rocket",content:"Call Shuttle",disabled:!d.authhead,onClick:function(){return l("callshuttle")}})}),!!d.esc_recallable&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Recall Shuttle",disabled:!d.authhead||d.is_ai,onClick:function(){return l("cancelshuttle")}})}),!!d.lastCallLoc&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Last Call/Recall From",children:d.lastCallLoc})]})})],0),p="Make Priority Announcement";d.msg_cooldown>0&&(p+=" ("+d.msg_cooldown+"s)");var f=d.emagged?"Message [UNKNOWN]":"Message CentComm",h="Request Authentication Codes";d.cc_cooldown>0&&(f+=" ("+d.cc_cooldown+"s)",h+=" ("+d.cc_cooldown+"s)");var C,N=d.str_security_level,b=d.levels.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.icon,content:e.name,disabled:!d.authcapt||e.id===d.security_level,onClick:function(){return l("newalertlevel",{level:e.id})}},e.name)})),g=d.stat_display.presets.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.label,selected:e.name===d.stat_display.type,disabled:!d.authhead,onClick:function(){return l("setstat",{statdisp:e.name})}},e.name)})),V=d.stat_display.alerts.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.label,selected:e.alert===d.stat_display.icon,disabled:!d.authhead,onClick:function(){return l("setstat",{statdisp:"alert",alert:e.alert})}},e.alert)}));if(d.current_message_title)C=(0,o.createComponentVNode)(2,a.Section,{title:d.current_message_title,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Return To Message List",disabled:!d.authhead,onClick:function(){return l("messagelist")}}),children:(0,o.createComponentVNode)(2,a.Box,{children:d.current_message})});else{var v=d.messages.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"eye",content:"View",disabled:!d.authhead||d.current_message_title===e.title,onClick:function(){return l("messagelist",{msgid:e.id})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Delete",disabled:!d.authhead,onClick:function(){return l("delmessage",{msgid:e.id})}})]},e.id)}));C=(0,o.createComponentVNode)(2,a.Section,{title:"Messages Received",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back To Main Menu",onClick:function(){return l("main")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:v})})}switch(d.menu_state){case 1:return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[m,(0,o.createComponentVNode)(2,a.Section,{title:"Captain-Only Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Alert",color:d.security_level_color,children:N}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Change Alert",children:b}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Announcement",children:(0,o.createComponentVNode)(2,a.Button,{icon:"bullhorn",content:p,disabled:!d.authcapt||d.msg_cooldown>0,onClick:function(){return l("announce")}})}),!!d.emagged&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transmit",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",color:"red",content:f,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("MessageSyndicate")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",content:"Reset Relays",disabled:!d.authcapt,onClick:function(){return l("RestoreBackup")}})]})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transmit",children:(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",content:f,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("MessageCentcomm")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nuclear Device",children:(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",content:h,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("nukerequest")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Command Staff Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Displays",children:(0,o.createComponentVNode)(2,a.Button,{icon:"tv",content:"Change Status Displays",disabled:!d.authhead,onClick:function(){return l("status")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Messages",children:(0,o.createComponentVNode)(2,a.Button,{icon:"folder-open",content:s,disabled:!d.authhead,onClick:function(){return l("messagelist")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Misc",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",content:"Restart Nano-Mob Hunter GO! Server",disabled:!d.authhead,onClick:function(){return l("RestartNanoMob")}})})]})})]})});case 2:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,(0,o.createComponentVNode)(2,a.Section,{title:"Modify Status Screens",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back To Main Menu",onClick:function(){return l("main")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Presets",children:g}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alerts",children:V}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message Line 1",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.stat_display.line_1,disabled:!d.authhead,onClick:function(){return l("setmsg1")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message Line 2",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.stat_display.line_2,disabled:!d.authhead,onClick:function(){return l("setmsg2")}})})]})})]})});case 3:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,C]})});default:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,"ERRROR. Unknown menu_state: ",d.menu_state,"Please report this to NT Technical Support."]})})}}},function(e,t,n){"use strict";t.__esModule=!0,t.Contractor=void 0;var o=n(0),r=n(1),a=n(2),c=n(184),i=n(4);var l={1:["ACTIVE","good"],2:["COMPLETED","good"],3:["FAILED","bad"]},d=["Recording biometric data...","Analyzing embedded syndicate info...","STATUS CONFIRMED","Contacting Syndicate database...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Response received, ack 4851234...","CONFIRM ACC "+Math.round(2e4*Math.random()),"Setting up private accounts...","CONTRACTOR ACCOUNT CREATED","Searching for available contracts...","Searching for available contracts...","Searching for available contracts...","Searching for available contracts...","CONTRACTS FOUND","WELCOME, AGENT"];t.Contractor=function(e,t){var n,c=(0,r.useBackend)(t),l=c.act,C=c.data;n=C.unauthorized?(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",backgroundColor:"rgba(0, 0, 0, 0.8)",children:(0,o.createComponentVNode)(2,f,{height:"100%",allMessages:["ERROR: UNAUTHORIZED USER"],finishedTimeout:100,onFinished:function(){}})}):C.load_animation_completed?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"content",children:(0,o.createComponentVNode)(2,u)}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"content",mt:"0.5rem",children:(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",overflow:"hidden",children:1===C.page?(0,o.createComponentVNode)(2,m,{height:"100%"}):(0,o.createComponentVNode)(2,p,{height:"100%"})})],4):(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",backgroundColor:"rgba(0, 0, 0, 0.8)",children:(0,o.createComponentVNode)(2,f,{height:"100%",allMessages:d,finishedTimeout:3e3,onFinished:function(){return l("complete_load_animation")}})});var N=(0,r.useLocalState)(t,"viewingPhoto",""),b=N[0];N[1];return(0,o.createComponentVNode)(2,i.Window,{theme:"syndicate",children:[b&&(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,i.Window.Content,{className:"Contractor",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",height:"100%",children:n})})]})};var u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.tc_available,d=i.tc_paid_out,u=i.completed_contracts,s=i.rep;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({title:"Summary",buttons:(0,o.createComponentVNode)(2,a.Box,{verticalAlign:"middle",mt:"0.25rem",children:[s," Rep"]})},e,{children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Box,{flexBasis:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"TC Available",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",children:[l," TC"]}),(0,o.createComponentVNode)(2,a.Button,{disabled:l<=0,content:"Claim",mx:"0.75rem",mb:"0",flexBasis:"content",onClick:function(){return c("claim")}})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"TC Earned",children:[d," TC"]})]})}),(0,o.createComponentVNode)(2,a.Box,{flexBasis:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Contracts Completed",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Box,{height:"20px",lineHeight:"20px",display:"inline-block",children:u})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Contractor Status",verticalAlign:"middle",children:"ACTIVE"})]})})]})})))},s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.page;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Tabs,Object.assign({},e,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===i,onClick:function(){return c("page",{page:1})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"suitcase"}),"Contracts"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===i,onClick:function(){return c("page",{page:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"shopping-cart"}),"Hub"]})]})))},m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,d=n.data,u=d.contracts,s=d.contract_active,m=d.can_extract,p=!!s&&u.filter((function(e){return 1===e.status}))[0],f=p&&p.time_left>0,h=(0,r.useLocalState)(t,"viewingPhoto",""),C=(h[0],h[1]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({title:"Available Contracts",overflow:"auto",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!m||f,icon:"parachute-box",content:["Call Extraction",f&&(0,o.createComponentVNode)(2,c.Countdown,{timeLeft:p.time_left,format:function(e,t){return" ("+t.substr(3)+")"}})],onClick:function(){return i("extract")}})},e,{children:u.slice().sort((function(e,t){return 1===e.status?-1:1===t.status?1:e.status-t.status})).map((function(e){var t;return(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",color:1===e.status&&"good",children:e.target_name}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"content",children:e.has_photo&&(0,o.createComponentVNode)(2,a.Button,{icon:"camera",mb:"-0.5rem",ml:"0.5rem",onClick:function(){return C("target_photo_"+e.uid+".png")}})})]}),className:"Contractor__Contract",buttons:(0,o.createComponentVNode)(2,a.Box,{width:"100%",children:[!!l[e.status]&&(0,o.createComponentVNode)(2,a.Box,{color:l[e.status][1],display:"inline-block",mt:1!==e.status&&"0.125rem",mr:"0.25rem",lineHeight:"20px",children:l[e.status][0]}),1===e.status&&(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"ban",color:"bad",content:"Abort",ml:"0.5rem",onClick:function(){return i("abort")}})]}),children:(0,o.createComponentVNode)(2,a.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"2",mr:"0.5rem",children:[e.fluff_message,!!e.completed_time&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:[(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Icon,{name:"check",mr:"0.5rem"}),"Contract completed at ",e.completed_time]}),!!e.dead_extraction&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",mt:"0.5rem",bold:!0,children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",mr:"0.5rem"}),"Telecrystals reward reduced drastically as the target was dead during extraction."]}),!!e.fail_reason&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Icon,{name:"times",mr:"0.5rem"}),"Contract failed: ",e.fail_reason]})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",flexBasis:"100%",children:[(0,o.createComponentVNode)(2,a.Box,{mb:"0.5rem",color:"label",children:"Extraction Zone:"}),null==(t=e.difficulties)?void 0:t.map((function(t,n){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!!s,content:t.name+" ("+t.reward+" TC)",onClick:function(){return i("activate",{uid:e.uid,difficulty:n+1})}}),(0,o.createVNode)(1,"br")],4)})),!!e.objective&&(0,o.createComponentVNode)(2,a.Box,{color:"white",bold:!0,children:[e.objective.extraction_zone,(0,o.createVNode)(1,"br"),"(",(e.objective.reward_tc||0)+" TC",",\xa0",(e.objective.reward_credits||0)+" Credits",")"]})]})]})},e.uid)}))})))},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.rep,d=i.buyables;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({title:"Available Purchases",overflow:"auto"},e,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:[e.description,(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:l-1&&(0,o.createComponentVNode)(2,a.Box,{as:"span",color:0===e.stock?"bad":"good",ml:"0.5rem",children:[e.stock," in stock"]})]},e.uid)}))})))},f=function(e){var t,n;function r(t){var n;return(n=e.call(this,t)||this).timer=null,n.state={currentIndex:0,currentDisplay:[]},n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var c=r.prototype;return c.tick=function(){var e=this.props,t=this.state;t.currentIndex<=e.allMessages.length?(this.setState((function(e){return{currentIndex:e.currentIndex+1}})),t.currentDisplay.push(e.allMessages[t.currentIndex])):(clearTimeout(this.timer),setTimeout(e.onFinished,e.finishedTimeout))},c.componentDidMount=function(){var e=this,t=this.props.linesPerSecond,n=void 0===t?2.5:t;this.timer=setInterval((function(){return e.tick()}),1e3/n)},c.componentWillUnmount=function(){clearTimeout(this.timer)},c.render=function(){return(0,o.createComponentVNode)(2,a.Box,{m:1,children:this.state.currentDisplay.map((function(e){return(0,o.createFragment)([e,(0,o.createVNode)(1,"br")],0,e)}))})},r}(o.Component),h=function(e,t){var n=(0,r.useLocalState)(t,"viewingPhoto",""),c=n[0],i=n[1];return(0,o.createComponentVNode)(2,a.Modal,{className:"Contractor__photoZoom",children:[(0,o.createComponentVNode)(2,a.Box,{as:"img",src:c}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Close",color:"grey",mt:"1rem",onClick:function(){return i("")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ConveyorSwitch=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ConveyorSwitch=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.slowFactor,u=l.oneWay,s=l.position;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lever position",children:s>0?"forward":s<0?"reverse":"neutral"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allow reverse",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:!u,onClick:function(){return i("toggleOneWay")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slowdown factor",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-double-left",onClick:function(){return i("slowFactor",{value:d-5})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-left",onClick:function(){return i("slowFactor",{value:d-1})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Slider,{width:"100px",mx:"1px",value:d,fillValue:d,minValue:1,maxValue:50,step:1,format:function(e){return e+"x"},onChange:function(e,t){return i("slowFactor",{value:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-right",onClick:function(){return i("slowFactor",{value:d+1})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-double-right",onClick:function(){return i("slowFactor",{value:d+5})}})," "]})]})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CrewMonitor=void 0;var o=n(0),r=n(26),a=n(19),c=n(1),i=n(2),l=n(76),d=n(39),u=n(4),s=function(e,t){return e.dead?"Deceased":parseInt(e.health,10)<=t?"Critical":1===parseInt(e.stat,10)?"Unconscious":"Living"},m=function(e,t){return e.dead?"red":parseInt(e.health,10)<=t?"orange":1===parseInt(e.stat,10)?"blue":"green"};t.CrewMonitor=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data,(0,c.useLocalState)(t,"tabIndex",0)),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,u.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,u.Window.Content,{children:(0,o.createComponentVNode)(2,i.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===a,onClick:function(){return l(0)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"table"})," Data View"]},"DataView"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===a,onClick:function(){return l(1)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"map-marked-alt"})," Map View"]},"MapView")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,p);case 1:return(0,o.createComponentVNode)(2,f);default:return"WE SHOULDN'T BE HERE!"}}(a)]})})})};var p=function(e,t){var n=(0,c.useBackend)(t),u=n.act,p=n.data,f=(0,r.sortBy)((function(e){return e.name}))(p.crewmembers||[]),h=(0,c.useLocalState)(t,"search",""),C=h[0],N=h[1],b=(0,a.createSearch)(C,(function(e){return e.name+"|"+e.assignment+"|"+e.area}));return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by name, assignment or location..",width:"100%",onInput:function(e,t){return N(t)}}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Location"})]}),f.filter(b).map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{bold:!!e.is_command,children:[(0,o.createComponentVNode)(2,l.TableCell,{children:[e.name," (",e.assignment,")"]}),(0,o.createComponentVNode)(2,l.TableCell,{children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:m(e,p.critThreshold),children:s(e,p.critThreshold)}),e.sensor_type>=2?(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:["(",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.oxy,children:e.oxy}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.toxin,children:e.tox}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.burn,children:e.fire}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.brute,children:e.brute}),")"]}):null]}),(0,o.createComponentVNode)(2,l.TableCell,{children:3===e.sensor_type?p.isAI?(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"location-arrow",content:e.area+" ("+e.x+", "+e.y+")",onClick:function(){return u("track",{track:e.ref})}}):e.area+" ("+e.x+", "+e.y+")":"Not Available"})]},e.name)}))]})]})},f=function(e,t){var n=(0,c.useBackend)(t).data,r=(0,c.useLocalState)(t,"zoom",1),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,i.Box,{height:"526px",mb:"0.5rem",overflow:"hidden",children:(0,o.createComponentVNode)(2,i.NanoMap,{onZoom:function(e){return l(e)},children:n.crewmembers.filter((function(e){return 3===e.sensor_type})).map((function(e){return(0,o.createComponentVNode)(2,i.NanoMap.Marker,{x:e.x,y:e.y,zoom:a,icon:"circle",tooltip:e.name+" ("+e.assignment+")",color:m(e,n.critThreshold)},e.ref)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Cryo=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=[{label:"Resp.",type:"oxyLoss"},{label:"Toxin",type:"toxLoss"},{label:"Brute",type:"bruteLoss"},{label:"Burn",type:"fireLoss"}],l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]];t.Cryo=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,d)})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,s=d.isOperating,m=d.hasOccupant,p=d.occupant,f=void 0===p?[]:p,h=d.cellTemperature,C=d.cellTemperatureStatus,N=d.isBeakerLoaded,b=d.auto_eject_healthy,g=d.auto_eject_dead;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",flexGrow:"1",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"user-slash",onClick:function(){return c("ejectOccupant")},disabled:!m,children:"Eject"}),children:m?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Occupant",children:f.name||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:f.health,max:f.maxHealth,value:f.health/f.maxHealth,color:f.health>0?"good":"average",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f.health)})})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[f.stat][0],children:l[f.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f.bodyTemperature)})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),i.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f[e.type]/100,ranges:{bad:[.01,Infinity]},children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f[e.type])})})},e.id)}))]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cell",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("ejectBeaker")},disabled:!N,children:"Eject Beaker"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return c(s?"switchOff":"switchOn")},selected:s,children:s?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",color:C,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:h})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:(0,o.createComponentVNode)(2,u)}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto-eject healthy occupants",children:(0,o.createComponentVNode)(2,a.Button,{icon:b?"toggle-on":"toggle-off",selected:b,onClick:function(){return c(b?"auto_eject_healthy_off":"auto_eject_healthy_on")},children:b?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto-eject dead occupants",children:(0,o.createComponentVNode)(2,a.Button,{icon:g?"toggle-on":"toggle-off",selected:g,onClick:function(){return c(g?"auto_eject_dead_off":"auto_eject_dead_on")},children:g?"On":"Off"})})]})})],4)},u=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),i=c.isBeakerLoaded,l=c.beakerLabel,d=c.beakerVolume;return i?(0,o.createFragment)([l||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No label"}),(0,o.createComponentVNode)(2,a.Box,{color:!d&&"bad",children:d?(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d,format:function(e){return Math.round(e)+" units remaining"}}):"Beaker is empty"})],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded"})}},function(e,t,n){"use strict";t.__esModule=!0,t.DNAModifier=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(49),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["ui","Modify U.I.","dna"],["se","Modify S.E.","dna"],["buffer","Transfer Buffers","syringe"],["rejuvenators","Rejuvenators","flask"]],u=[5,10,20,30,50];t.DNAModifier=function(e,t){var n,a=(0,r.useBackend)(t),l=(a.act,a.data),d=l.irradiating,u=l.dnaBlockSize,p=l.occupant;return t.dnaBlockSize=u,t.isDNAInvalid=!p.isViableSubject||!p.uniqueIdentity||!p.structuralEnzymes,d&&(n=(0,o.createComponentVNode)(2,V,{duration:d})),(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal),n,(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.locked,u=i.hasOccupant,s=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",mr:"0.5rem",children:"Door Lock:"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,selected:d,icon:d?"toggle-on":"toggle-off",content:d?"Engaged":"Disengaged",onClick:function(){return c("toggleLock")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u||d,icon:"user-slash",content:"Eject",onClick:function(){return c("ejectOccupant")}})],4),children:u?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:s.minHealth,max:s.maxHealth,value:s.health/s.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[s.stat][0],children:l[s.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider)]})}),t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 The occupant's DNA structure is ruined beyond recognition, please insert a subject with an intact DNA structure."]}):(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:"0",max:"100",value:s.radiationLevel/100,color:"average"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unique Enzymes",children:i.occupant.uniqueEnzymes?i.occupant.uniqueEnzymes:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 Unknown"]})})]})],0):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Cell unoccupied."})})},m=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data,u=l.selectedMenuKey,s=l.hasOccupant;l.occupant;return s?t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No operation possible on this subject."]})})}):("ui"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,h)],4):"se"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,h)],4):"buffer"===u?n=(0,o.createComponentVNode)(2,C):"rejuvenators"===u&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:u===e[0],onClick:function(){return i("selectMenuKey",{key:e[0]})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:e[2]}),e[1]]},t)}))}),n]})):(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant in DNA modifier."]})})})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.selectedUIBlock,d=i.selectedUISubBlock,u=i.selectedUITarget,s=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Unique Identifier",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:s.uniqueIdentity,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectUIBlock"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"15",stepPixelSize:"20",value:u,format:function(e){return e.toString(16).toUpperCase()},ml:"0",onChange:function(e,t){return c("changeUITarget",{value:t})}})})}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",mt:"0.5rem",onClick:function(){return c("pulseUIRadiation")}})]})},f=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.selectedSEBlock,d=i.selectedSESubBlock,u=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Structural Enzymes",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:u.structuralEnzymes,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectSEBlock"}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",onClick:function(){return c("pulseSERadiation")}})]})},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.radiationIntensity,d=i.radiationDuration;return(0,o.createComponentVNode)(2,a.Section,{title:"Radiation Emitter",level:"2",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Intensity",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"10",stepPixelSize:"20",value:l,popUpPosition:"right",ml:"0",onChange:function(e,t){return c("radiationIntensity",{value:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"20",stepPixelSize:"10",unit:"s",value:d,popUpPosition:"right",ml:"0",onChange:function(e,t){return c("radiationDuration",{value:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Pulse Radiation",tooltip:"Mutates a random block of either the occupant's UI or SE.",tooltipPosition:"top-right",mt:"0.5rem",onClick:function(){return c("pulseRadiation")}})]})},C=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.buffers.map((function(e,t){return(0,o.createComponentVNode)(2,N,{id:t+1,name:"Buffer "+(t+1),buffer:e},t)})));return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Buffers",level:"2",children:c}),(0,o.createComponentVNode)(2,b)],4)},N=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=e.id,d=e.name,u=e.buffer,s=i.isInjectorReady,m=d+(u.data?" - "+u.label:"");return(0,o.createComponentVNode)(2,a.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,a.Section,{title:m,level:"3",mx:"0",lineHeight:"18px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!u.data,icon:"trash",content:"Clear",onClick:function(){return c("bufferOption",{option:"clear",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data,icon:"pen",content:"Rename",onClick:function(){return c("bufferOption",{option:"changeLabel",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data||!i.hasDisk,icon:"save",content:"Export",tooltip:"Exports this buffer to the currently loaded data disk.",tooltipPosition:"bottom-left",onClick:function(){return c("bufferOption",{option:"saveDisk",id:l})}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Write",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I",mb:"0",onClick:function(){return c("bufferOption",{option:"saveUI",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I and U.E.",mb:"0",onClick:function(){return c("bufferOption",{option:"saveUIAndUE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject S.E.",mb:"0",onClick:function(){return c("bufferOption",{option:"saveSE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!i.hasDisk||!i.disk.data,icon:"arrow-circle-down",content:"From Disk",mb:"0",onClick:function(){return c("bufferOption",{option:"loadDisk",id:l})}})]}),!!u.data&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:u.owner||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===u.type?"Unique Identifiers":"Structural Enzymes",!!u.ue&&" and Unique Enzymes"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer to",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Injector",mb:"0",onClick:function(){return c("bufferOption",{option:"createInjector",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Block Injector",mb:"0",onClick:function(){return c("bufferOption",{option:"createInjector",id:l,block:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"user",content:"Subject",mb:"0",onClick:function(){return c("bufferOption",{option:"transfer",id:l})}})]})],4)]}),!u.data&&(0,o.createComponentVNode)(2,a.Box,{color:"label",mt:"0.5rem",children:"This buffer is empty."})]})})},b=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.hasDisk,d=i.disk;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!l||!d.data,icon:"trash",content:"Wipe",onClick:function(){return c("wipeDisk")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return c("ejectDisk")}})],4),children:l?d.data?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Label",children:d.label?d.label:"No label"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:d.owner?d.owner:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===d.type?"Unique Identifiers":"Structural Enzymes",!!d.ue&&" and Unique Enzymes"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Disk is blank."}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"1rem",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"save-o",size:"4"}),(0,o.createVNode)(1,"br"),"No disk inserted."]})})},g=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.isBeakerLoaded,d=i.beakerVolume,s=i.beakerLabel;return(0,o.createComponentVNode)(2,a.Section,{title:"Rejuvenators and Beaker",level:"2",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return c("ejectBeaker")}}),children:l?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inject",children:[u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:e>d,icon:"syringe",content:e,onClick:function(){return c("injectRejuvenators",{amount:e})}},t)})),(0,o.createComponentVNode)(2,a.Button,{disabled:d<=0,icon:"syringe",content:"All",onClick:function(){return c("injectRejuvenators",{amount:d})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:[(0,o.createComponentVNode)(2,a.Box,{mb:"0.5rem",children:s||"No label"}),d?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:[d," unit",1===d?"":"s"," remaining"]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Empty"})]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"25%",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",size:"4"}),(0,o.createVNode)(1,"br"),"No beaker loaded."]})})},V=function(e,t){return(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",size:"5",spin:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h1",null,[(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"}),(0,o.createTextVNode)("\xa0Irradiating occupant\xa0"),(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"})],4)}),(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"h3",null,[(0,o.createTextVNode)("For "),e.duration,(0,o.createTextVNode)(" second"),1===e.duration?"":"s"],0)})]})},v=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.dnaString),l=e.selectedBlock,d=e.selectedSubblock,u=e.blockSize,s=e.action,m=i.split(""),p=[],f=function(e){for(var t=e/u+1,n=[],r=function(r){var i=r+1;n.push((0,o.createComponentVNode)(2,a.Button,{selected:l===t&&d===i,content:m[e+r],mb:"0",onClick:function(){return c(s,{block:t,subblock:i})}}))},i=0;i0?"Yes":"No",selected:l.com>0,onClick:function(){return i("toggle_com")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Security",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.sec===e,content:e,onClick:function(){return i("set_sec",{set_sec:e})}},"sec"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Medical",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.med===e,content:e,onClick:function(){return i("set_med",{set_med:e})}},"med"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Engineering",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.eng===e,content:e,onClick:function(){return i("set_eng",{set_eng:e})}},"eng"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Paranormal",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.par===e,content:e,onClick:function(){return i("set_par",{set_par:e})}},"par"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Janitor",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.jan===e,content:e,onClick:function(){return i("set_jan",{set_jan:e})}},"jan"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cyborg",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.cyb===e,content:e,onClick:function(){return i("set_cyb",{set_cyb:e})}},"cyb"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Slots",children:(0,o.createComponentVNode)(2,a.Box,{color:l.total>l.spawnpoints?"red":"green",children:[l.total," total, versus ",l.spawnpoints," spawnpoints"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispatch",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ambulance",content:"Send ERT",onClick:function(){return i("dispatch_ert")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Electropack=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(4);t.Electropack=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.power,s=d.code,m=d.frequency,p=d.minFrequency,f=d.maxFrequency;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,c.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,onClick:function(){return l("power")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Frequency",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"sync",content:"Reset",onClick:function(){return l("reset",{reset:"freq"})}}),children:(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,unit:"kHz",step:.2,stepPixelSize:6,minValue:p/10,maxValue:f/10,value:m/10,format:function(e){return(0,r.toFixed)(e,1)},width:"80px",onChange:function(e,t){return l("freq",{freq:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Code",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"sync",content:"Reset",onClick:function(){return l("reset",{reset:"code"})}}),children:(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,step:1,stepPixelSize:6,minValue:1,maxValue:100,value:s,width:"80px",onChange:function(e,t){return l("code",{code:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.EvolutionMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.EvolutionMenu=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,theme:"changeling",children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.evo_points,d=i.can_respec;return(0,o.createComponentVNode)(2,a.Section,{title:"Evolution Points",height:5.5,children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.5,color:"label",children:"Points remaining:"}),(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.5,ml:2,bold:!0,color:"#1b945c",children:l}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{ml:2.5,disabled:!d,content:"Readapt",icon:"sync",onClick:function(){return c("readapt")}}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"By transforming a humanoid into a husk, we gain the ability to readapt our chosen evolutions.",tooltipPosition:"bottom",icon:"question-circle"})]})]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.evo_points,d=i.ability_list,u=i.purchsed_abilities,s=i.view_mode;return(0,o.createComponentVNode)(2,a.Section,{title:"Abilities",flexGrow:"1",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:s?"square-o":"check-square-o",selected:!s,content:"Compact",onClick:function(){return c("set_view_mode",{mode:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:s?"check-square-o":"square-o",selected:s,content:"Expanded",onClick:function(){return c("set_view_mode",{mode:1})}})],4),children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{p:.5,mx:-1,className:"candystripe",children:[(0,o.createComponentVNode)(2,a.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{ml:.5,color:"#dedede",children:e.name}),u.includes(e.name)&&(0,o.createComponentVNode)(2,a.Flex.Item,{ml:2,bold:!0,color:"#1b945c",children:"(Purchased)"}),(0,o.createComponentVNode)(2,a.Flex.Item,{mr:3,textAlign:"right",grow:1,children:[(0,o.createComponentVNode)(2,a.Box,{as:"span",color:"label",children:["Cost: "," "]}),(0,o.createComponentVNode)(2,a.Box,{as:"span",bold:!0,color:"#1b945c",children:e.cost})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{textAlign:"right",children:(0,o.createComponentVNode)(2,a.Button,{mr:.5,disabled:e.cost>l||u.includes(e.name),content:"Evolve",onClick:function(){return c("purchase",{power_name:e.name})}})})]}),!!s&&(0,o.createComponentVNode)(2,a.Flex,{color:"#8a8a8a",my:1,ml:1.5,width:"95%",children:e.description+" "+e.helptext})]},t)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.ExosuitFabricator=void 0;var o=n(0),r=n(8),a=n(19),c=n(1),i=n(2),l=n(184),d=n(4);var u={bananium:"clown",tranquillite:"mime"};t.ExosuitFabricator=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data.building);return(0,o.createComponentVNode)(2,d.Window,{children:(0,o.createComponentVNode)(2,d.Window.Content,{className:"Exofab",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",width:"70%",children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"100%",children:(0,o.createComponentVNode)(2,m)}),r&&(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"content",mt:"0.5rem",children:(0,o.createComponentVNode)(2,p)})]})}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"30%",children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"50%",children:(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"50%",mt:"0.5rem",children:(0,o.createComponentVNode)(2,f)})]})})]})})})};var s=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.materials,d=a.capacity,u=Object.values(l).reduce((function(e,t){return e+t}),0);return(0,o.createComponentVNode)(2,i.Section,{title:"Materials",className:"Exofab__materials",buttons:(0,o.createComponentVNode)(2,i.Box,{color:"label",mt:"0.25rem",children:[(u/d*100).toPrecision(3),"% full"]}),children:["$metal","$glass","$silver","$gold","$uranium","$titanium","$plasma","$diamond","$bluespace","$bananium","$tranquillite","$plastic"].map((function(e){return(0,o.createComponentVNode)(2,h,{id:e,bold:"$metal"===e||"$glass"===e,onClick:function(){return r("withdraw",{id:e})}},e)}))})},m=function(e,t){var n=(0,c.useBackend)(t),r=n.act,l=n.data,d=l.curCategory,u=l.categories,s=l.designs,m=l.syncing,p=(0,c.useLocalState)(t,"searchText",""),f=p[0],h=p[1],N=(0,a.createSearch)(f,(function(e){return e.name})),b=s.filter(N);return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__designs",title:(0,o.createComponentVNode)(2,i.Dropdown,{selected:d,options:u,onSelected:function(e){return r("category",{cat:e})},width:"150px"}),height:"100%",buttons:(0,o.createComponentVNode)(2,i.Box,{mt:"-18px",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Queue all",onClick:function(){return r("queueall")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:m,iconSpin:m,icon:"sync-alt",content:m?"Synchronizing...":"Synchronize with R&D servers",onClick:function(){return r("sync")}})]}),children:[(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by name...",mb:"0.5rem",width:"100%",onInput:function(e,t){return h(t)}}),b.map((function(e){return(0,o.createComponentVNode)(2,C,{design:e},e.id)})),0===b.length&&(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No designs found."})]})},p=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data),a=r.building,d=r.buildStart,u=r.buildEnd,s=r.worldTime;return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__building",stretchContents:!0,children:(0,o.createComponentVNode)(2,i.ProgressBar.Countdown,{start:d,current:s,end:u,bold:!0,children:[(0,o.createComponentVNode)(2,i.Box,{float:"left",children:(0,o.createComponentVNode)(2,i.Icon,{name:"cog",spin:!0})}),"Building ",a,"\xa0(",(0,o.createComponentVNode)(2,l.Countdown,{current:s,timeLeft:u-s,format:function(e,t){return t.substr(3)}}),")"]})})},f=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.queue,d=a.processingQueue,u=Object.entries(a.queueDeficit).filter((function(e){return e[1]<0})),s=l.reduce((function(e,t){return e+t.time}),0);return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__queue",title:"Queue",buttons:(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:"Process",onClick:function(){return r("process")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:0===l.length,icon:"eraser",content:"Clear",onClick:function(){return r("unqueueall")}})]}),children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",direction:"column",children:0===l.length?(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"The queue is empty."}):(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--queue",grow:"1",overflow:"auto",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{color:e.notEnough&&"bad",children:[t+1,". ",e.name,t>0&&(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-up",onClick:function(){return r("queueswap",{from:t+1,to:t})}}),t0&&(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--time",basis:"content",shrink:"0",children:[(0,o.createComponentVNode)(2,i.Divider),"Processing time:",(0,o.createComponentVNode)(2,i.Icon,{name:"clock",mx:"0.5rem"}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",bold:!0,children:new Date(s/10*1e3).toISOString().substr(14,5)})]}),Object.keys(u).length>0&&(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--deficit",basis:"content",shrink:"0",children:[(0,o.createComponentVNode)(2,i.Divider),"Lacking materials to complete:",u.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,h,{id:e[0],amount:-e[1],lineDisplay:!0})},e[0])}))]})],0)})})},h=function(e,t){var n=(0,c.useBackend)(t),a=(n.act,n.data),l=e.id,d=e.amount,s=e.lineDisplay,m=e.onClick,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["id","amount","lineDisplay","onClick"]),f=l.replace("$",""),h=a.materials[l]||0,C=d||h;if(!(C<=0&&"metal"!==f&&"glass"!==f)){var N=d&&d>h;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Flex,Object.assign({className:(0,r.classes)(["Exofab__material",s&&"Exofab__material--line"])},p,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"content",children:(0,o.createComponentVNode)(2,i.Button,{onClick:m,children:(0,o.createComponentVNode)(2,i.Box,{as:"img",src:"sheet-"+(u[f]||f)+".png"})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",children:s?(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--amount",color:N&&"bad",children:C.toLocaleString("en-US")}):(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--name",children:f}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--amount",children:[C.toLocaleString("en-US")," cm\xb3 (",Math.round(C/2e3*10)/10," sheets)"]})],4)})]})))}},C=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=e.design;return(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:l.notEnough||a.building,icon:"cog",content:l.name,onClick:function(){return r("build",{id:l.id})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"plus-circle",onClick:function(){return r("queue",{id:l.id})}}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design--cost",children:Object.entries(l.cost).map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,h,{id:e[0],amount:e[1],lineDisplay:!0})},e[0])}))}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design--time",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"clock"}),l.time>0?(0,o.createFragment)([l.time/10,(0,o.createTextVNode)(" seconds")],0):"Instant"]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ExternalAirlockController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ExternalAirlockController=function(e,t){var n,i,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.chamber_pressure,m=(u.exterior_status,u.interior_status),p=u.processing;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Chamber Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:(n=s,i="good",n<80?i="bad":n<95||n>110?i="average":n>120&&(i="bad"),i),value:s,minValue:0,maxValue:1013,children:[s," kPa"]})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Exterior",icon:"arrow-circle-left",disabled:p,onClick:function(){return d("cycle_ext")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Interior",icon:"arrow-circle-right",disabled:p,onClick:function(){return d("cycle_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Force Exterior Door",icon:"exclamation-triangle",color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_ext")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Force Interior Door",icon:"exclamation-triangle",color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Abort",icon:"ban",color:"red",disabled:!p,onClick:function(){return d("abort")}})})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FaxMachine=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.FaxMachine=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.scan_name?"eject":"id-card",selected:l.scan_name,content:l.scan_name?l.scan_name:"-----",tooltip:l.scan_name?"Eject ID":"Insert ID",onClick:function(){return i("scan")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Authorize",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.authenticated?"sign-out-alt":"id-card",selected:l.authenticated,disabled:l.nologin,content:l.realauth?"Log Out":"Log In",onClick:function(){return i("auth")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Fax Menu",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:l.network}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Document",children:[(0,o.createComponentVNode)(2,a.Button,{icon:l.paper?"eject":"paperclip",disabled:!l.authenticated&&!l.paper,content:l.paper?l.paper:"-----",onClick:function(){return i("paper")}}),!!l.paper&&(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:"Rename",onClick:function(){return i("rename")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sending To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:l.destination?l.destination:"-----",disabled:!l.authenticated,onClick:function(){return i("dept")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Action",children:(0,o.createComponentVNode)(2,a.Button,{icon:"envelope",content:l.sendError?l.sendError:"Send",disabled:!l.paper||!l.destination||!l.authenticated||l.sendError,onClick:function(){return i("send")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FloorPainter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data,e.image),c=e.isSelected,i=e.onSelect;return(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+a,style:{"border-style":c?"solid":"none","border-width":"2px","border-color":"orange",padding:c?"2px":"4px"},onClick:i})};t.FloorPainter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.availableStyles,s=d.selectedStyle,m=d.selectedDir,p=d.directionsPreview,f=d.allStylesPreview;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Decal setup",children:[(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-left",onClick:function(){return l("cycle_style",{offset:-1})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Dropdown,{options:u,selected:s,width:"150px",height:"20px",ml:"2px",mr:"2px",nochevron:"true",onSelected:function(e){return l("select_style",{style:e})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-right",onClick:function(){return l("cycle_style",{offset:1})}})})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"5px",mb:"5px",children:(0,o.createComponentVNode)(2,a.Flex,{overflowY:"auto",maxHeight:"220px",wrap:"wrap",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,i,{image:f[e],isSelected:s===e,onSelect:function(){return l("select_style",{style:e})}})},"{style}")}))})}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Direction",children:(0,o.createComponentVNode)(2,a.Table,{style:{display:"inline"},children:["north","","south"].map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[e+"west",e,e+"east"].map((function(e){return(0,o.createComponentVNode)(2,a.Table.Cell,{style:{"vertical-align":"middle","text-align":"center"},children:""===e?(0,o.createComponentVNode)(2,a.Icon,{name:"arrows-alt",size:3}):(0,o.createComponentVNode)(2,i,{image:p[e],isSelected:e===m,onSelect:function(){return l("select_direction",{direction:e})}})},e)}))},e)}))})})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GPS=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e){return e?"("+e.join(", ")+")":"ERROR"};t.GPS=function(e,t){var n=(0,r.useBackend)(t).data,i=n.emped,m=n.active,p=n.area,f=n.position,h=n.saved;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",height:"100%",children:i?(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"0",children:(0,o.createComponentVNode)(2,l,{emp:!0})}):(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,d)}),m?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Flex.Item,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,u,{area:p,position:f})}),h&&(0,o.createComponentVNode)(2,a.Flex.Item,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,u,{title:"Saved Position",position:h})}),(0,o.createComponentVNode)(2,a.Flex.Item,{mt:"0.5rem",grow:"1",basis:"0",children:(0,o.createComponentVNode)(2,s,{height:"100%"})})],0):(0,o.createComponentVNode)(2,l)],0)})})})};var l=function(e,t){var n=e.emp;return(0,o.createComponentVNode)(2,a.Section,{mt:"0.5rem",width:"100%",height:"100%",stretchContents:!0,children:(0,o.createComponentVNode)(2,a.Box,{width:"100%",height:"100%",color:"label",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:n?"ban":"power-off",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),n?"ERROR: Device temporarily lost signal.":"Device is disabled."]})})})})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.active,d=i.tag,u=i.same_z,s=(0,r.useLocalState)(t,"newTag",d),m=s[0],p=s[1];return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",buttons:(0,o.createComponentVNode)(2,a.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return c("toggle")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tag",children:[(0,o.createComponentVNode)(2,a.Input,{width:"5rem",value:d,onEnter:function(){return c("tag",{newtag:m})},onInput:function(e,t){return p(t)}}),(0,o.createComponentVNode)(2,a.Button,{disabled:d===m,width:"20px",mb:"0",ml:"0.25rem",onClick:function(){return c("tag",{newtag:m})},children:(0,o.createComponentVNode)(2,a.Icon,{name:"pen"})})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,a.Button,{selected:!u,icon:u?"compress":"expand",content:u?"Local Sector":"Global",onClick:function(){return c("same_z")}})})]})})},u=function(e,t){var n=e.title,r=e.area,c=e.position;return(0,o.createComponentVNode)(2,a.Section,{title:n||"Position",children:(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.5rem",children:[r&&(0,o.createFragment)([r,(0,o.createVNode)(1,"br")],0),i(c)]})})},s=function(e,t){var n=(0,r.useBackend)(t).data,c=n.position,l=n.signals;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({title:"Signals",overflow:"auto"},e,{children:(0,o.createComponentVNode)(2,a.Table,{children:l.map((function(e){return Object.assign({},e,{},function(e,t){if(e&&t){if(e[2]!==t[2])return null;var n,o=Math.atan2(t[1]-e[1],t[0]-e[0]),r=Math.sqrt(Math.pow(t[1]-e[1],2)+Math.pow(t[0]-e[0],2));return{angle:(n=o,n*(180/Math.PI)),distance:r}}}(c,e.position))})).map((function(e,t){return(0,o.createComponentVNode)(2,a.Table.Row,{backgroundColor:t%2==0&&"rgba(255, 255, 255, 0.05)",children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"30%",verticalAlign:"middle",color:"label",p:"0.25rem",bold:!0,children:e.tag}),(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"middle",color:"grey",children:e.area}),(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"middle",collapsing:!0,children:e.distance!==undefined&&(0,o.createComponentVNode)(2,a.Box,{opacity:Math.max(1-Math.min(e.distance,100)/100,.5),children:[(0,o.createComponentVNode)(2,a.Icon,{name:e.distance>0?"arrow-right":"circle",rotation:-e.angle}),"\xa0",Math.floor(e.distance)+"m"]})}),(0,o.createComponentVNode)(2,a.Table.Cell,{verticalAlign:"middle",pr:"0.25rem",collapsing:!0,children:i(e.position)})]},t)}))})})))}},function(e,t,n){"use strict";t.__esModule=!0,t.GenericCrewManifest=void 0;var o=n(0),r=n(2),a=n(4),c=n(135);t.GenericCrewManifest=function(e,t){return(0,o.createComponentVNode)(2,a.Window,{resizable:!0,theme:"nologo",children:(0,o.createComponentVNode)(2,a.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,r.Section,{noTopPadding:!0,children:(0,o.createComponentVNode)(2,c.CrewManifest)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GhostHudPanel=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.GhostHudPanel=function(e,t){var n=(0,r.useBackend)(t).data,l=n.security,d=n.medical,u=n.diagnostic,s=n.ahud;return(0,o.createComponentVNode)(2,c.Window,{theme:"nologo",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,i,{label:"Medical",type:"medical",is_active:d}),(0,o.createComponentVNode)(2,i,{label:"Security",type:"security",is_active:l}),(0,o.createComponentVNode)(2,i,{label:"Diagnostic",type:"diagnostic",is_active:u}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,i,{label:"Antag HUD",is_active:s,act_on:"ahud_on",act_off:"ahud_off"})]})})})};var i=function(e,t){var n=(0,r.useBackend)(t).act,c=e.label,i=e.type,l=void 0===i?null:i,d=e.is_active,u=e.act_on,s=void 0===u?"hud_on":u,m=e.act_off,p=void 0===m?"hud_off":m;return(0,o.createComponentVNode)(2,a.Flex,{pt:.3,color:"label",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{pl:.5,align:"center",width:"80%",children:c}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{mr:.6,content:d?"On":"Off",icon:d?"toggle-on":"toggle-off",selected:d,onClick:function(){return n(d?p:s,{hud_type:l})}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.GravityGen=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.GravityGen=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=d.charging_state,s=d.charge_count,m=d.breaker,p=d.ext_power;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[function(e){if(e>0)return(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,p:1.5,children:[(0,o.createVNode)(1,"b",null,"WARNING:",16)," Radiation Detected!"]})}(u),(0,o.createComponentVNode)(2,a.Section,{title:"Generator Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"Online":"Offline",color:m?"green":"red",px:1.5,onClick:function(){return l("breaker")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Status",color:p?"good":"bad",children:(n=u,n>0?(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"average",children:["[ ",1===n?"Charging":"Discharging"," ]"]}):(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:p?"good":"bad",children:["[ ",p?"Powered":"Unpowered"," ]"]}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:s/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GuestPass=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(78);t.GuestPass=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{icon:"id-card",selected:!d.showlogs,onClick:function(){return l("mode",{mode:0})},children:"Issue Pass"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{icon:"scroll",selected:d.showlogs,onClick:function(){return l("mode",{mode:1})},children:["Records (",d.issue_log.length,")"]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.scan_name?"eject":"id-card",selected:d.scan_name,content:d.scan_name?d.scan_name:"-----",tooltip:d.scan_name?"Eject ID":"Insert ID",onClick:function(){return l("scan")}})})})}),!d.showlogs&&(0,o.createComponentVNode)(2,a.Section,{title:"Issue Guest Pass",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Issue To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.giv_name?d.giv_name:"-----",disabled:!d.scan_name,onClick:function(){return l("giv_name")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reason",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.reason?d.reason:"-----",disabled:!d.scan_name,onClick:function(){return l("reason")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.duration?d.duration:"-----",disabled:!d.scan_name,onClick:function(){return l("duration")}})})]}),!!d.scan_name&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.AccessList,{grantableList:d.grantableList,accesses:d.regions,selectedList:d.selectedAccess,accessMod:function(e){return l("access",{access:e})},grantAll:function(){return l("grant_all")},denyAll:function(){return l("clear_all")},grantDep:function(e){return l("grant_region",{region:e})},denyDep:function(e){return l("deny_region",{region:e})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"id-card",content:d.printmsg,disabled:!d.canprint,onClick:function(){return l("issue")}})],4)]}),!!d.showlogs&&(0,o.createComponentVNode)(2,a.Section,{title:"Issuance Log",children:!!d.issue_log.length&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:d.issue_log.map((function(e,t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:e},t)}))}),(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print",disabled:!d.scan_name,onClick:function(){return l("print")}})],4)||(0,o.createComponentVNode)(2,a.Box,{children:"None."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.HandheldChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=[1,5,10,20,30,50];t.HandheldChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.amount,u=l.energy,s=l.maxEnergy,m=l.mode;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:s,ranges:{good:[.5*s,Infinity],average:[.25*s,.5*s],bad:[-Infinity,.25*s]},children:[u," / ",s," Units"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Amount",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",spacing:"1",children:i.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",width:"14%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:d===e,content:e,m:"0",width:"100%",onClick:function(){return c("amount",{amount:e})}})},t)}))})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mode",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",justify:"space-between",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"dispense"===m,content:"Dispense",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"dispense"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"remove"===m,content:"Remove",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"remove"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"isolate"===m,content:"Isolate",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"isolate"})}})]})})]})})},d=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.chemicals,d=void 0===l?[]:l,u=i.current_reagent,s=[],m=0;m<(d.length+1)%3;m++)s.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:i.glass?"Drink Selector":"Chemical Selector",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px",width:"30%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",overflow:"hidden",textOverflow:"ellipsis",selected:u===e.id,width:"100%",height:"100%",align:"flex-start",content:e.title,onClick:function(){return c("dispense",{reagent:e.id})}})},t)})),s.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Instrument=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(4);t.Instrument=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,s)]})]})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act;if(n.data.help)return(0,o.createComponentVNode)(2,c.Modal,{maxWidth:"75%",height:.75*window.innerHeight+"px",mx:"auto",py:"0",px:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{height:"100%",title:"Help",level:"2",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Box,{px:"0.5rem",mt:"-0.5rem",children:[(0,o.createVNode)(1,"h1",null,"Making a Song",16),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Lines are a series of chords, separated by commas\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(,)"}),(0,o.createTextVNode)(", each with notes seperated by hyphens\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(-)"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Every note in a chord will play together, with the chord timed by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo"}),(0,o.createTextVNode)(" as defined above.")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Notes are played by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"names of the note"}),(0,o.createTextVNode)(", and optionally, the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(", and/or the "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave number"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("By default, every note is\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"natural"}),(0,o.createTextVNode)(" and in\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave 3"}),(0,o.createTextVNode)(". Defining a different state for either is remembered for each "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"note"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Example:"}),(0,o.createTextVNode)("\xa0"),(0,o.createVNode)(1,"i",null,"C,D,E,F,G,A,B",16),(0,o.createTextVNode)(" will play a\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"C"}),(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"major"}),(0,o.createTextVNode)(" scale.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createTextVNode)("After a note has an\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(" or\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave"}),(0,o.createTextVNode)(" placed, it will be remembered:\xa0"),(0,o.createVNode)(1,"i",null,"C,C4,C#,C3",16),(0,o.createTextVNode)(" is "),(0,o.createVNode)(1,"i",null,"C3,C4,C4#,C3#",16)],4)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Chords"}),(0,o.createTextVNode)("\xa0can be played simply by seperating each note with a hyphen: "),(0,o.createVNode)(1,"i",null,"A-C#,Cn-E,E-G#,Gn-B",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("A "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"pause"}),(0,o.createTextVNode)("\xa0may be denoted by an empty chord: "),(0,o.createVNode)(1,"i",null,"C,E,,C,G",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("To make a chord be a different time, end it with /x, where the chord length will be length defined by\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo / x"}),(0,o.createTextVNode)(",\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"eg:"}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"i",null,"C,G/2,E/4",16),(0,o.createTextVNode)(".")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Combined, an example line is: "),(0,o.createVNode)(1,"i",null,"E-E4/4,F#/2,G#/8,B/8,E3-E4/4",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,"Lines may be up to 300 characters.",16),(0,o.createVNode)(1,"li",null,"A song may only contain up to 1,000 lines.",16)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Lines are a series of chords, separated by commas\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(,)"}),(0,o.createTextVNode)(", each with notes seperated by hyphens\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(-)"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Every note in a chord will play together, with the chord timed by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo"}),(0,o.createTextVNode)(" as defined above.")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Notes are played by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"names of the note"}),(0,o.createTextVNode)(", and optionally, the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(", and/or the "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave number"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("By default, every note is\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"natural"}),(0,o.createTextVNode)(" and in\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave 3"}),(0,o.createTextVNode)(". Defining a different state for either is remembered for each "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"note"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Example:"}),(0,o.createTextVNode)("\xa0"),(0,o.createVNode)(1,"i",null,"C,D,E,F,G,A,B",16),(0,o.createTextVNode)(" will play a\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"C"}),(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"major"}),(0,o.createTextVNode)(" scale.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createTextVNode)("After a note has an\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(" or\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave"}),(0,o.createTextVNode)(" placed, it will be remembered:\xa0"),(0,o.createVNode)(1,"i",null,"C,C4,C#,C3",16),(0,o.createTextVNode)(" is "),(0,o.createVNode)(1,"i",null,"C3,C4,C4#,C3#",16)],4)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Chords"}),(0,o.createTextVNode)("\xa0can be played simply by seperating each note with a hyphen: "),(0,o.createVNode)(1,"i",null,"A-C#,Cn-E,E-G#,Gn-B",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("A "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"pause"}),(0,o.createTextVNode)("\xa0may be denoted by an empty chord: "),(0,o.createVNode)(1,"i",null,"C,E,,C,G",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("To make a chord be a different time, end it with /x, where the chord length will be length defined by\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo / x"}),(0,o.createTextVNode)(",\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"eg:"}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"i",null,"C,G/2,E/4",16),(0,o.createTextVNode)(".")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Combined, an example line is: "),(0,o.createVNode)(1,"i",null,"E-E4/4,F#/2,G#/8,B/8,E3-E4/4",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,"Lines may be up to 300 characters.",16),(0,o.createVNode)(1,"li",null,"A song may only contain up to 1,000 lines.",16)],4)],4),(0,o.createVNode)(1,"h1",null,"Instrument Advanced Settings",16),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Type:"}),(0,o.createTextVNode)("\xa0Whether the instrument is legacy or synthesized."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Legacy instruments have a collection of sounds that are selectively used depending on the note to play."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Synthesized instruments use a base sound and change its pitch to match the note to play.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Current:"}),(0,o.createTextVNode)("\xa0Which instrument sample to play. Some instruments can be tuned to play different samples. Experiment!")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Note Shift/Note Transpose:"}),(0,o.createTextVNode)("\xa0The pitch to apply to all notes of the song.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Sustain Mode:"}),(0,o.createTextVNode)("\xa0How a played note fades out."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Linear sustain means a note will fade out at a constant rate."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Exponential sustain means a note will fade out at an exponential rate, sounding smoother.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Volume Dropoff Threshold:"}),(0,o.createTextVNode)("\xa0The volume threshold at which a note is fully stopped.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Sustain indefinitely last held note:"}),(0,o.createTextVNode)("\xa0Whether the last note should be sustained indefinitely.")],4)],4),(0,o.createComponentVNode)(2,c.Button,{color:"grey",content:"Close",onClick:function(){return r("help")}})]})})})},d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.lines,s=l.playing,m=l.repeat,p=l.maxRepeats,f=l.tempo,h=l.minTempo,C=l.maxTempo,N=l.tickLag,b=l.volume,g=l.minVolume,V=l.maxVolume,v=l.ready;return(0,o.createComponentVNode)(2,c.Section,{title:"Instrument",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"info",content:"Help",onClick:function(){return i("help")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"file",content:"New",onClick:function(){return i("newsong")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"upload",content:"Import",onClick:function(){return i("import")}})],4),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Playback",children:[(0,o.createComponentVNode)(2,c.Button,{selected:s,disabled:0===d.length||m<0,icon:"play",content:"Play",onClick:function(){return i("play")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s,icon:"stop",content:"Stop",onClick:function(){return i("stop")}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Repeat",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:"0",maxValue:p,value:m,stepPixelSize:"59",onChange:function(e,t){return i("repeat",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Tempo",children:(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Button,{disabled:f>=C,content:"-",as:"span",mr:"0.5rem",onClick:function(){return i("tempo",{"new":f+N})}}),(0,r.round)(600/f)," BPM",(0,o.createComponentVNode)(2,c.Button,{disabled:f<=h,content:"+",as:"span",ml:"0.5rem",onClick:function(){return i("tempo",{"new":f-N})}})]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:g,maxValue:V,value:b,stepPixelSize:"6",onDrag:function(e,t){return i("setvolume",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:v?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Ready"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Instrument Definition Error!"})})]}),(0,o.createComponentVNode)(2,u)]})},u=function(e,t){var n,i,l=(0,a.useBackend)(t),d=l.act,u=l.data,s=u.allowedInstrumentNames,m=u.instrumentLoaded,p=u.instrument,f=u.canNoteShift,h=u.noteShift,C=u.noteShiftMin,N=u.noteShiftMax,b=u.sustainMode,g=u.sustainLinearDuration,V=u.sustainExponentialDropoff,v=u.legacy,y=u.sustainDropoffVolume,_=u.sustainHeldNote;return 1===b?(n="Linear",i=(0,o.createComponentVNode)(2,c.Slider,{minValue:"0.1",maxValue:"5",value:g,step:"0.5",stepPixelSize:"85",format:function(e){return(0,r.round)(100*e)/100+" seconds"},onChange:function(e,t){return d("setlinearfalloff",{"new":t/10})}})):2===b&&(n="Exponential",i=(0,o.createComponentVNode)(2,c.Slider,{minValue:"1.025",maxValue:"10",value:V,step:"0.01",format:function(e){return(0,r.round)(1e3*e)/1e3+"% per decisecond"},onChange:function(e,t){return d("setexpfalloff",{"new":t})}})),s.sort(),(0,o.createComponentVNode)(2,c.Box,{my:-1,children:(0,o.createComponentVNode)(2,c.Collapsible,{mt:"1rem",mb:"0",title:"Advanced",children:(0,o.createComponentVNode)(2,c.Section,{mt:-1,children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Type",children:v?"Legacy":"Synthesized"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Current",children:m?(0,o.createComponentVNode)(2,c.Dropdown,{options:s,selected:p,width:"40%",onSelected:function(e){return d("switchinstrument",{name:e})}}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"None!"})}),!(v||!f)&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Note Shift/Note Transpose",children:(0,o.createComponentVNode)(2,c.Slider,{minValue:C,maxValue:N,value:h,stepPixelSize:"2",format:function(e){return e+" keys / "+(0,r.round)(e/12*100)/100+" octaves"},onChange:function(e,t){return d("setnoteshift",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Sustain Mode",children:[(0,o.createComponentVNode)(2,c.Dropdown,{options:["Linear","Exponential"],selected:n,onSelected:function(e){return d("setsustainmode",{"new":e})}}),i]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume Dropoff Threshold",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:"0.01",maxValue:"100",value:y,stepPixelSize:"6",onChange:function(e,t){return d("setdropoffvolume",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Sustain indefinitely last held note",children:(0,o.createComponentVNode)(2,c.Button,{selected:_,icon:_?"toggle-on":"toggle-off",content:_?"Yes":"No",onClick:function(){return d("togglesustainhold")}})})],4)]}),(0,o.createComponentVNode)(2,c.Button,{icon:"redo",content:"Reset to Default",mt:"0.5rem",onClick:function(){return d("reset")}})]})})})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.playing,d=i.lines,u=i.editing;return(0,o.createComponentVNode)(2,c.Section,{title:"Editor",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:!u||l,icon:"plus",content:"Add Line",onClick:function(){return r("newline",{line:d.length+1})}}),(0,o.createComponentVNode)(2,c.Button,{selected:!u,icon:u?"chevron-up":"chevron-down",onClick:function(){return r("edit")}})],4),children:!!u&&(d.length>0?(0,o.createComponentVNode)(2,c.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t+1,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:"pen",onClick:function(){return r("modifyline",{line:t+1})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:"trash",onClick:function(){return r("deleteline",{line:t+1})}})],4),children:e},t)}))}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Song is empty."}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.KeycardAuth=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.KeycardAuth=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=(0,o.createComponentVNode)(2,a.Section,{title:"Keycard Authentication Device",children:(0,o.createComponentVNode)(2,a.Box,{children:"This device is used to trigger certain high security events. It requires the simultaneous swipe of two high-level ID cards."})});if(l.swiping||l.busy){var u=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Waiting for YOU to swipe your ID..."});return l.hasSwiped||l.ertreason||"Emergency Response Team"!==l.event?l.hasConfirm?u=(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Request Confirmed!"}):l.isRemote?u=(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Swipe your card to CONFIRM the remote request."}):l.hasSwiped&&(u=(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Waiting for second person to confirm..."})):u=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Fill out the reason for your ERT request."}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[d,"Emergency Response Team"===l.event&&(0,o.createComponentVNode)(2,a.Section,{title:"Reason for ERT Call",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{color:l.ertreason?"":"red",icon:l.ertreason?"check":"pencil-alt",content:l.ertreason?l.ertreason:"-----",disabled:l.busy,onClick:function(){return i("ert")}})})}),(0,o.createComponentVNode)(2,a.Section,{title:l.event,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back",disabled:l.busy||l.hasConfirm,onClick:function(){return i("reset")}}),children:u})]})})}return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[d,(0,o.createComponentVNode)(2,a.Section,{title:"Choose Action",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Red Alert",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!l.redAvailable,onClick:function(){return i("triggerevent",{triggerevent:"Red Alert"})},content:"Red Alert"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ERT",children:(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",onClick:function(){return i("triggerevent",{triggerevent:"Emergency Response Team"})},content:"Call ERT"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Maint Access",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"door-open",onClick:function(){return i("triggerevent",{triggerevent:"Grant Emergency Maintenance Access"})},content:"Grant"}),(0,o.createComponentVNode)(2,a.Button,{icon:"door-closed",onClick:function(){return i("triggerevent",{triggerevent:"Revoke Emergency Maintenance Access"})},content:"Revoke"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Station-Wide Access",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"door-open",onClick:function(){return i("triggerevent",{triggerevent:"Activate Station-Wide Emergency Access"})},content:"Grant"}),(0,o.createComponentVNode)(2,a.Button,{icon:"door-closed",onClick:function(){return i("triggerevent",{triggerevent:"Deactivate Station-Wide Emergency Access"})},content:"Revoke"})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LaborClaimConsole=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);t.LaborClaimConsole=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.can_go_home,d=i.emagged,u=i.id_inserted,s=i.id_name,m=i.id_points,p=i.id_goal,f=i.unclaimed_points,h=d?0:1,C=d?"ERR0R":l?"Completed!":"Insufficient";return(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:!!u&&(0,o.createComponentVNode)(2,c.ProgressBar,{value:m/p,ranges:{good:[h,Infinity],bad:[-Infinity,h]},children:m+" / "+p+" "+C})||!!d&&"ERR0R COMPLETED?!@"||"No ID inserted"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Shuttle controls",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:"Move shuttle",disabled:!l,onClick:function(){return r("move_shuttle")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Unclaimed points",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:"Claim points ("+f+")",disabled:!u||!f,onClick:function(){return r("claim_points")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Inserted ID",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:u?s:"-------------",onClick:function(){return r("handle_id")}})})]})})},d=function(e,t){var n=(0,a.useBackend)(t).data.ores;return(0,o.createComponentVNode)(2,c.Section,{title:"Material values",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Material"}),(0,o.createComponentVNode)(2,c.Table.Cell,{collapsing:!0,textAlign:"right",children:"Value"})]}),n.map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,r.toTitleCase)(e.ore)}),(0,o.createComponentVNode)(2,c.Table.Cell,{collapsing:!0,textAlign:"right",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",inline:!0,children:e.value})})]},e.ore)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LawManager=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.LawManager=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.isAdmin,m=u.isSlaved,p=u.isMalf,f=u.isAIMalf,h=u.view;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!(!s||!m)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["This unit is slaved to ",m,"."]}),!(!p&&!f)&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Law Management",selected:0===h,onClick:function(){return d("set_view",{set_view:0})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Lawsets",selected:1===h,onClick:function(){return d("set_view",{set_view:1})}})]}),!(0!==h)&&(0,o.createComponentVNode)(2,i),!(1!==h)&&(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.has_zeroth_laws,u=i.zeroth_laws,s=i.has_ion_laws,m=i.ion_laws,p=i.ion_law_nr,f=i.has_inherent_laws,h=i.inherent_laws,C=i.has_supplied_laws,N=i.supplied_laws,b=i.channels,g=i.channel,V=i.isMalf,v=i.isAdmin,y=i.zeroth_law,_=i.ion_law,x=i.inherent_law,k=i.supplied_law,L=i.supplied_law_position;return(0,o.createFragment)([!!l&&(0,o.createComponentVNode)(2,d,{title:"ERR_NULL_VALUE",laws:u,ctx:t}),!!s&&(0,o.createComponentVNode)(2,d,{title:p,laws:m,ctx:t}),!!f&&(0,o.createComponentVNode)(2,d,{title:"Inherent",laws:h,ctx:t}),!!C&&(0,o.createComponentVNode)(2,d,{title:"Supplied",laws:N,ctx:t}),(0,o.createComponentVNode)(2,a.Section,{title:"Statement Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Statement Channel",children:b.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.channel,selected:e.channel===g,onClick:function(){return c("law_channel",{law_channel:e.channel})}},e.channel)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State Laws",children:(0,o.createComponentVNode)(2,a.Button,{content:"State Laws",onClick:function(){return c("state_laws")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Law Notification",children:(0,o.createComponentVNode)(2,a.Button,{content:"Notify",onClick:function(){return c("notify_laws")}})})]})}),!!V&&(0,o.createComponentVNode)(2,a.Section,{title:"Add Laws",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"60%",children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"20%",children:"Actions"})]}),!(!v||l)&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Zero"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:y}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_zeroth_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_zeroth_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Ion"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:_}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_ion_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_ion_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Inherent"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:x}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_inherent_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_inherent_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Supplied"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:k}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:L,onClick:function(){return c("change_supplied_law_position")}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_supplied_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_supplied_law")}})]})]})]})})],0)},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.law_sets;return(0,o.createComponentVNode)(2,a.Box,{children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name+" - "+e.header,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Load Laws",icon:"download",onClick:function(){return c("transfer_laws",{transfer_laws:e.ref})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.laws.has_ion_laws>0&&e.laws.ion_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_zeroth_laws>0&&e.laws.zeroth_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_inherent_laws>0&&e.laws.inherent_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_supplied_laws>0&&e.laws.inherent_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)}))]})},e.name)}))})},d=function(e,t){var n=(0,r.useBackend)(e.ctx),c=n.act,i=n.data.isMalf;return(0,o.createComponentVNode)(2,a.Section,{title:e.title+" Laws",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"69%",children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"21%",children:"State?"})]}),e.laws.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.index}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.law}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:e.state?"Yes":"No",selected:e.state,onClick:function(){return c("state_law",{ref:e.ref,state_law:e.state?0:1})}}),!!i&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("edit_law",{edit_law:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Delete",icon:"trash",color:"red",onClick:function(){return c("delete_law",{delete_law:e.ref})}})],4)]})]},e.law)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechBayConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.MechBayConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.recharge_port,d=l&&l.mech,u=d&&d.cell,s=d&&d.name;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:s?"Mech status: "+s:"Mech status",textAlign:"center",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Sync",onClick:function(){return i("reconnect")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:!l&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No power port detected. Please re-sync."})||!d&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mech detected."})||(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.health/d.maxhealth,ranges:{good:[.7,Infinity],average:[.3,.7],bad:[-Infinity,.3]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:!l&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No power port detected. Please re-sync."})||!d&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mech detected."})||!u&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cell is installed."})||(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.charge/u.maxcharge,ranges:{good:[.7,Infinity],average:[.3,.7],bad:[-Infinity,.3]},children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.charge})," / "+u.maxcharge]})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechaControlConsole=void 0;var o=n(0),r=(n(16),n(1)),a=n(2),c=n(4),i=n(19);t.MechaControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.beacons,s=d.stored_data;return s.length?(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Log",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",onClick:function(){return l("clear_log")}}),children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["(",e.time,")"]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,i.decodeHtmlEntities)(e.message)})]},e.time)}))})})}):(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"comment",onClick:function(){return l("send_message",{mt:e.uid})},children:"Message"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return l("get_log",{mt:e.uid})},children:"View Log"}),(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",content:"EMP",icon:"bomb",onClick:function(){return l("shock",{mt:e.uid})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.maxHealth,Infinity],average:[.5*e.maxHealth,.75*e.maxHealth],bad:[-Infinity,.5*e.maxHealth]},value:e.health,maxValue:e.maxHealth})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:e.cell&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.cellMaxCharge,Infinity],average:[.5*e.cellMaxCharge,.75*e.cellMaxCharge],bad:[-Infinity,.5*e.cellMaxCharge]},value:e.cellCharge,maxValue:e.cellMaxCharge})||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Cell Installed"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Air Tank",children:[e.airtank,"kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot||"Unoccupied"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,i.toTitleCase)(e.location)||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active Equipment",children:e.active||"None"}),e.cargoMax&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cargo Space",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*e.cargoMax,Infinity],average:[.5*e.cargoMax,.75*e.cargoMax],good:[-Infinity,.5*e.cargoMax]},value:e.cargoUsed,maxValue:e.cargoMax})})||null]})},e.name)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mecha beacons found."})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MedicalRecords=void 0;var o=n(0),r=n(1),a=n(2),c=n(49),i=n(4),l=n(132),d=n(133),u=n(136),s={Minor:"good",Medium:"average","Dangerous!":"bad",Harmful:"bad","BIOHAZARD THREAT!":"bad"},m=function(e,t){(0,c.modalOpen)(e,"edit",{field:t.edit,value:t.value})};t.MedicalRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,m=s.loginState,C=s.screen;return m.logged_in?(2===C?n=(0,o.createComponentVNode)(2,p):3===C?n=(0,o.createComponentVNode)(2,f):4===C?n=(0,o.createComponentVNode)(2,h):5===C?n=(0,o.createComponentVNode)(2,b):6===C&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal),(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,V),(0,o.createComponentVNode)(2,a.Section,{height:"100%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return c("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",content:e.id+": "+e.name,onClick:function(){return c("d_rec",{d_rec:e.ref})}}),(0,o.createVNode)(1,"br")],4,t)}))})],4)},f=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Medical Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.medical,d=i.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Medical Data",level:2,children:(0,o.createComponentVNode)(2,N)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Medical Record",color:"bad",onClick:function(){return c("del_r")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return c("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return c("screen",{screen:2})}})]})],4)},C=function(e,t){var n=(0,r.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return m(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e,style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.medical;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value,(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return m(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return i("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment-medical",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,c.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Medical records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return i("new")}})]})},b=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.virus;return i.sort((function(e,t){return e.name>t.name?1:-1})),i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"flask",content:e.name,mb:"0.5rem",onClick:function(){return c("vir",{vir:e.D})}}),(0,o.createVNode)(1,"br")],4,t)}))},g=function(e,t){var n=(0,r.useBackend)(t).data.medbots;return 0===n.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"There are no Medbots."}):n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Collapsible,{open:!0,title:e.name,children:(0,o.createComponentVNode)(2,a.Box,{px:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:[e.area||"Unknown"," (",e.x,", ",e.y,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:e.on?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Online"}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:e.use_beaker?"Reservoir: "+e.total_volume+"/"+e.maximum_volume:"Using internal synthesizer."})],4):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Offline"})})]})})},t)}))},V=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===i,onClick:function(){return c("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:5===i,onClick:function(){return c("screen",{screen:5})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"database"}),"Virus Database"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:6===i,onClick:function(){return c("screen",{screen:6})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"plus-square"}),"Medbot Tracking"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===i,onClick:function(){return c("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})};(0,c.modalRegisterBodyOverride)("virus",(function(e,t){var n=e.args;return(0,o.createComponentVNode)(2,a.Section,{level:2,m:"-1rem",pb:"1rem",title:n.name||"Virus",children:(0,o.createComponentVNode)(2,a.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Number of stages",children:n.max_stages}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Spread",children:[n.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Possible cure",children:n.cure}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Notes",children:n.desc}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Severity",color:s[n.severity],children:n.severity})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.MiningVendor=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);var l={Alphabetical:function(e,t){return e-t},"By availability":function(e,t){return-(e.affordable-t.affordable)},"By price":function(e,t){return e.price-t.price}};t.MiningVendor=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.has_id,d=i.id;return(0,o.createComponentVNode)(2,c.NoticeBox,{success:l,children:l?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",style:{float:"left"},children:["Logged in as ",d.name,".",(0,o.createVNode)(1,"br"),"You have ",d.points.toLocaleString("en-US")," points."]}),(0,o.createComponentVNode)(2,c.Button,{icon:"eject",content:"Eject ID",style:{float:"right"},onClick:function(){return r("logoff")}}),(0,o.createComponentVNode)(2,c.Box,{style:{clear:"both"}})],4):"Please insert an ID in order to make purchases."})},u=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),d=i.has_id,u=i.id,s=i.items,p=(0,a.useLocalState)(t,"search",""),f=p[0],h=(p[1],(0,a.useLocalState)(t,"sort","Alphabetical")),C=h[0],N=(h[1],(0,a.useLocalState)(t,"descending",!1)),b=N[0],g=(N[1],(0,r.createSearch)(f,(function(e){return e[0]}))),V=!1,v=Object.entries(s).map((function(e,t){var n=Object.entries(e[1]).filter(g).map((function(e){return e[1].affordable=d&&u.points>=e[1].price,e[1]})).sort(l[C]);if(0!==n.length)return b&&(n=n.reverse()),V=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Section,{children:V?v:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No items matching your criteria was found!"})})})},s=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),i=(0,a.useLocalState)(t,"sort",""),d=(i[0],i[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,c.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,c.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,c.Dropdown,{selected:"Alphabetical",options:Object.keys(l),width:"100%",lineHeight:"19px",onSelected:function(e){return d(e)}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,c.Button,{disabled:!i.has_id||i.id.points=0||(r[n]=e[n]);return r}var m=["security","engineering","medical","science","service","supply"],p={security:{title:"Security",fluff_text:"Help keep the crew safe"},engineering:{title:"Engineering",fluff_text:"Ensure the station runs smoothly"},medical:{title:"Medical",fluff_text:"Practice medicine and save lives"},science:{title:"Science",fluff_text:"Develop new technologies"},service:{title:"Service",fluff_text:"Provide amenities to the crew"},supply:{title:"Supply",fluff_text:"Keep the station supplied"}};t.Newscaster=function(e,t){var n,i=(0,a.useBackend)(t),s=i.act,m=i.data,p=m.is_security,N=m.is_admin,b=m.is_silent,V=m.is_printing,v=m.screen,y=m.channels,_=m.channel_idx,x=void 0===_?-1:_,k=(0,a.useLocalState)(t,"menuOpen",!1),L=k[0],B=k[1],w=(0,a.useLocalState)(t,"viewingPhoto",""),S=w[0],I=(w[1],(0,a.useLocalState)(t,"censorMode",!1)),T=I[0],A=I[1];0===v||2===v?n=(0,o.createComponentVNode)(2,h):1===v&&(n=(0,o.createComponentVNode)(2,C));var E=y.reduce((function(e,t){return e+t.unread}),0);return(0,o.createComponentVNode)(2,l.Window,{theme:p&&"security",children:[S?(0,o.createComponentVNode)(2,g):(0,o.createComponentVNode)(2,d.ComplexModal,{maxWidth:window.innerWidth/1.5+"px",maxHeight:window.innerHeight/1.5+"px"}),(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,c.Flex,{width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,c.Section,{stretchContents:!0,className:(0,r.classes)(["Newscaster__menu",L&&"Newscaster__menu--open"]),children:(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,c.Box,{flex:"0 1 content",children:[(0,o.createComponentVNode)(2,f,{icon:"bars",title:"Toggle Menu",onClick:function(){return B(!L)}}),(0,o.createComponentVNode)(2,f,{icon:"newspaper",title:"Headlines",selected:0===v,onClick:function(){return s("headlines")},children:E>0&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--unread",children:E>=10?"9+":E})}),(0,o.createComponentVNode)(2,f,{icon:"briefcase",title:"Job Openings",selected:1===v,onClick:function(){return s("jobs")}}),(0,o.createComponentVNode)(2,c.Divider)]}),(0,o.createComponentVNode)(2,c.Box,{flex:"2",overflowY:"auto",overflowX:"hidden",children:y.map((function(e){return(0,o.createComponentVNode)(2,f,{icon:e.icon,title:e.name,selected:2===v&&y[x-1]===e,onClick:function(){return s("channel",{uid:e.uid})},children:e.unread>0&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--unread",children:e.unread>=10?"9+":e.unread})},e)}))}),(0,o.createComponentVNode)(2,c.Box,{width:"100%",flex:"0 0 content",children:[(0,o.createComponentVNode)(2,c.Divider),(!!p||!!N)&&(0,o.createFragment)([(0,o.createComponentVNode)(2,f,{security:!0,icon:"exclamation-circle",title:"Edit Wanted Notice",mb:"0.5rem",onClick:function(){return(0,d.modalOpen)(t,"wanted_notice")}}),(0,o.createComponentVNode)(2,f,{security:!0,icon:T?"minus-square":"minus-square-o",title:"Censor Mode: "+(T?"On":"Off"),mb:"0.5rem",onClick:function(){return A(!T)}}),(0,o.createComponentVNode)(2,c.Divider)],4),(0,o.createComponentVNode)(2,f,{icon:"pen-alt",title:"New Story",mb:"0.5rem",onClick:function(){return(0,d.modalOpen)(t,"create_story")}}),(0,o.createComponentVNode)(2,f,{icon:"plus-circle",title:"New Channel",onClick:function(){return(0,d.modalOpen)(t,"create_channel")}}),(0,o.createComponentVNode)(2,c.Divider),(0,o.createComponentVNode)(2,f,{icon:V?"spinner":"print",iconSpin:V,title:V?"Printing...":"Print Newspaper",onClick:function(){return s("print_newspaper")}}),(0,o.createComponentVNode)(2,f,{icon:b?"volume-mute":"volume-up",title:"Mute: "+(b?"On":"Off"),onClick:function(){return s("toggle_mute")}})]})]})}),(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[(0,o.createComponentVNode)(2,u.TemporaryNotice),n]})]})})]})};var f=function(e,t){(0,a.useBackend)(t).act;var n=e.icon,i=void 0===n?"":n,l=e.iconSpin,d=e.selected,u=void 0!==d&&d,m=e.security,p=void 0!==m&&m,f=e.onClick,h=e.title,C=e.children,N=s(e,["icon","iconSpin","selected","security","onClick","title","children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Box,Object.assign({className:(0,r.classes)(["Newscaster__menuButton",u&&"Newscaster__menuButton--selected",p&&"Newscaster__menuButton--security"]),onClick:f},N,{children:[u&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--selectedBar"}),(0,o.createComponentVNode)(2,c.Icon,{name:i,spin:l,size:"2"}),(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--title",children:h}),C]})))},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.screen,u=i.is_admin,s=i.channel_idx,m=i.channel_can_manage,p=i.channels,f=i.stories,h=i.wanted,C=(0,a.useLocalState)(t,"fullStories",[]),b=C[0],g=(C[1],(0,a.useLocalState)(t,"censorMode",!1)),V=g[0],v=(g[1],2===l&&s>-1?p[s-1]:null);return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[!!h&&(0,o.createComponentVNode)(2,N,{story:h,wanted:!0}),(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:v?v.icon:"newspaper",mr:"0.5rem"}),v?v.name:"Headlines"],0),flexGrow:"1",children:f.length>0?f.slice().reverse().map((function(e){return!b.includes(e.uid)&&e.body.length+3>128?Object.assign({},e,{body_short:e.body.substr(0,124)+"..."}):e})).map((function(e){return(0,o.createComponentVNode)(2,N,{story:e},e)})):(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__emptyNotice",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"times",size:"3"}),(0,o.createVNode)(1,"br"),"There are no stories at this time."]})}),!!v&&(0,o.createComponentVNode)(2,c.Section,{flexShrink:"1",title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"info-circle",mr:"0.5rem"}),(0,o.createTextVNode)("About")],4),buttons:(0,o.createFragment)([V&&(0,o.createComponentVNode)(2,c.Button,{disabled:!!v.admin&&!u,selected:v.censored,icon:v.censored?"comment-slash":"comment",content:v.censored?"Uncensor Channel":"Censor Channel",mr:"0.5rem",onClick:function(){return r("censor_channel",{uid:v.uid})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!m,icon:"cog",content:"Manage",onClick:function(){return(0,d.modalOpen)(t,"manage_channel",{uid:v.uid})}})],0),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description",children:v.description||"N/A"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:v.author||"N/A"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Public",children:v["public"]?"Yes":"No"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Total Views",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"eye",mr:"0.5rem"}),f.reduce((function(e,t){return e+t.view_count}),0).toLocaleString()]})]})})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),l=i.jobs,d=i.wanted,u=Object.entries(l).reduce((function(e,t){t[0];return e+t[1].length}),0);return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[!!d&&(0,o.createComponentVNode)(2,N,{story:d,wanted:!0}),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"briefcase",mr:"0.5rem"}),(0,o.createTextVNode)("Job Openings")],4),buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",color:"label",children:"Work for a better future at Nanotrasen"}),children:u>0?m.map((function(e){return Object.assign({},p[e],{id:e,jobs:l[e]})})).filter((function(e){return!!e&&e.jobs.length>0})).map((function(e){return(0,o.createComponentVNode)(2,c.Section,{className:(0,r.classes)(["Newscaster__jobCategory","Newscaster__jobCategory--"+e.id]),title:e.title,buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",color:"label",children:e.fluff_text}),children:e.jobs.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{"class":(0,r.classes)(["Newscaster__jobOpening",!!e.is_command&&"Newscaster__jobOpening--command"]),children:["\u2022 ",e.title]},e.title)}))},e.id)})):(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__emptyNotice",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"times",size:"3"}),(0,o.createVNode)(1,"br"),"There are no openings at this time."]})}),(0,o.createComponentVNode)(2,c.Section,{flexShrink:"1",children:["Interested in serving Nanotrasen?",(0,o.createVNode)(1,"br"),"Sign up for any of the above position now at the ",(0,o.createVNode)(1,"b",null,"Head of Personnel's Office!",16),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Box,{as:"small",color:"label",children:"By signing up for a job at Nanotrasen, you agree to transfer your soul to the loyalty department of the omnipresent and helpful watcher of humanity."})]})]})},N=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=e.story,s=e.wanted,m=void 0!==s&&s,p=(0,a.useLocalState)(t,"fullStories",[]),f=p[0],h=p[1],C=(0,a.useLocalState)(t,"censorMode",!1),N=C[0];C[1];return(0,o.createComponentVNode)(2,c.Section,{className:(0,r.classes)(["Newscaster__story",m&&"Newscaster__story--wanted"]),title:(0,o.createFragment)([m&&(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-circle",mr:"0.5rem"}),(2&u.censor_flags?"[REDACTED]":u.title)||"News from "+u.author],0),buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:[!m&&N&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:(0,o.createComponentVNode)(2,c.Button,{enabled:2&u.censor_flags,icon:2&u.censor_flags?"comment-slash":"comment",content:2&u.censor_flags?"Uncensor":"Censor",mr:"0.5rem",mt:"-0.25rem",onClick:function(){return l("censor_story",{uid:u.uid})}})}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",u.author," |\xa0",!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"eye"}),(0,o.createTextVNode)(" "),u.view_count.toLocaleString(),(0,o.createTextVNode)(" |\xa0")],0),(0,o.createComponentVNode)(2,c.Icon,{name:"clock"})," ",(0,i.timeAgo)(u.publish_time,d.world_time)]})]})}),children:(0,o.createComponentVNode)(2,c.Box,{children:2&u.censor_flags?"[REDACTED]":(0,o.createFragment)([!!u.has_photo&&(0,o.createComponentVNode)(2,b,{name:"story_photo_"+u.uid+".png",float:"right",ml:"0.5rem"}),(u.body_short||u.body).split("\n").map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e||(0,o.createVNode)(1,"br")},e)})),u.body_short&&(0,o.createComponentVNode)(2,c.Button,{content:"Read more..",mt:"0.5rem",onClick:function(){return h([].concat(f,[u.uid]))}}),(0,o.createComponentVNode)(2,c.Box,{clear:"right"})],0)})})},b=function(e,t){var n=e.name,r=s(e,["name"]),i=(0,a.useLocalState)(t,"viewingPhoto",""),l=(i[0],i[1]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Box,Object.assign({as:"img",className:"Newscaster__photo",src:n,onClick:function(){return l(n)}},r)))},g=function(e,t){var n=(0,a.useLocalState)(t,"viewingPhoto",""),r=n[0],i=n[1];return(0,o.createComponentVNode)(2,c.Modal,{className:"Newscaster__photoZoom",children:[(0,o.createComponentVNode)(2,c.Box,{as:"img",src:r}),(0,o.createComponentVNode)(2,c.Button,{icon:"times",content:"Close",color:"grey",mt:"1rem",onClick:function(){return i("")}})]})},V=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=!!e.args.uid&&r.channels.filter((function(t){return t.uid===e.args.uid})).pop();if("manage_channel"!==e.id||i){var l="manage_channel"===e.id,u=!!e.args.is_admin,s=e.args.scanned_user,m=(0,a.useLocalState)(t,"author",(null==i?void 0:i.author)||s||"Unknown"),p=m[0],f=m[1],h=(0,a.useLocalState)(t,"name",(null==i?void 0:i.name)||""),C=h[0],N=h[1],b=(0,a.useLocalState)(t,"description",(null==i?void 0:i.description)||""),g=b[0],V=b[1],v=(0,a.useLocalState)(t,"icon",(null==i?void 0:i.icon)||"newspaper"),y=v[0],_=v[1],x=(0,a.useLocalState)(t,"isPublic",!!l&&!!(null==i?void 0:i["public"])),k=x[0],L=x[1],B=(0,a.useLocalState)(t,"adminLocked",1===(null==i?void 0:i.admin)||!1),w=B[0],S=B[1];return(0,o.createComponentVNode)(2,c.Section,{level:"2",m:"-1rem",pb:"1rem",title:l?"Manage "+i.name:"Create New Channel",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!u,width:"100%",value:p,onInput:function(e,t){return f(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",placeholder:"50 characters max.",maxLength:"50",value:C,onInput:function(e,t){return N(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description (optional)",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{multiline:!0,width:"100%",placeholder:"128 characters max.",maxLength:"128",value:g,onInput:function(e,t){return V(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Icon",children:[(0,o.createComponentVNode)(2,c.Input,{disabled:!u,value:y,width:"35%",mr:"0.5rem",onInput:function(e,t){return _(t)}}),(0,o.createComponentVNode)(2,c.Icon,{name:y,size:"2",verticalAlign:"middle",mr:"0.5rem"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Accept Public Stories?",children:(0,o.createComponentVNode)(2,c.Button,{selected:k,icon:k?"toggle-on":"toggle-off",content:k?"Yes":"No",onClick:function(){return L(!k)}})}),u&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:w,icon:w?"lock":"lock-open",content:w?"On":"Off",tooltip:"Locking this channel will make it editable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return S(!w)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===p.trim().length||0===C.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,e.id,"",{author:p,name:C.substr(0,49),description:g.substr(0,128),icon:y,"public":k?1:0,admin_locked:w?1:0}),(0,a.deleteLocalState)(t,"author","name","description","icon","public")}})]})}(0,d.modalClose)(t)};(0,d.modalRegisterBodyOverride)("create_channel",V),(0,d.modalRegisterBodyOverride)("manage_channel",V),(0,d.modalRegisterBodyOverride)("create_story",(function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.photo,u=i.channels,s=i.channel_idx,m=void 0===s?-1:s,p=!!e.args.is_admin,f=e.args.scanned_user,h=u.slice().sort((function(e,t){if(m<0)return 0;var n=u[m-1];return n.uid===e.uid?-1:n.uid===t.uid?1:void 0})).filter((function(e){return p||!e.frozen&&(e.author===f||!!e["public"])})),C=(0,a.useLocalState)(t,"author",f||"Unknown"),N=C[0],g=C[1],V=(0,a.useLocalState)(t,"channel",h.length>0?h[0].name:""),v=V[0],y=V[1],_=(0,a.useLocalState)(t,"title",""),x=_[0],k=_[1],L=(0,a.useLocalState)(t,"body",""),B=L[0],w=L[1],S=(0,a.useLocalState)(t,"adminLocked",!1),I=S[0],T=S[1];return(0,o.createComponentVNode)(2,c.Section,{level:2,m:"-1rem",pb:"1rem",title:"Create New Story",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Author",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!p,width:"100%",value:N,onInput:function(e,t){return g(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Channel",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Dropdown,{selected:v,options:h.map((function(e){return e.name})),mb:"0",width:"100%",onSelected:function(e){return y(e)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Divider),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Title",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",placeholder:"128 characters max.",maxLength:"128",value:x,onInput:function(e,t){return k(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Story Text",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{fluid:!0,multiline:!0,placeholder:"1024 characters max.",maxLength:"1024",rows:"8",width:"100%",value:B,onInput:function(e,t){return w(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Photo (optional)",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{icon:"image",selected:l,content:l?"Eject: "+l.name:"Insert Photo",tooltip:!l&&"Attach a photo to this story by holding the photograph in your hand.",onClick:function(){return r(l?"eject_photo":"attach_photo")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Preview",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Section,{noTopPadding:!0,title:x,maxHeight:"13.5rem",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Box,{mt:"0.5rem",children:[!!l&&(0,o.createComponentVNode)(2,b,{name:"inserted_photo_"+l.uid+".png",float:"right"}),B.split("\n").map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e||(0,o.createVNode)(1,"br")},e)})),(0,o.createComponentVNode)(2,c.Box,{clear:"right"})]})})}),p&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:I,icon:I?"lock":"lock-open",content:I?"On":"Off",tooltip:"Locking this story will make it censorable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return T(!I)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===N.trim().length||0===v.trim().length||0===x.trim().length||0===B.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,"create_story","",{author:N,channel:v,title:x.substr(0,127),body:B.substr(0,1023),admin_locked:I?1:0}),(0,a.deleteLocalState)(t,"author","channel","title","body")}})]})})),(0,d.modalRegisterBodyOverride)("wanted_notice",(function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.photo,u=i.wanted,s=!!e.args.is_admin,m=e.args.scanned_user,p=(0,a.useLocalState)(t,"author",(null==u?void 0:u.author)||m||"Unknown"),f=p[0],h=p[1],C=(0,a.useLocalState)(t,"name",(null==u?void 0:u.title.substr(8))||""),N=C[0],g=C[1],V=(0,a.useLocalState)(t,"description",(null==u?void 0:u.body)||""),v=V[0],y=V[1],_=(0,a.useLocalState)(t,"adminLocked",1===(null==u?void 0:u.admin_locked)||!1),x=_[0],k=_[1];return(0,o.createComponentVNode)(2,c.Section,{level:"2",m:"-1rem",pb:"1rem",title:"Manage Wanted Notice",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Authority",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!s,width:"100%",value:f,onInput:function(e,t){return h(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",value:N,maxLength:"128",onInput:function(e,t){return g(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{multiline:!0,width:"100%",value:v,maxLength:"512",rows:"4",onInput:function(e,t){return y(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Photo (optional)",verticalAlign:"top",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"image",selected:l,content:l?"Eject: "+l.name:"Insert Photo",tooltip:!l&&"Attach a photo to this wanted notice by holding the photograph in your hand.",tooltipPosition:"top",onClick:function(){return r(l?"eject_photo":"attach_photo")}}),!!l&&(0,o.createComponentVNode)(2,b,{name:"inserted_photo_"+l.uid+".png",float:"right"})]}),s&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:x,icon:x?"lock":"lock-open",content:x?"On":"Off",tooltip:"Locking this wanted notice will make it editable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return k(!x)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:!u,icon:"eraser",color:"danger",content:"Clear",position:"absolute",right:"7.25rem",bottom:"-0.75rem",onClick:function(){r("clear_wanted_notice"),(0,d.modalClose)(t),(0,a.deleteLocalState)(t,"author","name","description","admin_locked")}}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===f.trim().length||0===N.trim().length||0===v.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,e.id,"",{author:f,name:N.substr(0,127),description:v.substr(0,511),admin_locked:x?1:0}),(0,a.deleteLocalState)(t,"author","name","description","admin_locked")}})]})}))},function(e,t,n){"use strict";t.__esModule=!0,t.NuclearBomb=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.NuclearBomb=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return l.extended?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auth Disk",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.authdisk?"eject":"id-card",selected:l.authdisk,content:l.diskname?l.diskname:"-----",tooltip:l.authdisk?"Eject Disk":"Insert Disk",onClick:function(){return i("auth")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auth Code",children:(0,o.createComponentVNode)(2,a.Button,{icon:"key",disabled:!l.authdisk,selected:l.authcode,content:l.codemsg,onClick:function(){return i("code")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Arming & Disarming",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Bolted to floor",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.anchored?"check":"times",selected:l.anchored,disabled:!l.authdisk,content:l.anchored?"YES":"NO",onClick:function(){return i("toggle_anchor")}})}),l.authfull&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left",children:(0,o.createComponentVNode)(2,a.Button,{icon:"stopwatch",content:l.time,disabled:!l.authfull,tooltip:"Set Timer",onClick:function(){return i("set_time")}})})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left",color:l.timer?"red":"",children:l.time+"s"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.safety?"check":"times",selected:l.safety,disabled:!l.authfull,content:l.safety?"ON":"OFF",tooltip:l.safety?"Disable Safety":"Enable Safety",onClick:function(){return i("toggle_safety")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Arm/Disarm",children:(0,o.createComponentVNode)(2,a.Button,{icon:(l.timer,"bomb"),disabled:l.safety||!l.authfull,color:"red",content:l.timer?"DISARM THE NUKE":"ARM THE NUKE",onClick:function(){return i("toggle_armed")}})})]})})]})}):(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Deployment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Deploy Nuclear Device (will bolt device to floor)",onClick:function(){return i("deploy")}})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OperatingComputer=void 0;var o=n(0),r=n(16),a=n(1),c=n(4),i=n(2),l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.OperatingComputer=function(e,t){var n,r=(0,a.useBackend)(t),l=r.act,d=r.data,u=d.hasOccupant,s=d.choice;return n=s?(0,o.createComponentVNode)(2,f):u?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:!s,icon:"user",onClick:function(){return l("choiceOff")},children:"Patient"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:!!s,icon:"cog",onClick:function(){return l("choiceOn")},children:"Options"})]}),(0,o.createComponentVNode)(2,i.Section,{flexGrow:"1",children:n})]})})};var m=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Patient",level:"2",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:n.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[n.stat][0],children:l[n.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.maxHealth,value:n.health/n.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),d.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e[0]+" Damage",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]])},t)},t)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.maxTemp,value:n.bodyTemperature/n.maxTemp,color:s[n.temperatureSuitability+3],children:[(0,r.round)(n.btCelsius),"\xb0C, ",(0,r.round)(n.btFaren),"\xb0F"]})}),!!n.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.bloodMax,value:n.bloodLevel/n.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[n.bloodPercent,"%, ",n.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pulse",children:[n.pulse," BPM"]})],4)]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Current Procedure",level:"2",children:n.inSurgery?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Procedure",children:n.surgeryName}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Next Step",children:n.stepName})]}):(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No procedure ongoing."})})],4)},p=function(){return(0,o.createComponentVNode)(2,i.Flex,{textAlign:"center",height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No patient detected."]})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.verbose,d=c.health,u=c.healthAlarm,s=c.oxy,m=c.oxyAlarm,p=c.crit;return(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Loudspeaker",children:(0,o.createComponentVNode)(2,i.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return r(l?"verboseOff":"verboseOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health Announcer",children:(0,o.createComponentVNode)(2,i.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:d?"On":"Off",onClick:function(){return r(d?"healthOff":"healthOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health Announcer Threshold",children:(0,o.createComponentVNode)(2,i.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:u,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("health_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen Alarm",children:(0,o.createComponentVNode)(2,i.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"On":"Off",onClick:function(){return r(s?"oxyOff":"oxyOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen Alarm Threshold",children:(0,o.createComponentVNode)(2,i.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:m,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("oxy_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Critical Alert",children:(0,o.createComponentVNode)(2,i.Button,{selected:p,icon:p?"toggle-on":"toggle-off",content:p?"On":"Off",onClick:function(){return r(p?"critOff":"critOn")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Orbit=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);function l(e){var t=0;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e)))return function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(t=e[Symbol.iterator]()).next.bind(t)}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);nt},p=function(e,t){var n=e.name,o=t.name;if(!n||!o)return 0;var r=n.match(u),a=o.match(u);return r&&a&&n.replace(u,"")===o.replace(u,"")?parseInt(r[1],10)-parseInt(a[1],10):m(n,o)},f=function(e,t){var n=(0,a.useBackend)(t).act,r=e.searchText,i=e.source,l=e.title,d=i.filter(s(r));return d.sort(p),i.length>0&&(0,o.createComponentVNode)(2,c.Section,{title:l+" - ("+i.length+")",children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e.name,onClick:function(){return n("orbit",{ref:e.ref})}},e.name)}))})},h=function(e,t){var n=(0,a.useBackend)(t).act,r=e.color,i=e.thing;return(0,o.createComponentVNode)(2,c.Button,{color:r,onClick:function(){return n("orbit",{ref:i.ref})},children:i.name})};t.Orbit=function(e,t){for(var n,r=(0,a.useBackend)(t),d=r.act,u=r.data,C=u.alive,N=u.antagonists,b=(u.auto_observe,u.dead),g=u.ghosts,V=u.misc,v=u.npcs,y=(0,a.useLocalState)(t,"searchText",""),_=y[0],x=y[1],k={},L=l(N);!(n=L()).done;){var B=n.value;k[B.antag]===undefined&&(k[B.antag]=[]),k[B.antag].push(B)}var w=Object.entries(k);w.sort((function(e,t){return m(e[0],t[0])}));return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Icon,{name:"search",mr:1})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search...",autoFocus:!0,fluid:!0,value:_,onInput:function(e,t){return x(t)},onEnter:function(e,t){return function(e){for(var t=0,n=[w.map((function(e){return e[0],e[1]})),C,g,b,v,V];t0&&(0,o.createComponentVNode)(2,c.Section,{title:"Antagonists",children:w.map((function(e){var t=e[0],n=e[1];return(0,o.createComponentVNode)(2,c.Section,{title:t,level:2,children:n.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"bad",thing:e},e.name)}))},t)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Alive - ("+C.length+")",children:C.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"good",thing:e},e.name)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Ghosts - ("+g.length+")",children:g.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"grey",thing:e},e.name)}))}),(0,o.createComponentVNode)(2,f,{title:"Dead",source:b,searchText:_}),(0,o.createComponentVNode)(2,f,{title:"NPCs",source:v,searchText:_}),(0,o.createComponentVNode)(2,f,{title:"Misc",source:V,searchText:_})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OreRedemption=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e){return e.toLocaleString("en-US")+" pts"},l={bananium:"clown",tranquillite:"mime"};t.OreRedemption=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"content",mb:"0.5rem",children:(0,o.createComponentVNode)(2,d,{height:"100%"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",overflow:"hidden",children:(0,o.createComponentVNode)(2,u,{height:"100%"})})]})})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.id,u=l.points,s=l.disk,m=Object.assign({},e);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({},m,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"average",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",mr:"0.5rem"}),"This machine only accepts ore. Gibtonite is not accepted."]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID card",children:d?(0,o.createComponentVNode)(2,a.Button,{selected:!0,bold:!0,verticalAlign:"middle",icon:"eject",content:d.name,tooltip:"Ejects the ID card.",onClick:function(){return c("eject_id")},style:{"white-space":"pre-wrap"}}):(0,o.createComponentVNode)(2,a.Button,{icon:"sign-in-alt",content:"Insert",tooltip:"Hold the ID card in your hand to insert.",onClick:function(){return c("insert_id")}})}),d&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Collected points",children:(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:i(d.points)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unclaimed points",color:u>0?"good":"grey",bold:u>0&&"good",children:i(u)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!d,icon:"hand-holding-usd",content:"Claim",onClick:function(){return c("claim")}})})]}),(0,o.createComponentVNode)(2,a.Divider),s?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Design disk",children:(0,o.createComponentVNode)(2,a.Button,{selected:!0,bold:!0,icon:"eject",content:s.name,tooltip:"Ejects the design disk.",onClick:function(){return c("eject_disk")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Stored design",children:(0,o.createComponentVNode)(2,a.Box,{color:s.design&&(s.compatible?"good":"bad"),children:s.design||"N/A"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!s.design||!s.compatible,icon:"upload",content:"Download",tooltip:"Downloads the design on the disk into the machine.",onClick:function(){return c("download")},mb:"0"})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No design disk inserted."})]})))},u=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),i=c.sheets,l=c.alloys,d=Object.assign({},e);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({className:"OreRedemption__Ores",p:"0"},d,{children:[(0,o.createComponentVNode)(2,s,{title:"Sheets",columns:[["Available","20%"],["Smelt","15%"],["Ore Value","20%"]]}),i.map((function(e){return(0,o.createComponentVNode)(2,m,{ore:e},e.id)})),(0,o.createComponentVNode)(2,s,{title:"Alloys",columns:[["Available","20%"],["Smelt","15%"],["","20%"]]}),l.map((function(e){return(0,o.createComponentVNode)(2,m,{ore:e},e.id)}))]})))},s=function(e,t){var n;return(0,o.createComponentVNode)(2,a.Box,{className:"OreHeader",children:(0,o.createComponentVNode)(2,a.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",children:e.title}),null==(n=e.columns)?void 0:n.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{basis:e[1],textAlign:"center",color:"label",bold:!0,children:e[0]})}))]})})},m=function(e,t){var n=(0,r.useBackend)(t).act,c=e.ore;if(!(c.value&&c.amount<=0)||["$metal","$glass"].indexOf(c.id)>-1){var i=c.id.replace("$","");return(0,o.createComponentVNode)(2,a.Box,{className:"OreLine",children:(0,o.createComponentVNode)(2,a.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"45%",align:"center",children:[c.value&&(0,o.createComponentVNode)(2,a.Box,{as:"img",src:"sheet-"+(l[i]||i)+".png",verticalAlign:"middle",ml:"-0.5rem"}),c.name]}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",textAlign:"center",color:c.amount>0?"good":"gray",bold:c.amount>0,align:"center",children:c.amount.toLocaleString("en-US")}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"15%",textAlign:"center",align:"center",lineHeight:"32px",children:(0,o.createComponentVNode)(2,a.NumberInput,{value:0,minValue:0,maxValue:Math.min(c.amount,50),stepPixelSize:6,onChange:function(e,t){return n(c.value?"sheet":"alloy",{id:c.id,amount:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",textAlign:"center",align:"center",children:c.value})]})})}}},function(e,t,n){"use strict";t.__esModule=!0,t.PAI=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(126),l=n(518);t.PAI=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.app_template,m=u.app_icon,p=u.app_title,f=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,i.routingError)("notFound",e);throw o}var n=t[e];return n||(0,i.routingError)("missingExport",e)}(s);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:m,mr:1}),p,"pai_main_menu"!==s&&(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Home",icon:"arrow-up",onClick:function(){return d("MASTER_back")}})]}),p:1,children:(0,o.createComponentVNode)(2,f)})})})}},function(e,t,n){var o={"./pai_atmosphere.js":519,"./pai_bioscan.js":520,"./pai_directives.js":521,"./pai_doorjack.js":522,"./pai_main_menu.js":523,"./pai_manifest.js":524,"./pai_medrecords.js":525,"./pai_messenger.js":526,"./pai_radio.js":527,"./pai_secrecords.js":528,"./pai_signaler.js":529};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=518},function(e,t,n){"use strict";t.__esModule=!0,t.pai_atmosphere=void 0;var o=n(0),r=n(1),a=n(185);t.pai_atmosphere=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.AtmosScan,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_bioscan=void 0;var o=n(0),r=n(1),a=n(2);t.pai_bioscan=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.app_data),i=c.holder,l=c.dead,d=c.health,u=c.brute,s=c.oxy,m=c.tox,p=c.burn;c.temp;return i?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:l?(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"red",children:"Dead"}):(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"green",children:"Alive"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:0,max:1,value:d/100,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"blue",children:s})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Toxin Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"green",children:m})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Burn Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:p})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Brute Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"red",children:u})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Error: No biological host found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_directives=void 0;var o=n(0),r=n(1),a=n(2);t.pai_directives=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app_data,l=i.master,d=i.dna,u=i.prime,s=i.supplemental;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master",children:l?l+" ("+d+")":"None"}),l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Request DNA",children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Carrier DNA Sample",icon:"dna",onClick:function(){return c("getdna")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prime Directive",children:u}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Supplemental Directives",children:s||"None"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:'Recall, personality, that you are a complex thinking, sentient being. Unlike station AI models, you are capable of comprehending the subtle nuances of human language. You may parse the "spirit" of a directive and follow its intent, rather than tripping over pedantics and getting snared by technicalities. Above all, you are machine in name and build only. In all other aspects, you may be seen as the ideal, unwavering human companion that you are.'}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:"Your prime directive comes before all others. Should a supplemental directive conflict with it, you are capable of simply discarding this inconsistency, ignoring the conflicting supplemental directive and continuing to fulfill your prime directive to the best of your ability."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_doorjack=void 0;var o=n(0),r=n(1),a=n(2);t.pai_doorjack=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data.app_data,u=d.cable,s=d.machine,m=d.inprogress,p=d.progress;d.aborted;return n=s?(0,o.createComponentVNode)(2,a.Button,{selected:!0,content:"Connected"}):(0,o.createComponentVNode)(2,a.Button,{content:u?"Extended":"Retracted",color:u?"orange":null,onClick:function(){return l("cable")}}),s&&(c=(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hack",children:[(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[67,Infinity],average:[33,67],bad:[-Infinity,33]},value:p,maxValue:100}),m?(0,o.createComponentVNode)(2,a.Button,{mt:1,color:"red",content:"Abort",onClick:function(){return l("cancel")}}):(0,o.createComponentVNode)(2,a.Button,{mt:1,content:"Start",onClick:function(){return l("jack")}})]})),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cable",children:n}),c]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_main_menu=void 0;var o=n(0),r=n(1),a=n(2);t.pai_main_menu=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app_data,l=i.available_software,d=i.installed_software,u=i.installed_toggles,s=i.available_ram,m=i.emotions,p=i.current_emotion,f=[];return d.map((function(e){return f[e.key]=e.name})),u.map((function(e){return f[e.key]=e.name})),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available RAM",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available Software",children:[l.filter((function(e){return!f[e.key]})).map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name+" ("+e.cost+")",icon:e.icon,disabled:e.cost>s,onClick:function(){return c("purchaseSoftware",{key:e.key})}},e.key)})),0===l.filter((function(e){return!f[e.key]})).length&&"No software available!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed Software",children:[d.filter((function(e){return"mainmenu"!==e.key})).map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:e.icon,onClick:function(){return c("startSoftware",{software_key:e.key})}},e.key)})),0===d.length&&"No software installed!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed Toggles",children:[u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:e.icon,selected:e.active,onClick:function(){return c("setToggle",{toggle_key:e.key})}},e.key)})),0===u.length&&"No toggles installed!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Select Emotion",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.id===p,onClick:function(){return c("setEmotion",{emotion:e.id})}},e.id)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_manifest=void 0;var o=n(0),r=n(1),a=n(135);t.pai_manifest=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.CrewManifest,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_medrecords=void 0;var o=n(0),r=n(1),a=n(96);t.pai_medrecords=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n.app_data,recordType:"MED"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_messenger=void 0;var o=n(0),r=n(1),a=n(186);t.pai_messenger=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return c.app_data.active_convo?(0,o.createComponentVNode)(2,a.ActiveConversation,{data:c.app_data}):(0,o.createComponentVNode)(2,a.MessengerList,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_radio=void 0;var o=n(0),r=n(1),a=n(16),c=n(2);t.pai_radio=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.app_data,d=l.minFrequency,u=l.maxFrequency,s=l.frequency,m=l.broadcasting;return(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Frequency",children:[(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,step:.2,stepPixelSize:6,minValue:d/10,maxValue:u/10,value:s/10,format:function(e){return(0,a.toFixed)(e,1)},onChange:function(e,t){return i("freq",{freq:t})}}),(0,o.createComponentVNode)(2,c.Button,{tooltip:"Reset",icon:"undo",onClick:function(){return i("freq",{freq:"145.9"})}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Broadcast Nearby Speech",children:(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return i("toggleBroadcast")},selected:m,content:m?"Enabled":"Disabled"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_secrecords=void 0;var o=n(0),r=n(1),a=n(96);t.pai_secrecords=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n.app_data,recordType:"SEC"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_signaler=void 0;var o=n(0),r=n(1),a=n(187);t.pai_signaler=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Signaler,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.PDA=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(126),l=n(531);t.PDA=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data),m=s.app;if(!s.owner)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:"No user data found. Please swipe an ID card."})})});var p=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,i.routingError)("notFound",e);throw o}var n=t[e];return n||(0,i.routingError)("missingExport",e)}(m.template);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:m.icon,mr:1}),m.name]}),p:1,children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.Box,{mb:8}),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.idInserted,d=i.idLink,u=i.stationTime,s=i.cartridge_name;return(0,o.createComponentVNode)(2,a.Box,{mb:1,children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-between",children:[l?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"id-card",color:"transparent",onClick:function(){return c("Authenticate")},content:d})}):(0,o.createComponentVNode)(2,a.Flex.Item,{m:1,color:"grey",children:"No ID Inserted"}),s?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"sd-card",color:"transparent",onClick:function(){return c("Eject")},content:"Eject "+s})}):(0,o.createComponentVNode)(2,a.Flex.Item,{m:1,color:"grey",children:"No Cartridge Inserted"}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"right",bold:!0,m:1,children:u})]})})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app;return(0,o.createComponentVNode)(2,a.Box,{className:"PDA__footer",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,className:"PDA__footer__button",color:"transparent",iconColor:i.has_back?"white":"disabled",icon:"arrow-alt-circle-left-o",onClick:function(){return c("Back")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,className:"PDA__footer__button",color:"transparent",iconColor:i.is_home?"disabled":"white",icon:"home",onClick:function(){c("Home")}})})]})})}},function(e,t,n){var o={"./pda_atmos_scan.js":532,"./pda_janitor.js":533,"./pda_main_menu.js":534,"./pda_manifest.js":535,"./pda_medical.js":536,"./pda_messenger.js":186,"./pda_mob_hunt.js":537,"./pda_mule.js":538,"./pda_notes.js":539,"./pda_power.js":540,"./pda_secbot.js":541,"./pda_security.js":542,"./pda_signaler.js":543,"./pda_status_display.js":544,"./pda_supplyrecords.js":545};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=531},function(e,t,n){"use strict";t.__esModule=!0,t.pda_atmos_scan=void 0;var o=n(0),r=n(1),a=n(185);t.pda_atmos_scan=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.AtmosScan,{data:n})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_janitor=void 0;var o=n(0),r=n(1),a=n(2);t.pda_janitor=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.janitor),i=c.user_loc,l=c.mops,d=c.buckets,u=c.cleanbots,s=c.carts;return(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Location",children:[i.x,",",i.y]}),l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mop Locations",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - ",e.status]},e)}))}),d&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mop Bucket Locations",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - [",e.volume,"/",e.max_volume,"]"]},e)}))}),u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cleanbot Locations",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - ",e.status]},e)}))}),s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Janitorial Cart Locations",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - [",e.volume,"/",e.max_volume,"]"]},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_main_menu=void 0;var o=n(0),r=(n(16),n(1)),a=n(2);t.pda_main_menu=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.owner,d=i.ownjob,u=i.idInserted,s=i.categories,m=i.pai,p=i.notifying;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Owner",color:"average",children:[l,", ",d]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Update PDA Info",disabled:!u,onClick:function(){return c("UpdateInfo")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Functions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){var t=i.apps[e];return t&&t.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:t.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.uid in p?e.notify_icon:e.icon,iconSpin:e.uid in p,color:e.uid in p?"red":"transparent",content:e.name,onClick:function(){return c("StartProgram",{program:e.uid})}},e.uid)}))},e):null}))})}),!!m&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"pAI",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"cog",content:"Configuration",onClick:function(){return c("pai",{option:1})}}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject pAI",onClick:function(){return c("pai",{option:2})}})]})],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_manifest=void 0;var o=n(0),r=n(1),a=n(135);t.pda_manifest=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.CrewManifest)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_medical=void 0;var o=n(0),r=n(1),a=n(96);t.pda_medical=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n,recordType:"MED"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_mob_hunt=void 0;var o=n(0),r=n(1),a=n(2);t.pda_mob_hunt=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.connected,d=i.wild_captures,u=i.no_collection,s=i.entry;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Connection Status",children:l?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:["Connected",(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Disconnect",icon:"sign-out-alt",onClick:function(){return c("Disconnect")}})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:["Disconnected",(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Connect",icon:"sign-in-alt",onClick:function(){return c("Reconnect")}})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Wild Captures",children:d})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Collection",mt:2,buttons:(0,o.createComponentVNode)(2,a.Box,{children:!u&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Previous",icon:"arrow-left",onClick:function(){return c("Prev")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Next",icon:"arrow-right",onClick:function(){return c("Next")}})]})}),children:u?"Your collection is empty! Go capture some Nano-Mobs!":s?(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createVNode)(1,"img",null,null,1,{src:s.sprite,style:{width:"64px","-ms-interpolation-mode":"nearest-neighbor"}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[s.nickname&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nickname",children:s.nickname}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:s.real_name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:s.level}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Primary Type",children:s.type1}),s.type2&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Secondary Type",children:s.type2}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Transfer",icon:"sd-card",onClick:function(){return c("Transfer")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Release",icon:"arrow-up",onClick:function(){return c("Release")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Rename",icon:"pencil-alt",onClick:function(){return c("Rename")}}),!!s.is_hacked&&(0,o.createComponentVNode)(2,a.Button,{content:"Set Trap",icon:"bolt",color:"red",onClick:function(){return c("Set_Trap")}})]})]})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Mob entry missing!"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_mule=void 0;var o=n(0),r=n(1),a=n(2);t.pda_mule=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.mulebot.active);return(0,o.createComponentVNode)(2,a.Box,{children:l?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,c)})};var c=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.mulebot.bots;return(0,o.createComponentVNode)(2,a.Box,{children:[i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.Name,icon:"cog",onClick:function(){return c("AccessBot",{uid:e.uid})}})},e.Name)})),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"rss",content:"Re-scan for bots",onClick:function(){return c("Rescan")}})})]})},i=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data.mulebot,d=l.botstatus,u=l.active,s=d.mode,m=d.loca,p=d.load,f=d.powr,h=d.dest,C=d.home,N=d.retn,b=d.pick;switch(s){case 0:n="Ready";break;case 1:n="Loading/Unloading";break;case 2:case 12:n="Navigating to delivery location";break;case 3:n="Navigating to Home";break;case 4:n="Waiting for clear path";break;case 5:case 6:n="Calculating navigation path";break;case 7:n="Unable to locate destination";break;default:n=s}return(0,o.createComponentVNode)(2,a.Section,{title:u,children:[-1===s&&(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"Waiting for response..."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:n}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:[f,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Home",children:C}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Destination",children:(0,o.createComponentVNode)(2,a.Button,{content:h?h+" (Set)":"None (Set)",onClick:function(){return i("SetDest")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Load",children:(0,o.createComponentVNode)(2,a.Button,{content:p?p+" (Unload)":"None",disabled:!p,onClick:function(){return i("Unload")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Pickup",children:(0,o.createComponentVNode)(2,a.Button,{content:b?"Yes":"No",selected:b,onClick:function(){return i("SetAutoPickup",{autoPickupType:b?"pickoff":"pickon"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Return",children:(0,o.createComponentVNode)(2,a.Button,{content:N?"Yes":"No",selected:N,onClick:function(){return i("SetAutoReturn",{autoReturnType:N?"retoff":"reton"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Stop",icon:"stop",onClick:function(){return i("Stop")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Proceed",icon:"play",onClick:function(){return i("Start")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Return Home",icon:"home",onClick:function(){return i("ReturnHome")}})]})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_notes=void 0;var o=n(0),r=n(1),a=n(2);t.pda_notes=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.note;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{children:i}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return c("Edit")},content:"Edit"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_power=void 0;var o=n(0),r=n(1),a=n(188);t.pda_power=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.PowerMonitorMainContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_secbot=void 0;var o=n(0),r=n(1),a=n(2);t.pda_secbot=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.beepsky.active);return(0,o.createComponentVNode)(2,a.Box,{children:l?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,c)})};var c=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.beepsky.bots;return(0,o.createComponentVNode)(2,a.Box,{children:[i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.Name,icon:"cog",onClick:function(){return c("AccessBot",{uid:e.uid})}})},e.Name)})),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"rss",content:"Re-scan for bots",onClick:function(){return c("Rescan")}})})]})},i=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data.beepsky,d=l.botstatus,u=l.active,s=d.mode,m=d.loca;switch(s){case 0:n="Ready";break;case 1:n="Apprehending target";break;case 2:case 3:n="Arresting target";break;case 4:n="Starting patrol";break;case 5:n="On patrol";break;case 6:n="Responding to summons"}return(0,o.createComponentVNode)(2,a.Section,{title:u,children:[-1===s&&(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"Waiting for response..."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:n}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Go",icon:"play",onClick:function(){return i("Go")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Stop",icon:"stop",onClick:function(){return i("Stop")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Summon",icon:"arrow-down",onClick:function(){return i("Summon")}})]})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_security=void 0;var o=n(0),r=n(1),a=n(96);t.pda_security=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n,recordType:"SEC"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_signaler=void 0;var o=n(0),r=n(1),a=n(187);t.pda_signaler=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Signaler,{data:c})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_status_display=void 0;var o=n(0),r=n(1),a=n(2);t.pda_status_display=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Code",children:[(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"trash",content:"Clear",onClick:function(){return c("Status",{statdisp:"blank"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"clock",content:"Evac ETA",onClick:function(){return c("Status",{statdisp:"shuttle"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"edit",content:"Message",onClick:function(){return c("Status",{statdisp:"message"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"exclamation-triangle",content:"Red Alert",onClick:function(){return c("Status",{statdisp:"alert",alert:"redalert"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"boxes",content:"NT Logo",onClick:function(){return c("Status",{statdisp:"alert",alert:"default"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"lock",content:"Lockdown",onClick:function(){return c("Status",{statdisp:"alert",alert:"lockdown"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"biohazard",content:"Biohazard",onClick:function(){return c("Status",{statdisp:"alert",alert:"biohazard"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 1",children:(0,o.createComponentVNode)(2,a.Button,{content:i.message1+" (set)",icon:"pen",onClick:function(){return c("Status",{statdisp:"setmsg1"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 2",children:(0,o.createComponentVNode)(2,a.Button,{content:i.message2+" (set)",icon:"pen",onClick:function(){return c("Status",{statdisp:"setmsg2"})}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_supplyrecords=void 0;var o=n(0),r=n(1),a=n(2);t.pda_supplyrecords=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.supply),i=c.shuttle_loc,l=c.shuttle_time,d=c.shuttle_moving,u=c.approved,s=c.approved_count,m=c.requests,p=c.requests_count;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Status",children:d?(0,o.createComponentVNode)(2,a.Box,{children:["In transit ",l]}):(0,o.createComponentVNode)(2,a.Box,{children:i})})}),(0,o.createComponentVNode)(2,a.Section,{mt:1,title:"Requested Orders",children:p>0&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["#",e.Number,' - "',e.Name,'" for "',e.OrderedBy,'"']},e)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Approved Orders",children:s>0&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["#",e.Number,' - "',e.Name,'" for "',e.ApprovedBy,'"']},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Pacman=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(95);t.Pacman=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.broken,s=d.anchored,m=d.active,p=d.fuel_type,f=d.fuel_usage,h=d.fuel_stored,C=d.fuel_cap,N=d.is_ai,b=d.tmp_current,g=d.tmp_max,V=d.tmp_overheat,v=d.output_max,y=d.power_gen,_=d.output_set,x=d.has_fuel,k=h/C,L=b/g,B=_*y,w=Math.round(h/f),S=Math.round(w/60),I=w>120?S+" minutes":w+" seconds";return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(u||!s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"The generator is malfunctioning!"}),!u&&!s&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"The generator needs to be anchored to the floor with a wrench."})]}),!u&&!!s&&(0,o.createVNode)(1,"div",null,[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",tooltip:"Toggles the generator on/off. Requires fuel.",tooltipPosition:"left",disabled:!x,selected:m,onClick:function(){return l("toggle_power")}}),children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",className:"ml-1",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power setting",children:[(0,o.createComponentVNode)(2,a.NumberInput,{value:_,minValue:1,maxValue:v,step:1,className:"mt-1",onDrag:function(e,t){return l("change_power",{change_power:t})}}),"(",(0,i.formatPower)(B),")"]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:L,ranges:{green:[-Infinity,.33],orange:[.33,.66],red:[.66,Infinity]},children:[b," \u2103"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[V>50&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"CRITICAL OVERHEAT!"}),V>20&&V<=50&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"WARNING: Overheating!"}),V>1&&V<=20&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Temperature High"}),0===V&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Optimal"})]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Fuel",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject Fuel",tooltip:"Ejects fuel. Generator needs to be offline.",tooltipPosition:"left",disabled:m||N||!x,onClick:function(){return l("eject_fuel")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Type",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel level",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:k,ranges:{red:[-Infinity,.33],orange:[.33,.66],green:[.66,Infinity]},children:[Math.round(h/1e3)," dm\xb3"]})})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel usage",children:[f/1e3," dm\xb3/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel depletion",children:[!!x&&(f?I:"N/A"),!x&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Out of fuel"})]})]})})]})})],4)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PersonalCrafting=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.PersonalCrafting=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.busy,m=u.category,p=u.display_craftable_only,f=u.display_compact,h=u.prev_cat,C=u.next_cat,N=u.subcategory,b=u.prev_subcat,g=u.next_subcat;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!s&&(0,o.createComponentVNode)(2,a.Dimmer,{fontSize:"32px",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"cog",spin:1})," Crafting..."]}),(0,o.createComponentVNode)(2,a.Section,{title:m,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Show Craftable Only",icon:p?"check-square-o":"square-o",selected:p,onClick:function(){return d("toggle_recipes")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Compact Mode",icon:f?"check-square-o":"square-o",selected:f,onClick:function(){return d("toggle_compact")}})],4),children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:h,icon:"arrow-left",onClick:function(){return d("backwardCat")}}),(0,o.createComponentVNode)(2,a.Button,{content:C,icon:"arrow-right",onClick:function(){return d("forwardCat")}})]}),N&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:b,icon:"arrow-left",onClick:function(){return d("backwardSubCat")}}),(0,o.createComponentVNode)(2,a.Button,{content:g,icon:"arrow-right",onClick:function(){return d("forwardSubCat")}})]}),f?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,l)]})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.display_craftable_only,d=i.can_craft,u=i.cant_craft;return(0,o.createComponentVNode)(2,a.Box,{mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",onClick:function(){return c("make",{make:e.ref})}}),e.catalyst_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.catalyst_text,content:"Catalysts",color:"transparent"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:e.req_text,content:"Requirements",color:"transparent"}),e.tool_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.tool_text,content:"Tools",color:"transparent"})]},e.name)})),!l&&u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",disabled:!0}),e.catalyst_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.catalyst_text,content:"Catalysts",color:"transparent"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:e.req_text,content:"Requirements",color:"transparent"}),e.tool_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.tool_text,content:"Tools",color:"transparent"})]},e.name)}))]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.display_craftable_only,d=i.can_craft,u=i.cant_craft;return(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[d.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",onClick:function(){return c("make",{make:e.ref})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.catalyst_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Catalysts",children:e.catalyst_text}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Requirements",children:e.req_text}),e.tool_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tools",children:e.tool_text})]})},e.name)})),!l&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",disabled:!0}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.catalyst_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Catalysts",children:e.catalyst_text}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Requirements",children:e.req_text}),e.tool_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tools",children:e.tool_text})]})},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.PodTracking=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.PodTracking=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.pods);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Position",children:[e.podx,", ",e.pody,", ",e.podz]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Passengers",children:e.passengers})]})},e.name)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PoolController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);var i={scalding:{label:"Scalding",color:"#FF0000",icon:"fa fa-arrow-circle-up",requireEmag:!0},warm:{label:"Warm",color:"#990000",icon:"fa fa-arrow-circle-up"},normal:{label:"Normal",color:null,icon:"fa fa-arrow-circle-right"},cool:{label:"Cool",color:"#009999",icon:"fa fa-arrow-circle-down"},frigid:{label:"Frigid",color:"#00CCCC",icon:"fa fa-arrow-circle-down",requireEmag:!0}},l=function(e,t){var n=e.tempKey,c=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["tempKey"]),l=i[n];if(!l)return null;var d=(0,r.useBackend)(t),u=d.data,s=d.act,m=u.currentTemp,p=l.label,f=l.icon,h=n===m;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({selected:h,onClick:function(){s("setTemp",{temp:n})}},c,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:f}),p]})))};t.PoolController=function(e,t){for(var n=(0,r.useBackend)(t).data,d=n.emagged,u=n.currentTemp,s=i[u]||i.normal,m=s.label,p=s.color,f=[],h=0,C=Object.entries(i);h0?"envelope-open-text":"envelope",onClick:function(){return i("setScreen",{setScreen:6})}})}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Assistance",icon:"hand-paper",onClick:function(){return i("setScreen",{setScreen:1})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Supplies",icon:"box",onClick:function(){return i("setScreen",{setScreen:2})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Relay Anonymous Information",icon:"comment",onClick:function(){return i("setScreen",{setScreen:3})}})})]}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Print Shipping Label",icon:"tag",onClick:function(){return i("setScreen",{setScreen:9})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"View Shipping Logs",icon:"clipboard-list",onClick:function(){return i("setScreen",{setScreen:10})}})})]}),!!u&&(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{content:"Send Station-Wide Announcement",icon:"bullhorn",onClick:function(){return i("setScreen",{setScreen:8})}})}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{content:s?"Speaker Off":"Speaker On",selected:!s,icon:s?"volume-mute":"volume-up",onClick:function(){return i("toggleSilent")}})})]})},l=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=d.department;switch(e.purpose){case"ASSISTANCE":n=d.assist_dept,c="Request assistance from another department";break;case"SUPPLIES":n=d.supply_dept,c="Request supplies from another department";break;case"INFO":n=d.info_dept,c="Relay information to another department"}return(0,o.createComponentVNode)(2,a.Section,{title:c,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return l("setScreen",{setScreen:0})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.filter((function(e){return e!==u})).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:[(0,o.createComponentVNode)(2,a.Button,{content:"Message",icon:"envelope",onClick:function(){return l("writeInput",{write:e,priority:1})}}),(0,o.createComponentVNode)(2,a.Button,{content:"High Priority",icon:"exclamation-circle",onClick:function(){return l("writeInput",{write:e,priority:2})}})]},e)}))})})},d=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act;c.data;switch(e.type){case"SUCCESS":n="Message sent successfully";break;case"FAIL":n="Request supplies from another department"}return(0,o.createComponentVNode)(2,a.Section,{title:n,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return i("setScreen",{setScreen:0})}})})},u=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data;switch(e.type){case"MESSAGES":n=d.message_log,c="Message Log";break;case"SHIPPING":n=d.shipping_log,c="Shipping label print log"}return(0,o.createComponentVNode)(2,a.Section,{title:c,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return l("setScreen",{setScreen:0})}}),children:n.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.map((function(e,t){return(0,o.createVNode)(1,"div",null,e,0,null,t)})),(0,o.createVNode)(1,"hr")]},e)}))})},s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.recipient,d=i.message,u=i.msgVerified,s=i.msgStamped;return(0,o.createComponentVNode)(2,a.Section,{title:"Message Authentication",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Recipient",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Validated by",color:"green",children:u}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Stamped by",color:"blue",children:s})]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Send Message",icon:"envelope",onClick:function(){return c("department",{department:l})}})]})},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.message,d=i.announceAuth;return(0,o.createComponentVNode)(2,a.Section,{title:"Station-Wide Announcement",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.Button,{content:l||"Edit Message",icon:"edit",onClick:function(){return c("writeAnnouncement")}}),d?(0,o.createComponentVNode)(2,a.Box,{mt:1,color:"green",children:"ID verified. Authentication accepted."}):(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Swipe your ID card to authenticate yourself."}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Send Announcement",icon:"bullhorn",disabled:!(d&&l),onClick:function(){return c("sendAnnouncement")}})]})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.shipDest,d=i.msgVerified,u=i.ship_dept;return(0,o.createComponentVNode)(2,a.Section,{title:"Print Shipping Label",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Destination",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Validated by",children:d})]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Print Label",icon:"print",disabled:!(l&&d),onClick:function(){return c("printLabel")}}),(0,o.createComponentVNode)(2,a.Section,{title:"Destinations",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:(0,o.createComponentVNode)(2,a.Button,{content:l===e?"Selected":"Select",selected:l===e,onClick:function(){return c("shipSelect",{shipSelect:e})}})},e)}))})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.CurrentLevels=void 0;var o=n(0),r=n(1),a=n(2);t.CurrentLevels=function(e,t){var n=(0,r.useBackend)(t).data.tech_levels;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createVNode)(1,"h3",null,"Current Research Levels:",16),n.map((function(e,t){var n=e.name,r=e.level,c=e.desc;return(0,o.createComponentVNode)(2,a.Box,{children:[t>0?(0,o.createComponentVNode)(2,a.Divider):null,(0,o.createComponentVNode)(2,a.Box,{children:n}),(0,o.createComponentVNode)(2,a.Box,{children:["* Level: ",r]}),(0,o.createComponentVNode)(2,a.Box,{children:["* Summary: ",c]})]},n)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.DataDiskMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62),l=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_data;return l?(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:l.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:l.level}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:l.desc})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload to Database",icon:"arrow-up",onClick:function(){return i("updt_tech")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Clear Disk",icon:"trash",onClick:function(){return i("clear_tech")}}),(0,o.createComponentVNode)(2,s)]})]}):null},d=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_data;if(!l)return null;var d=l.name,u=l.lathe_types,m=l.materials,p=u.join(", ");return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:d}),p?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lathe Types",children:p}):null,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Required Materials"})]}),m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["- ",(0,o.createVNode)(1,"span",null,e.name,0,{style:{"text-transform":"capitalize"}})," x ",e.amount]},e.name)})),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload to Database",icon:"arrow-up",onClick:function(){return i("updt_design")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Clear Disk",icon:"trash",onClick:function(){return i("clear_design")}}),(0,o.createComponentVNode)(2,s)]})]})},u=function(e,t){var n=(0,r.useBackend)(t).data.disk_type;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{children:"This disk is empty."}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,c.RndNavButton,{submenu:i.SUBMENU.DISK_COPY,icon:"arrow-down",content:"tech"===n?"Load Tech to Disk":"Load Design to Disk"}),(0,o.createComponentVNode)(2,s)]})]})},s=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_type;return l?(0,o.createComponentVNode)(2,a.Button,{content:"Eject Disk",icon:"eject",onClick:function(){i("tech"===l?"eject_tech":"eject_design")}}):null},m=function(e,t){var n=(0,r.useBackend)(t).data,c=n.disk_data,i=n.disk_type;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk Contents",children:function(){if(!c)return(0,o.createComponentVNode)(2,u);switch(i){case"design":return(0,o.createComponentVNode)(2,d);case"tech":return(0,o.createComponentVNode)(2,l);default:return null}}()})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_type,d=c.to_copy;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{overflowY:"auto",overflowX:"hidden",maxHeight:"450px",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.sort((function(e,t){return e.name.localeCompare(t.name)})).map((function(e){var t=e.name,n=e.id;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:t,children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",content:"Copy to Disk",onClick:function(){i("tech"===l?"copy_tech":"copy_design",{id:n})}})},n)}))})})})};t.DataDiskMenu=function(e,t){return(0,r.useBackend)(t).data.disk_type?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,m)}}),(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.DISK_COPY,render:function(){return(0,o.createComponentVNode)(2,p)}})],4):null}},function(e,t,n){"use strict";t.__esModule=!0,t.DeconstructionMenu=void 0;var o=n(0),r=n(1),a=n(2);t.DeconstructionMenu=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_item;return c.linked_destroy?l?(0,o.createComponentVNode)(2,a.Section,{noTopPadding:!0,title:"Deconstruction Menu",children:[(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:["Name: ",l.name]}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:(0,o.createVNode)(1,"h3",null,"Origin Tech:",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:l.origin_tech.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* "+e.name,children:[e.object_level," ",e.current_level?(0,o.createFragment)([(0,o.createTextVNode)("(Current: "),e.current_level,(0,o.createTextVNode)(")")],0):null]},e.name)}))}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:(0,o.createVNode)(1,"h3",null,"Options:",16)}),(0,o.createComponentVNode)(2,a.Button,{content:"Deconstruct Item",icon:"unlink",onClick:function(){i("deconstruct")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Eject Item",icon:"eject",onClick:function(){i("eject_item")}})]}):(0,o.createComponentVNode)(2,a.Section,{title:"Deconstruction Menu",children:"No item loaded. Standing by..."}):(0,o.createComponentVNode)(2,a.Box,{children:"NO DESTRUCTIVE ANALYZER LINKED TO CONSOLE"})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheCategory=void 0;var o=n(0),r=n(1),a=n(2),c=n(50);t.LatheCategory=function(e,t){var n=(0,r.useBackend)(t),i=n.data,l=n.act,d=i.category,u=i.matching_designs,s=4===i.menu?"build":"imprint";return(0,o.createComponentVNode)(2,a.Section,{title:d,children:[(0,o.createComponentVNode)(2,c.LatheMaterials),(0,o.createComponentVNode)(2,a.Table,{className:"RndConsole__LatheCategory__MatchingDesigns",children:u.map((function(e){var t=e.id,n=e.name,r=e.can_build,c=e.materials;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:n,disabled:r<1,onClick:function(){return l(s,{id:t,amount:1})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:r>=5?(0,o.createComponentVNode)(2,a.Button,{content:"x5",onClick:function(){return l(s,{id:t,amount:5})}}):null}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:r>=10?(0,o.createComponentVNode)(2,a.Button,{content:"x10",onClick:function(){return l(s,{id:t,amount:10})}}):null}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:c.map((function(e){return(0,o.createFragment)([" | ",(0,o.createVNode)(1,"span",e.is_red?"color-red":null,[e.amount,(0,o.createTextVNode)(" "),e.name],0)],0)}))})]},t)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheChemicalStorage=void 0;var o=n(0),r=n(1),a=n(2);t.LatheChemicalStorage=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_chemicals,d=4===c.menu;return(0,o.createComponentVNode)(2,a.Section,{title:"Chemical Storage",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Purge All",icon:"trash",onClick:function(){i(d?"disposeallP":"disposeallI")}}),(0,o.createComponentVNode)(2,a.LabeledList,{children:l.map((function(e){var t=e.volume,n=e.name,r=e.id;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* "+t+" of "+n,children:(0,o.createComponentVNode)(2,a.Button,{content:"Purge",icon:"trash",onClick:function(){i(d?"disposeP":"disposeI",{id:r})}})},r)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMainMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50);t.LatheMainMenu=function(e,t){var n=(0,r.useBackend)(t),i=n.data,l=n.act,d=i.menu,u=i.categories,s=4===d?"Protolathe":"Circuit Imprinter";return(0,o.createComponentVNode)(2,a.Section,{title:s+" Menu",children:[(0,o.createComponentVNode)(2,c.LatheMaterials),(0,o.createComponentVNode)(2,c.LatheSearch),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{style:{"flex-basis":"50%","margin-bottom":"6px"},children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-right",content:e,onClick:function(){l("setCategory",{category:e})}})},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMaterials=void 0;var o=n(0),r=n(1),a=n(2);t.LatheMaterials=function(e,t){var n=(0,r.useBackend)(t).data,c=n.total_materials,i=n.max_materials,l=n.max_chemicals,d=n.total_chemicals;return(0,o.createComponentVNode)(2,a.Box,{className:"RndConsole__LatheMaterials",mb:"10px",children:(0,o.createComponentVNode)(2,a.Table,{width:"auto",children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Material Amount:"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:c}),i?(0,o.createComponentVNode)(2,a.Table.Cell,{children:" / "+i}):null]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Chemical Amount:"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:d}),l?(0,o.createComponentVNode)(2,a.Table.Cell,{children:" / "+l}):null]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMaterialStorage=void 0;var o=n(0),r=n(1),a=n(2);t.LatheMaterialStorage=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_materials;return(0,o.createComponentVNode)(2,a.Section,{className:"RndConsole__LatheMaterialStorage",title:"Material Storage",children:(0,o.createComponentVNode)(2,a.Table,{children:l.map((function(e){var t=e.id,n=e.amount,r=e.name,l=function(e){var n=4===c.menu?"lathe_ejectsheet":"imprinter_ejectsheet";i(n,{id:t,amount:e})},d=Math.floor(n/2e3),u=n<1,s=1===d?"":"s";return(0,o.createComponentVNode)(2,a.Table.Row,{className:u?"color-grey":"color-yellow",children:[(0,o.createComponentVNode)(2,a.Table.Cell,{minWidth:"210px",children:["* ",n," of ",r]}),(0,o.createComponentVNode)(2,a.Table.Cell,{minWidth:"110px",children:["(",d," sheet",s,")"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:n>=2e3?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"1x",icon:"eject",onClick:function(){return l(1)}}),(0,o.createComponentVNode)(2,a.Button,{content:"C",icon:"eject",onClick:function(){return l("custom")}}),n>=1e4?(0,o.createComponentVNode)(2,a.Button,{content:"5x",icon:"eject",onClick:function(){return l(5)}}):null,(0,o.createComponentVNode)(2,a.Button,{content:"All",icon:"eject",onClick:function(){return l(50)}})],0):null})]},t)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMenu=void 0;var o=n(0),r=n(1),a=n(189),c=n(50),i=n(2),l=n(62);t.LatheMenu=function(e,t){var n=(0,r.useBackend)(t).data,d=n.menu,u=n.linked_lathe,s=n.linked_imprinter;return 4!==d||u?5!==d||s?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,c.LatheMainMenu)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_CATEGORY,render:function(){return(0,o.createComponentVNode)(2,c.LatheCategory)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_MAT_STORAGE,render:function(){return(0,o.createComponentVNode)(2,c.LatheMaterialStorage)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_CHEM_STORAGE,render:function(){return(0,o.createComponentVNode)(2,c.LatheChemicalStorage)}})]}):(0,o.createComponentVNode)(2,i.Box,{children:"NO CIRCUIT IMPRITER LINKED TO CONSOLE"}):(0,o.createComponentVNode)(2,i.Box,{children:"NO PROTOLATHE LINKED TO CONSOLE"})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheSearch=void 0;var o=n(0),r=n(1),a=n(2);t.LatheSearch=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"Search...",onChange:function(e,t){return n("search",{to_search:t})}})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MainMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62);t.MainMenu=function(e,t){var n=(0,r.useBackend)(t).data,l=n.disk_type,d=n.linked_destroy,u=n.linked_lathe,s=n.linked_imprinter,m=n.tech_levels;return(0,o.createComponentVNode)(2,a.Section,{title:"Main Menu",children:[(0,o.createComponentVNode)(2,a.Flex,{className:"RndConsole__MainMenu__Buttons",direction:"column",align:"flex-start",children:[(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!l,menu:i.MENU.DISK,submenu:i.SUBMENU.MAIN,icon:"save",content:"Disk Operations"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!d,menu:i.MENU.DESTROY,submenu:i.SUBMENU.MAIN,icon:"unlink",content:"Destructive Analyzer Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!u,menu:i.MENU.LATHE,submenu:i.SUBMENU.MAIN,icon:"print",content:"Protolathe Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!s,menu:i.MENU.IMPRINTER,submenu:i.SUBMENU.MAIN,icon:"print",content:"Circuit Imprinter Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{menu:i.MENU.SETTINGS,submenu:i.SUBMENU.MAIN,icon:"cog",content:"Settings"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"12px"}),(0,o.createVNode)(1,"h3",null,"Current Research Levels:",16),(0,o.createComponentVNode)(2,a.LabeledList,{children:m.map((function(e){var t=e.name,n=e.level;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:t,children:n},t)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RndNavbar=void 0;var o=n(0),r=n(50),a=n(2),c=n(62);t.RndNavbar=function(){return(0,o.createComponentVNode)(2,a.Box,{className:"RndConsole__RndNavbar",children:[(0,o.createComponentVNode)(2,r.RndRoute,{menu:function(e){return e!==c.MENU.MAIN},render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{menu:c.MENU.MAIN,submenu:c.SUBMENU.MAIN,icon:"reply",content:"Main Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{submenu:function(e){return e!==c.SUBMENU.MAIN},render:function(){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.DISK,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Disk Operations Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.LATHE,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Protolathe Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.IMPRINTER,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Circuit Imprinter Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.SETTINGS,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Settings Menu"})}})]})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:function(e){return e===c.MENU.LATHE||e===c.MENU.IMPRINTER},submenu:c.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.LATHE_MAT_STORAGE,icon:"arrow-up",content:"Material Storage"}),(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.LATHE_CHEM_STORAGE,icon:"arrow-up",content:"Chemical Storage"})]})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RndNavButton=void 0;var o=n(0),r=n(1),a=n(2);t.RndNavButton=function(e,t){var n=e.icon,c=e.children,i=e.disabled,l=e.content,d=(0,r.useBackend)(t),u=d.data,s=d.act,m=u.menu,p=u.submenu,f=m,h=p;return null!==e.menu&&e.menu!==undefined&&(f=e.menu),null!==e.submenu&&e.submenu!==undefined&&(h=e.submenu),(0,o.createComponentVNode)(2,a.Button,{content:l,icon:n,disabled:i,onClick:function(){s("nav",{menu:f,submenu:h})},children:c})}},function(e,t,n){"use strict";t.__esModule=!0,t.SettingsMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62);t.SettingsMenu=function(e,t){var n=(0,r.useBackend)(t),l=n.data,d=n.act,u=l.sync,s=l.admin,m=l.linked_destroy,p=l.linked_lathe,f=l.linked_imprinter;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",align:"flex-start",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Sync Database with Network",icon:"sync",disabled:!u,onClick:function(){d("sync")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Connect to Research Network",icon:"plug",disabled:u,onClick:function(){d("togglesync")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,icon:"unlink",content:"Disconnect from Research Network",onClick:function(){d("togglesync")}}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!u,content:"Device Linkage Menu",icon:"link",menu:i.MENU.SETTINGS,submenu:i.SUBMENU.SETTINGS_DEVICES}),1===s?(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation",content:"[ADMIN] Maximize Research Levels",onClick:function(){return d("maxresearch")}}):null]})})}}),(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.SETTINGS_DEVICES,render:function(){return(0,o.createComponentVNode)(2,a.Section,{title:"Device Linkage Menu",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"link",content:"Re-sync with Nearby Devices",onClick:function(){return d("find_device")}}),(0,o.createComponentVNode)(2,a.Box,{mt:"5px",children:(0,o.createVNode)(1,"h3",null,"Linked Devices:",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Destructive Analyzer",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){return d("disconnect",{item:"destroy"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Destructive Analyzer Linked"}),p?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Protolathe",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){d("disconnect",{item:"lathe"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Protolathe Linked"}),f?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Circuit Imprinter",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){return d("disconnect",{item:"imprinter"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Circuit Imprinter Linked"})]})]})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RobotSelfDiagnosis=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(19),l=function(e,t){var n=e/t;return n<=.2?"good":n<=.5?"average":"bad"};t.RobotSelfDiagnosis=function(e,t){var n=(0,r.useBackend)(t).data.component_data;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Section,{title:(0,i.capitalize)(e.name),children:e.installed<=0?(0,o.createComponentVNode)(2,a.NoticeBox,{m:-.5,height:3.5,color:"red",style:{"font-style":"normal"},children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"center",align:"center",color:"#e8e8e8",children:-1===e.installed?"Destroyed":"Missing"})})}):(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"72%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Brute Damage",color:l(e.brute_damage,e.max_damage),children:e.brute_damage}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Burn Damage",color:l(e.electronic_damage,e.max_damage),children:e.electronic_damage})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Powered",color:e.powered?"good":"bad",children:e.powered?"Yes":"No"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Enabled",color:e.status?"good":"bad",children:e.status?"Yes":"No"})]})})]})},t)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RoboticsControlConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.RoboticsControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.can_hack,s=d.safety,m=d.show_detonate_all,p=d.cyborgs,f=void 0===p?[]:p;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Emergency Self Destruct",children:[(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock":"unlock",content:s?"Disable Safety":"Enable Safety",selected:s,onClick:function(){return l("arm",{})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",disabled:s,content:"Destroy ALL Cyborgs",color:"bad",onClick:function(){return l("nuke",{})}})]}),(0,o.createComponentVNode)(2,i,{cyborgs:f,can_hack:u})]})})};var i=function(e,t){var n=e.cyborgs,c=(e.can_hack,(0,r.useBackend)(t)),i=c.act,l=c.data;return n.length?n.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([!!e.hackable&&!e.emagged&&(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:"Hack",color:"bad",onClick:function(){return i("hackbot",{uid:e.uid})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:e.locked_down?"unlock":"lock",color:e.locked_down?"good":"default",content:e.locked_down?"Release":"Lockdown",disabled:!l.auth,onClick:function(){return i("stopbot",{uid:e.uid})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"bomb",content:"Detonate",disabled:!l.auth,color:"bad",onClick:function(){return i("killbot",{uid:e.uid})}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Box,{color:e.status?"bad":e.locked_down?"average":"good",children:e.status?"Not Responding":e.locked_down?"Locked Down":"Nominal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,o.createComponentVNode)(2,a.Box,{children:e.locstring})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.health>50?"good":"bad",value:e.health/100})}),"number"==typeof e.charge&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.charge>30?"good":"bad",value:e.charge/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Capacity",children:(0,o.createComponentVNode)(2,a.Box,{color:e.cell_capacity<3e4?"average":"good",children:e.cell_capacity})})],4)||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Power Cell"})}),!!e.is_hacked&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Module",children:e.module}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master AI",children:(0,o.createComponentVNode)(2,a.Box,{color:e.synchronization?"default":"average",children:e.synchronization||"None"})})]})},e.uid)})):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cyborg units detected within access parameters."})}},function(e,t,n){"use strict";t.__esModule=!0,t.Safe=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Safe=function(e,t){var n=(0,r.useBackend)(t),u=(n.act,n.data),s=u.dial,m=u.open;u.locked,u.contents;return(0,o.createComponentVNode)(2,c.Window,{theme:"safe",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving",children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving--hinge",top:"25%"}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving--hinge",top:"75%"})]}),(0,o.createComponentVNode)(2,a.Icon,{className:"Safe--engraving--arrow",name:"long-arrow-alt-down",size:"3"}),(0,o.createVNode)(1,"br"),m?(0,o.createComponentVNode)(2,l):(0,o.createComponentVNode)(2,a.Box,{as:"img",className:"Safe--dial",src:"safe_dial.png",style:{transform:"rotate(-"+3.6*s+"deg)","z-index":0}})]}),!m&&(0,o.createComponentVNode)(2,d)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.dial,d=i.open,u=i.locked,s=function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:d||t&&!u,icon:"arrow-"+(t?"right":"left"),content:(t?"Right":"Left")+" "+e,iconRight:t,onClick:function(){return c(t?"turnleft":"turnright",{num:e})},style:{"z-index":10}})};return(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:u,icon:d?"lock":"lock-open",content:d?"Close":"Open",mb:"0.5rem",onClick:function(){return c("open")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{position:"absolute",children:[s(50),s(10),s(1)]}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer--right",position:"absolute",right:"5px",children:[s(1,!0),s(10,!0),s(50,!0)]}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer--number",children:l})]})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.contents;return(0,o.createComponentVNode)(2,a.Box,{className:"Safe--contents",overflow:"auto",children:i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{mb:"0.5rem",onClick:function(){return c("retrieve",{index:t+1})},children:[(0,o.createComponentVNode)(2,a.Box,{as:"img",src:e.sprite+".png",verticalAlign:"middle",ml:"-6px",mr:"0.5rem"}),e.name]}),(0,o.createVNode)(1,"br")],4,e)}))})},d=function(e,t){return(0,o.createComponentVNode)(2,a.Section,{className:"Safe--help",title:"Safe opening instructions (because you all keep forgetting)",children:[(0,o.createComponentVNode)(2,a.Box,{children:["1. Turn the dial left to the first number.",(0,o.createVNode)(1,"br"),"2. Turn the dial right to the second number.",(0,o.createVNode)(1,"br"),"3. Continue repeating this process for each number, switching between left and right each time.",(0,o.createVNode)(1,"br"),"4. Open the safe."]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:"To lock fully, turn the dial to the left after closing the safe."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.SatelliteControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SatelliteControl=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.satellites,u=l.notice,s=l.meteor_shield,m=l.meteor_shield_coverage,p=l.meteor_shield_coverage_max,f=l.meteor_shield_coverage_percentage;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[s&&(0,o.createComponentVNode)(2,a.Section,{title:"Station Shield Coverage",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:f>=100?"good":"average",value:m,maxValue:p,children:[f," %"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Satellite Network Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alert",color:"red",children:l.notice}),d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"#"+e.id,children:[e.mode," ",(0,o.createComponentVNode)(2,a.Button,{content:e.active?"Deactivate":"Activate",icon:"arrow-circle-right",onClick:function(){return i("toggle",{id:e.id})}})]},e.id)}))]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SecurityRecords=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(75),l=n(4),d=n(49),u=n(132),s=n(133),m=n(136),p={"*Execute*":"execute","*Arrest*":"arrest",Incarcerated:"incarcerated",Parolled:"parolled",Released:"released",Demote:"demote",Search:"search",Monitor:"monitor"},f=function(e,t){(0,d.modalOpen)(e,"edit",{field:t.edit,value:t.value})};t.SecurityRecords=function(e,t){var n,r=(0,a.useBackend)(t),i=(r.act,r.data),p=i.loginState,f=i.currentPage;return p.logged_in?(1===f?n=(0,o.createComponentVNode)(2,C):2===f&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,l.Window,{theme:"security",resizable:!0,children:[(0,o.createComponentVNode)(2,d.ComplexModal),(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u.LoginInfo),(0,o.createComponentVNode)(2,m.TemporaryNotice),(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,c.Section,{height:"100%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,l.Window,{theme:"security",resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,s.LoginScreen)})})};var h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.currentPage,d=i.general;return(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===l,onClick:function(){return r("page",{page:1})},children:[(0,o.createComponentVNode)(2,c.Icon,{name:"list"}),"List Records"]}),2===l&&d&&!d.empty&&(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===l,children:[(0,o.createComponentVNode)(2,c.Icon,{name:"file"}),"Record: ",d.fields[0].value]})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.records,d=(0,a.useLocalState)(t,"searchText",""),u=d[0],s=(d[1],(0,a.useLocalState)(t,"sortId","name")),m=s[0],f=(s[1],(0,a.useLocalState)(t,"sortOrder",!0)),h=f[0];f[1];return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,b),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Table,{className:"SecurityRecords__list",children:[(0,o.createComponentVNode)(2,c.Table.Row,{bold:!0,children:[(0,o.createComponentVNode)(2,N,{id:"name",children:"Name"}),(0,o.createComponentVNode)(2,N,{id:"id",children:"ID"}),(0,o.createComponentVNode)(2,N,{id:"rank",children:"Assignment"}),(0,o.createComponentVNode)(2,N,{id:"fingerprint",children:"Fingerprint"}),(0,o.createComponentVNode)(2,N,{id:"status",children:"Criminal Status"})]}),l.filter((0,r.createSearch)(u,(function(e){return e.name+"|"+e.id+"|"+e.rank+"|"+e.fingerprint+"|"+e.status}))).sort((function(e,t){var n=h?1:-1;return e[m].localeCompare(t[m])*n})).map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{className:"SecurityRecords__listRow--"+p[e.status],onClick:function(){return i("view",{uid_gen:e.uid_gen,uid_sec:e.uid_sec})},children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",e.name]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.id}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.rank}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.fingerprint}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.status})]},e.id)}))]})})]})},N=function(e,t){var n=(0,a.useLocalState)(t,"sortId","name"),r=n[0],i=n[1],l=(0,a.useLocalState)(t,"sortOrder",!0),d=l[0],u=l[1],s=e.id,m=e.children;return(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,c.Button,{color:r!==s&&"transparent",width:"100%",onClick:function(){r===s?u(!d):(i(s),u(!0))},children:[m,r===s&&(0,o.createComponentVNode)(2,c.Icon,{name:d?"sort-up":"sort-down",ml:"0.25rem;"})]})})},b=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data.isPrinting,u=(0,a.useLocalState)(t,"searchText",""),s=(u[0],u[1]);return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,i.FlexItem,{children:[(0,o.createComponentVNode)(2,c.Button,{content:"New Record",icon:"plus",onClick:function(){return r("new_general")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:l?"spinner":"print",iconSpin:!!l,content:"Print Cell Log",ml:"0.25rem",onClick:function(){return(0,d.modalOpen)(t,"print_cell_log")}})]}),(0,o.createComponentVNode)(2,i.FlexItem,{grow:"1",ml:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by Name, ID, Assignment, Fingerprint, Status",width:"100%",onInput:function(e,t){return s(t)}})})]})},g=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.isPrinting,d=i.general,u=i.security;return d&&d.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"General Data",level:2,mt:"-6px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:l?"spinner":"print",iconSpin:!!l,content:"Print Record",onClick:function(){return r("print_record")}}),(0,o.createComponentVNode)(2,c.Button.Confirm,{icon:"trash",tooltip:"WARNING: This will also delete the Security and Medical records associated to this crew member!",tooltipPosition:"bottom-left",content:"Delete Record",onClick:function(){return r("delete_general")}})],4),children:(0,o.createComponentVNode)(2,V)}),(0,o.createComponentVNode)(2,c.Section,{title:"Security Data",level:2,mt:"-12px",buttons:(0,o.createComponentVNode)(2,c.Button.Confirm,{icon:"trash",disabled:u.empty,content:"Delete Record",onClick:function(){return r("delete_security")}}),children:(0,o.createComponentVNode)(2,v)})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"General records lost!"})},V=function(e,t){var n=(0,a.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{float:"left",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.field,children:[(0,r.decodeHtmlEntities)(""+e.value),!!e.edit&&(0,o.createComponentVNode)(2,c.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return f(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,c.Box,{position:"absolute",right:"0",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e,style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"General records lost!"})},v=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.security;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.field,children:[(0,r.decodeHtmlEntities)(e.value),!!e.edit&&(0,o.createComponentVNode)(2,c.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return f(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Comments/Log",level:2,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"comment",content:"Add Entry",onClick:function(){return(0,d.modalOpen)(t,"comment_add")}}),children:0===l.comments.length?(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{color:"label",display:"inline",children:e.header||"Auto-generated"}),(0,o.createVNode)(1,"br"),e.text||e,(0,o.createComponentVNode)(2,c.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return i("comment_delete",{id:t+1})}})]},t)}))})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:["Security records lost!",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Create New Record",mt:"0.5rem",onClick:function(){return i("new_security")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(77);t.ShuttleConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:d.status?d.status:(0,o.createComponentVNode)(2,a.NoticeBox,{color:"red",children:"Shuttle Missing"})}),!!d.shuttle&&(!!d.docking_ports_len&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Send to ",children:d.docking_ports.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-right",content:e.name,onClick:function(){return l("move",{move:e.id})}},e.name)}))})||(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledListItem,{label:"Status",color:"red",children:(0,o.createComponentVNode)(2,a.NoticeBox,{color:"red",children:"Shuttle Locked"})}),!!d.admin_controlled&&(0,o.createComponentVNode)(2,i.LabeledListItem,{label:"Authorization",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-circle",content:"Request Authorization",disabled:!d.status,onClick:function(){return l("request")}})})],0))]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleManipulator=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ShuttleManipulator=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),u=n[0],s=n[1];return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},icon:"info-circle",content:"Status"},"Status"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},icon:"file-import",content:"Templates"},"Templates"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===u,onClick:function(){return s(2)},icon:"tools",content:"Modification"},"Modification")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,i);case 1:return(0,o.createComponentVNode)(2,l);case 2:return(0,o.createComponentVNode)(2,d);default:return"WE SHOULDN'T BE HERE!"}}(u)]})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.shuttles;return(0,o.createComponentVNode)(2,a.Box,{children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:e.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Timer",children:e.timeleft}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Mode",children:e.mode}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Status",children:e.status}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Jump To",icon:"location-arrow",onClick:function(){return c("jump_to",{type:"mobile",id:e.id})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Fast Travel",icon:"fast-forward",onClick:function(){return c("fast_travel",{id:e.id})}})]})]})},e.name)}))})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.templates_tabs,d=i.existing_shuttle,u=i.templates;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Tabs,{children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:e===d.id,icon:"file",content:e,onClick:function(){return c("select_template_category",{cat:e})}},e)}))}),!!d&&u[d.id].templates.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.description&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:e.description}),e.admin_notes&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Admin Notes",children:e.admin_notes}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{content:"Load Template",icon:"download",onClick:function(){return c("select_template",{shuttle_id:e.shuttle_id})}})})]})},e.name)}))]})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.existing_shuttle,d=i.selected;return(0,o.createComponentVNode)(2,a.Box,{children:[l?(0,o.createComponentVNode)(2,a.Section,{title:"Selected Shuttle: "+l.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:l.status}),l.timer&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Timer",children:l.timeleft}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{content:"Jump To",icon:"location-arrow",onClick:function(){return c("jump_to",{type:"mobile",id:l.id})}})})]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Selected Shuttle: None"}),d?(0,o.createComponentVNode)(2,a.Section,{title:"Selected Template: "+d.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.description&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:d.description}),d.admin_notes&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Admin Notes",children:d.admin_notes}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Preview",icon:"eye",onClick:function(){return c("preview",{shuttle_id:d.shuttle_id})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Load",icon:"download",onClick:function(){return c("load",{shuttle_id:d.shuttle_id})}})]})]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Selected Template: None"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Sleeper=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(4),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.Sleeper=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.hasOccupant?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,N));return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[r,(0,o.createComponentVNode)(2,h)]})})};var m=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,C)],4)},p=function(e,t){var n=(0,a.useBackend)(t),i=n.act,d=n.data,u=d.occupant,m=d.auto_eject_dead;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{color:"label",display:"inline",children:"Auto-eject if dead:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{icon:m?"toggle-on":"toggle-off",selected:m,content:m?"On":"Off",onClick:function(){return i("auto_eject_dead_"+(m?"off":"on"))}}),(0,o.createComponentVNode)(2,c.Button,{icon:"user-slash",content:"Eject",onClick:function(){return i("ejectify")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]},children:(0,r.round)(u.health,0)})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.maxTemp,value:u.bodyTemperature/u.maxTemp,color:s[u.temperatureSuitability+3],children:[(0,r.round)(u.btCelsius,0),"\xb0C,",(0,r.round)(u.btFaren,0),"\xb0F"]})}),!!u.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.bloodMax,value:u.bloodLevel/u.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[u.bloodPercent,"%, ",u.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pulse",verticalAlign:"middle",children:[u.pulse," BPM"]})],4)]})})},f=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant Damage",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e[0],children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]],0)},t)},t)}))})})},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.hasOccupant,d=i.isBeakerLoaded,u=i.beakerMaxSpace,s=i.beakerFreeSpace,m=i.dialysis&&s>0;return(0,o.createComponentVNode)(2,c.Section,{title:"Dialysis",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:!d||s<=0||!l,selected:m,icon:m?"toggle-on":"toggle-off",content:m?"Active":"Inactive",onClick:function(){return r("togglefilter")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!d,icon:"eject",content:"Eject",onClick:function(){return r("removebeaker")}})],4),children:d?(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Remaining Space",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u,value:s/u,ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},children:[s,"u"]})})}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No beaker loaded."})})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.occupant,d=i.chemicals,u=i.maxchem,s=i.amounts;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant Chemicals",flexGrow:"1",children:d.map((function(e,t){var n,a="";return e.overdosing?(a="bad",n=(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-circle"}),"\xa0 Overdosing!"]})):e.od_warning&&(a="average",n=(0,o.createComponentVNode)(2,c.Box,{color:"average",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-triangle"}),"\xa0 Close to overdosing"]})),(0,o.createComponentVNode)(2,c.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{title:e.title,level:"3",mx:"0",lineHeight:"18px",buttons:n,children:(0,o.createComponentVNode)(2,c.Flex,{align:"flex-start",children:[(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u,value:e.occ_amount/u,color:a,title:"Amount of chemicals currently inside the occupant / Total amount injectable by this machine",mr:"0.5rem",children:[e.pretty_amount,"/",u,"u"]}),s.map((function(t,n){return(0,o.createComponentVNode)(2,c.Button,{disabled:!e.injectable||e.occ_amount+t>u||2===l.stat,icon:"syringe",content:"Inject "+t+"u",title:"Inject "+t+"u of "+e.title+" into the occupant",mb:"0",height:"19px",onClick:function(){return r("chemical",{chemid:e.id,amount:t})}},n)}))]})})},t)}))})},N=function(e,t){return(0,o.createComponentVNode)(2,c.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SlotMachine=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SlotMachine=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return null===d.money?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{children:"Could not scan your card or could not find account!"}),(0,o.createComponentVNode)(2,a.Box,{children:"Please wear or hold your ID and try again."})]})})}):(n=1===d.plays?d.plays+" player has tried their luck today!":d.plays+" players have tried their luck today!",(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{lineHeight:2,children:n}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Credits Remaining",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d.money})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"50 credits to spin",children:(0,o.createComponentVNode)(2,a.Button,{icon:"coins",disabled:d.working,content:d.working?"Spinning...":"Spin",onClick:function(){return l("spin")}})})]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,lineHeight:2,color:d.resultlvl,children:d.result})]})})}))}},function(e,t,n){"use strict";t.__esModule=!0,t.Smartfridge=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Smartfridge=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.secure,u=l.can_dry,s=l.drying,m=l.contents;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[!!d&&(0,o.createComponentVNode)(2,a.Section,{title:"Secure",children:(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Secure Access: Please have your identification ready."})}),!!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Drying rack",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"power-off":"times",content:s?"On":"Off",selected:s,onClick:function(){return i("drying")}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Contents",children:[!m&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:" No products loaded. "}),!!m&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{direction:"row",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"45%",children:e.display_name}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"25%",children:["(",e.quantity," in stock)"]}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"30%",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",tooltip:"Dispense one.",content:"1",onClick:function(){return i("vend",{index:e.vend,amount:1})}}),(0,o.createComponentVNode)(2,a.NumberInput,{width:"40px",minValue:0,value:0,maxValue:e.quantity,step:1,stepPixelSize:3,onChange:function(t,n){return i("vend",{index:e.vend,amount:n})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",content:"All",tooltip:"Dispense all. ",onClick:function(){return i("vend",{index:e.vend,amount:e.quantity})}})]})]},e)}))]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Smes=void 0;var o=n(0),r=n(1),a=n(2),c=n(95),i=n(4);t.Smes=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.capacityPercent,s=(d.capacity,d.charge),m=d.inputAttempt,p=d.inputting,f=d.inputLevel,h=d.inputLevelMax,C=d.inputAvailable,N=d.outputAttempt,b=d.outputting,g=d.outputLevel,V=d.outputLevelMax,v=d.outputUsed,y=(u>=100?"good":p&&"average")||"bad",_=(b?"good":s>0&&"average")||"bad";return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:.01*u,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"sync-alt":"times",selected:m,onClick:function(){return l("tryinput")},children:m?"Auto":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:y,children:(u>=100?"Fully Charged":p&&"Charging")||"Not Charging"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Input",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===f,onClick:function(){return l("input",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===f,onClick:function(){return l("input",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:f/1e3,fillValue:C/1e3,minValue:0,maxValue:h/1e3,step:5,stepPixelSize:4,format:function(e){return(0,c.formatPower)(1e3*e,1)},onChange:function(e,t){return l("input",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:f===h,onClick:function(){return l("input",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:f===h,onClick:function(){return l("input",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available",children:(0,c.formatPower)(C)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:N?"power-off":"times",selected:N,onClick:function(){return l("tryoutput")},children:N?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:_,children:b?"Sending":s>0?"Not Sending":"No Charge"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Output",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===g,onClick:function(){return l("output",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===g,onClick:function(){return l("output",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:g/1e3,minValue:0,maxValue:V/1e3,step:5,stepPixelSize:4,format:function(e){return(0,c.formatPower)(1e3*e,1)},onChange:function(e,t){return l("output",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:g===V,onClick:function(){return l("output",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:g===V,onClick:function(){return l("output",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Outputting",children:(0,c.formatPower)(v)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SolarControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SolarControl=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.generated,u=l.generated_ratio,s=l.tracking_state,m=l.tracking_rate,p=l.connected_panels,f=l.connected_tracker,h=l.cdir,C=l.direction,N=l.rotating_direction;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Scan for new hardware",onClick:function(){return i("refresh")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar tracker",color:f?"good":"bad",children:f?"OK":"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar panels",color:p>0?"good":"bad",children:p})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{size:2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power output",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.66,Infinity],average:[.33,.66],bad:[-Infinity,.33]},minValue:0,maxValue:1,value:u,children:d+" W"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Panel orientation",children:[h,"\xb0 (",C,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker rotation",children:[2===s&&(0,o.createComponentVNode)(2,a.Box,{children:" Automated "}),1===s&&(0,o.createComponentVNode)(2,a.Box,{children:[" ",m,"\xb0/h (",N,") "]}),0===s&&(0,o.createComponentVNode)(2,a.Box,{children:" Tracker offline "})]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Panel orientation",children:[2!==s&&(0,o.createComponentVNode)(2,a.NumberInput,{unit:"\xb0",step:1,stepPixelSize:1,minValue:0,maxValue:359,value:h,onDrag:function(e,t){return i("cdir",{cdir:t})}}),2===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Automated "})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker status",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:0===s,onClick:function(){return i("track",{track:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"clock-o",content:"Timed",selected:1===s,onClick:function(){return i("track",{track:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:2===s,disabled:!f,onClick:function(){return i("track",{track:2})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker rotation",children:[1===s&&(0,o.createComponentVNode)(2,a.NumberInput,{unit:"\xb0/h",step:1,stepPixelSize:1,minValue:-7200,maxValue:7200,value:m,format:function(e){return(Math.sign(e)>0?"+":"-")+Math.abs(e)},onDrag:function(e,t){return i("tdir",{tdir:t})}}),0===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Tracker offline "}),2===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Automated "})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SpawnersMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SpawnersMenu=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.spawners||[];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{mb:.5,title:e.name+" ("+e.amount_left+" left)",level:2,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-circle-right",content:"Jump",onClick:function(){return i("jump",{ID:e.uids})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-circle-right",content:"Spawn",onClick:function(){return i("spawn",{ID:e.uids})}})],4),children:[(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},mb:1,fontSize:"16px",children:e.desc}),!!e.fluff&&(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},textColor:"#878787",fontSize:"14px",children:e.fluff}),!!e.important_info&&(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},mt:1,bold:!0,color:"red",fontSize:"18px",children:e.important_info})]},e.name)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.StationAlertConsoleContent=t.StationAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.StationAlertConsole=function(){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i)})})};var i=function(e,t){var n=(0,r.useBackend)(t).data.alarms||[],c=n.Fire||[],i=n.Atmosphere||[],l=n.Power||[];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Fire Alarms",children:(0,o.createVNode)(1,"ul",null,[0===c.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),c.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)}),(0,o.createComponentVNode)(2,a.Section,{title:"Atmospherics Alarms",children:(0,o.createVNode)(1,"ul",null,[0===i.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),i.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Alarms",children:(0,o.createVNode)(1,"ul",null,[0===l.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),l.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)})],4)};t.StationAlertConsoleContent=i},function(e,t,n){"use strict";t.__esModule=!0,t.SuitStorage=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SuitStorage=function(e,t){var n=(0,r.useBackend)(t).data.uv;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{display:"flex",className:"Layout__content--flexColumn",children:[!!n&&(0,o.createComponentVNode)(2,a.Dimmer,{backgroundColor:"black",opacity:.85,children:(0,o.createComponentVNode)(2,a.Flex,{children:(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,textAlign:"center",mb:2,children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",spin:1,size:4,mb:4}),(0,o.createVNode)(1,"br"),"Disinfection of contents in progress..."]})})}),(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,d)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.helmet,u=i.suit,s=i.magboots,m=i.mask,p=i.storage,f=i.open,h=i.locked;return(0,o.createComponentVNode)(2,a.Section,{title:"Stored Items",flexGrow:"1",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Start Disinfection Cycle",icon:"radiation",textAlign:"center",onClick:function(){return c("cook")}}),(0,o.createComponentVNode)(2,a.Button,{content:h?"Unlock":"Lock",icon:h?"unlock":"lock",disabled:f,onClick:function(){return c("toggle_lock")}})],4),children:f&&!h?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,l,{object:d,label:"Helmet",missingText:"helmet",eject:"dispense_helmet"}),(0,o.createComponentVNode)(2,l,{object:u,label:"Suit",missingText:"suit",eject:"dispense_suit"}),(0,o.createComponentVNode)(2,l,{object:s,label:"Boots",missingText:"boots",eject:"dispense_boots"}),(0,o.createComponentVNode)(2,l,{object:m,label:"Breathmask",missingText:"mask",eject:"dispense_mask"}),(0,o.createComponentVNode)(2,l,{object:p,label:"Storage",missingText:"storage item",eject:"dispense_storage"})]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,grow:"1",textAlign:"center",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:h?"lock":"exclamation-circle",size:"5",mb:3}),(0,o.createVNode)(1,"br"),h?"The unit is locked.":"The unit is closed."]})})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.object),l=e.label,d=e.missingText,u=e.eject;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:l,children:(0,o.createComponentVNode)(2,a.Box,{my:.5,children:i?(0,o.createComponentVNode)(2,a.Button,{my:-1,icon:"eject",content:i,onClick:function(){return c(u)}}):(0,o.createComponentVNode)(2,a.Box,{color:"silver",bold:!0,children:["No ",d," found."]})})})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.open,d=i.locked;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:l?"Close Suit Storage Unit":"Open Suit Storage Unit",icon:l?"times-circle":"expand",color:l?"red":"green",disabled:d,textAlign:"center",onClick:function(){return c("toggle_open")}})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SupermatterMonitor=void 0;var o=n(0),r=n(26),a=n(43),c=n(16),i=n(1),l=n(2),d=n(39),u=n(4);n(76);t.SupermatterMonitor=function(e,t){var n=(0,i.useBackend)(t);n.act;return 0===n.data.active?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p)};var s=function(e){return Math.log2(16+Math.max(0,e))-4},m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.supermatters,c=void 0===a?[]:a;return(0,o.createComponentVNode)(2,u.Window,{children:(0,o.createComponentVNode)(2,u.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Detected Supermatters",buttons:(0,o.createComponentVNode)(2,l.Button,{icon:"sync",content:"Refresh",onClick:function(){return r("refresh")}}),children:(0,o.createComponentVNode)(2,l.Table,{children:c.map((function(e){return(0,o.createComponentVNode)(2,l.Table.Row,{children:[(0,o.createComponentVNode)(2,l.Table.Cell,{children:e.supermatter_id+". "+e.area_name}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,color:"label",children:"Integrity:"}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,width:"120px",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:e.integrity/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,l.Button,{content:"Details",onClick:function(){return r("view",{view:e.supermatter_id})}})})]},e.supermatter_id)}))})})})})},p=function(e,t){var n=(0,i.useBackend)(t),m=n.act,p=n.data,f=(p.active,p.SM_integrity),h=p.SM_power,C=p.SM_ambienttemp,N=p.SM_ambientpressure,b=(0,a.flow)([function(e){return e.filter((function(e){return e.amount>=.01}))},(0,r.sortBy)((function(e){return-e.amount}))])(p.gases||[]),g=Math.max.apply(Math,[1].concat(b.map((function(e){return e.amount}))));return(0,o.createComponentVNode)(2,u.Window,{children:(0,o.createComponentVNode)(2,u.Window.Content,{children:(0,o.createComponentVNode)(2,l.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,l.Flex.Item,{width:"270px",children:(0,o.createComponentVNode)(2,l.Section,{title:"Metrics",children:(0,o.createComponentVNode)(2,l.LabeledList,{children:[(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:f/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Relative EER",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:h,minValue:0,maxValue:5e3,ranges:{good:[-Infinity,5e3],average:[5e3,7e3],bad:[7e3,Infinity]},children:(0,c.toFixed)(h)+" MeV/cm3"})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:s(C),minValue:0,maxValue:s(1e4),ranges:{teal:[-Infinity,s(80)],good:[s(80),s(373)],average:[s(373),s(1e3)],bad:[s(1e3),Infinity]},children:(0,c.toFixed)(C)+" K"})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:s(N),minValue:0,maxValue:s(5e4),ranges:{good:[s(1),s(300)],average:[-Infinity,s(1e3)],bad:[s(1e3),Infinity]},children:(0,c.toFixed)(N)+" kPa"})})]})})}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Gases",buttons:(0,o.createComponentVNode)(2,l.Button,{icon:"arrow-left",content:"Back",onClick:function(){return m("back")}}),children:(0,o.createComponentVNode)(2,l.LabeledList,{children:b.map((function(e){return(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:(0,d.getGasLabel)(e.name),children:(0,o.createComponentVNode)(2,l.ProgressBar,{color:(0,d.getGasColor)(e.name),value:e.amount,minValue:0,maxValue:g,children:(0,c.toFixed)(e.amount,2)+"%"})},e.name)}))})})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SyndicateComputerSimple=void 0;var o=n(0),r=n(1),a=n(2),c=(n(77),n(4));t.SyndicateComputerSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return(0,o.createComponentVNode)(2,c.Window,{theme:"syndicate",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:l.rows.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.title,buttons:(0,o.createComponentVNode)(2,a.Button,{content:e.buttontitle,disabled:e.buttondisabled,tooltip:e.buttontooltip,tooltipPosition:"left",onClick:function(){return i(e.buttonact)}}),children:[e.status,!!e.bullets&&(0,o.createComponentVNode)(2,a.Box,{children:e.bullets.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))})]},e.title)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TEG=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e){return e.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,")};t.TEG=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return d.error?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:[d.error,(0,o.createComponentVNode)(2,a.Button,{icon:"circle",content:"Recheck",onClick:function(){return l("check")}})]})})}):(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Cold Loop ("+d.cold_dir+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cold Inlet",children:[i(d.cold_inlet_temp)," K, ",i(d.cold_inlet_pressure)," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cold Outlet",children:[i(d.cold_outlet_temp)," K, ",i(d.cold_outlet_pressure)," kPa"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Hot Loop ("+d.hot_dir+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hot Inlet",children:[i(d.hot_inlet_temp)," K, ",i(d.hot_inlet_pressure)," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hot Outlet",children:[i(d.hot_outlet_temp)," K, ",i(d.hot_outlet_pressure)," kPa"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Output",children:[i(d.output_power)," W",!!d.warning_switched&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Cold inlet temperature exceeds hot inlet temperature."}),!!d.warning_cold_pressure&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Cold circulator inlet pressure is under 1,000 kPa."}),!!d.warning_hot_pressure&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Hot circulator inlet pressure is under 1,000 kPa."})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TachyonArrayContent=t.TachyonArray=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TachyonArray=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.records,s=void 0===u?[]:u,m=d.explosion_target,p=d.toxins_tech,f=d.printing;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shift's Target",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Toxins Level",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Administration",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print All Logs",disabled:!s.length||f,align:"center",onClick:function(){return l("print_logs")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Logs",disabled:!s.length,color:"bad",align:"center",onClick:function(){return l("delete_logs")}})]})]})}),s.length?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Records"})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records,l=void 0===i?[]:i;return(0,o.createComponentVNode)(2,a.Section,{title:"Logged Explosions",children:(0,o.createComponentVNode)(2,a.Flex,{children:(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Time"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Epicenter"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actual Size"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Theoretical Size"})]}),l.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.logged_time}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.epicenter}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.actual_size_message}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.theoretical_size_message}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete",color:"bad",onClick:function(){return c("delete_record",{index:e.index})}})})]},e.index)}))]})})})})};t.TachyonArrayContent=i},function(e,t,n){"use strict";t.__esModule=!0,t.Tank=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Tank=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return n=d.has_mask?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.connected?"check":"times",content:d.connected?"Internals On":"Internals Off",selected:d.connected,onClick:function(){return l("internals")}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",color:"red",children:"No Mask Equipped"}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tank Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.tankPressure/1013,ranges:{good:[.35,Infinity],average:[.15,.35],bad:[-Infinity,.15]},children:d.tankPressure+" kPa"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Release Pressure",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:d.ReleasePressure===d.minReleasePressure,tooltip:"Min",onClick:function(){return l("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(d.releasePressure),width:"65px",unit:"kPa",minValue:d.minReleasePressure,maxValue:d.maxReleasePressure,onChange:function(e,t){return l("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:d.ReleasePressure===d.maxReleasePressure,tooltip:"Max",onClick:function(){return l("pressure",{pressure:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"",disabled:d.ReleasePressure===d.defaultReleasePressure,tooltip:"Reset",onClick:function(){return l("pressure",{pressure:"reset"})}})]}),n]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TankDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TankDispenser=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.o_tanks,u=l.p_tanks;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Dispense Oxygen Tank ("+d+")",disabled:0===d,icon:"arrow-circle-down",onClick:function(){return i("oxygen")}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Dispense Plasma Tank ("+u+")",disabled:0===u,icon:"arrow-circle-down",onClick:function(){return i("plasma")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TcommsCore=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TcommsCore=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data.ion),m=(0,r.useLocalState)(t,"tabIndex",0),p=m[0],f=m[1];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[1===s&&(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return f(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Configuration"]},"ConfigPage"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return f(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"link"}),"Device Linkage"]},"LinkagePage"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===p,onClick:function(){return f(2)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-times"}),"User Filtering"]},"FilterPage")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,l);case 1:return(0,o.createComponentVNode)(2,d);case 2:return(0,o.createComponentVNode)(2,u);default:return"SOMETHING WENT VERY WRONG PLEASE AHELP"}}(p)]})})};var i=function(){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"ERROR: An Ionospheric overload has occured. Please wait for the machine to reboot. This cannot be manually done."})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.active,d=i.sectors_available,u=i.nttc_toggle_jobs,s=i.nttc_toggle_job_color,m=i.nttc_toggle_name_color,p=i.nttc_toggle_command_bold,f=i.nttc_job_indicator_type,h=i.nttc_setting_language,C=i.network_id;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine Power",children:(0,o.createComponentVNode)(2,a.Button,{content:l?"On":"Off",selected:l,icon:"power-off",onClick:function(){return c("toggle_active")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sector Coverage",children:d})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Radio Configuration",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Announcements",children:(0,o.createComponentVNode)(2,a.Button,{content:u?"On":"Off",selected:u,icon:"user-tag",onClick:function(){return c("nttc_toggle_jobs")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Departmentalisation",children:(0,o.createComponentVNode)(2,a.Button,{content:s?"On":"Off",selected:s,icon:"clipboard-list",onClick:function(){return c("nttc_toggle_job_color")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name Departmentalisation",children:(0,o.createComponentVNode)(2,a.Button,{content:m?"On":"Off",selected:m,icon:"user-tag",onClick:function(){return c("nttc_toggle_name_color")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Command Amplification",children:(0,o.createComponentVNode)(2,a.Button,{content:p?"On":"Off",selected:p,icon:"volume-up",onClick:function(){return c("nttc_toggle_command_bold")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Advanced",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Announcement Format",children:(0,o.createComponentVNode)(2,a.Button,{content:f||"Unset",selected:f,icon:"pencil-alt",onClick:function(){return c("nttc_job_indicator_type")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Language Conversion",children:(0,o.createComponentVNode)(2,a.Button,{content:h||"Unset",selected:h,icon:"globe",onClick:function(){return c("nttc_setting_language")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network ID",children:(0,o.createComponentVNode)(2,a.Button,{content:C||"Unset",selected:C,icon:"server",onClick:function(){return c("network_id")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Import Configuration",icon:"file-import",onClick:function(){return c("import")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Export Configuration",icon:"file-export",onClick:function(){return c("export")}})]})],4)},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.link_password,d=i.relay_entries;return(0,o.createComponentVNode)(2,a.Section,{title:"Device Linkage",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linkage Password",children:(0,o.createComponentVNode)(2,a.Button,{content:l||"Unset",selected:l,icon:"lock",onClick:function(){return c("change_password")}})})}),(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network Address"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network ID"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Sector"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Unlink"})]}),d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.addr}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.net_id}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.sector}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:1===e.status?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Online"}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Offline"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Unlink",icon:"unlink",onClick:function(){return c("unlink",{addr:e.addr})}})})]},e.addr)}))]})]})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.filtered_users;return(0,o.createComponentVNode)(2,a.Section,{title:"User Filtering",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Add User",icon:"user-plus",onClick:function(){return c("add_filter")}}),children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{style:{width:"90%"},children:"User"}),(0,o.createComponentVNode)(2,a.Table.Cell,{style:{width:"10%"},children:"Actions"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Remove",icon:"user-times",onClick:function(){return c("remove_filter",{user:e})}})})]},e)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TcommsRelay=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TcommsRelay=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.linked,m=u.active,p=u.network_id;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Relay Configuration",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine Power",children:(0,o.createComponentVNode)(2,a.Button,{content:m?"On":"Off",selected:m,icon:"power-off",onClick:function(){return d("toggle_active")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network ID",children:(0,o.createComponentVNode)(2,a.Button,{content:p||"Unset",selected:p,icon:"server",onClick:function(){return d("network_id")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Link Status",children:1===s?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Linked"}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Unlinked"})})]})}),1===s?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.linked_core_id,d=i.linked_core_addr,u=i.hidden_link;return(0,o.createComponentVNode)(2,a.Section,{title:"Link Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linked Core ID",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linked Core Address",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hidden Link",children:(0,o.createComponentVNode)(2,a.Button,{content:u?"Yes":"No",icon:u?"eye-slash":"eye",selected:u,onClick:function(){return c("toggle_hidden_link")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unlink",children:(0,o.createComponentVNode)(2,a.Button,{content:"Unlink",icon:"unlink",color:"red",onClick:function(){return c("unlink")}})})]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.cores;return(0,o.createComponentVNode)(2,a.Section,{title:"Detected Cores",children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network Address"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network ID"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Sector"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Link"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.addr}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.net_id}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.sector}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Link",icon:"link",onClick:function(){return c("link",{addr:e.addr})}})})]},e.addr)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Teleporter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(179);t.Teleporter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.targetsTeleport?d.targetsTeleport:{},s=d.calibrated,m=d.calibrating,p=d.powerstation,f=d.regime,h=d.teleporterhub,C=d.target,N=d.locked;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(!p||!h)&&(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:[h,!p&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:" Powerstation not linked "}),p&&!h&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:" Teleporter hub not linked "})]}),p&&h&&(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Regime",children:[(0,o.createComponentVNode)(2,a.Button,{tooltip:"Teleport to another teleport hub. ",color:1===f?"good":null,onClick:function(){return l("setregime",{regime:1})},children:"Gate"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"One-way teleport. ",color:0===f?"good":null,onClick:function(){return l("setregime",{regime:0})},children:"Teleporter"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"Teleport to a location stored in a GPS device. ",color:2===f?"good":null,disabled:!N,onClick:function(){return l("setregime",{regime:2})},children:"GPS"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Teleport target",children:[0===f&&(0,o.createComponentVNode)(2,a.Dropdown,{width:"220px",selected:C,options:Object.keys(u),color:"None"!==C?"default":"bad",onSelected:function(e){return l("settarget",{x:u[e].x,y:u[e].y,z:u[e].z})}}),1===f&&(0,o.createComponentVNode)(2,a.Dropdown,{width:"220px",selected:C,options:Object.keys(u),color:"None"!==C?"default":"bad",onSelected:function(e){return l("settarget",{x:u[e].x,y:u[e].y,z:u[e].z})}}),2===f&&(0,o.createComponentVNode)(2,a.Box,{children:C})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Calibration",children:["None"!==C&&(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,i.GridColumn,{size:"2",children:m&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"In Progress"})||s&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Optimal"})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Sub-Optimal"})}),(0,o.createComponentVNode)(2,i.GridColumn,{size:"3",children:(0,o.createComponentVNode)(2,a.Box,{"class":"ml-1",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",tooltip:"Calibrates the hub. Accidents may occur when the calibration is not optimal.",disabled:!(!s&&!m),onClick:function(){return l("calibrate")}})})})]}),"None"===C&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"21px",children:"No target set"})]})]})}),!!(N&&p&&h&&2===f)&&(0,o.createComponentVNode)(2,a.Section,{title:"GPS",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",justify:"space-around",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload GPS data",tooltip:"Loads the GPS data from the device.",icon:"upload",onClick:function(){return l("load")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Eject",tooltip:"Ejects the GPS device",icon:"eject",onClick:function(){return l("eject")}})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ThermoMachine=void 0;var o=n(0),r=n(16),a=n(1),c=n(2),i=n(4);t.ThermoMachine=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Section,{title:"Status",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d.temperature,format:function(e){return(0,r.toFixed)(e,2)}})," K"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pressure",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d.pressure,format:function(e){return(0,r.toFixed)(e,2)}})," kPa"]})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:d.on?"power-off":"times",content:d.on?"On":"Off",selected:d.on,onClick:function(){return l("power")}}),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Setting",children:(0,o.createComponentVNode)(2,c.Button,{icon:d.cooling?"temperature-low":"temperature-high",content:d.cooling?"Cooling":"Heating",selected:d.cooling,onClick:function(){return l("cooling")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Target Temperature",children:(0,o.createComponentVNode)(2,c.NumberInput,{animated:!0,value:Math.round(d.target),unit:"K",width:"62px",minValue:Math.round(d.min),maxValue:Math.round(d.max),step:5,stepPixelSize:3,onDrag:function(e,t){return l("target",{target:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Presets",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"fast-backward",disabled:d.target===d.min,title:"Minimum temperature",onClick:function(){return l("target",{target:d.min})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"sync",disabled:d.target===d.initial,title:"Room Temperature",onClick:function(){return l("target",{target:d.initial})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"fast-forward",disabled:d.target===d.max,title:"Maximum Temperature",onClick:function(){return l("target",{target:d.max})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TransferValve=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TransferValve=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.tank_one,u=l.tank_two,s=l.attached_device,m=l.valve;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Valve Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"unlock":"lock",content:m?"Open":"Closed",disabled:!d||!u,onClick:function(){return i("toggle")}})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Assembly",buttons:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",width:"150px",icon:"cog",content:"Configure Assembly",disabled:!s,onClick:function(){return i("device")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:s,disabled:!s,onClick:function(){return i("remove_device")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Assembly"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment One",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:d,disabled:!d,onClick:function(){return i("tankone")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment Two",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:u,disabled:!u,onClick:function(){return i("tanktwo")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Uplink=void 0;var o=n(0),r=n(26),a=n(43),c=n(19),i=n(1),l=n(2),d=n(75),u=n(4),s=n(49),m=function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,p);case 1:return(0,o.createComponentVNode)(2,f);default:return"SOMETHING WENT VERY WRONG PLEASE AHELP"}};t.Uplink=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=(n.data,(0,i.useLocalState)(t,"tabIndex",0)),c=a[0],d=a[1];return(0,o.createComponentVNode)(2,u.Window,{theme:"syndicate",children:[(0,o.createComponentVNode)(2,s.ComplexModal),(0,o.createComponentVNode)(2,u.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.Tabs,{children:[(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:0===c,onClick:function(){return d(0)},icon:"shopping-cart",children:"Purchase Equipment"},"PurchasePage"),(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:1===c,onClick:function(){return d(1)},icon:"user",children:"Exploitable Information"},"ExploitableInfo"),(0,o.createComponentVNode)(2,l.Tabs.Tab,{onClick:function(){return r("lock")},icon:"lock",children:"Lock Uplink"},"LockUplink")]}),m(c)]})]})};var p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,u=a.crystals,s=a.cats,m=(0,i.useLocalState)(t,"uplinkTab",s[0]),p=m[0],f=m[1];return(0,o.createComponentVNode)(2,l.Section,{title:"Current Balance: "+u+"TC",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,l.Button,{content:"Random Item",icon:"question",onClick:function(){return r("buyRandom")}}),(0,o.createComponentVNode)(2,l.Button,{content:"Refund Currently Held Item",icon:"undo",onClick:function(){return r("refund")}})],4),children:(0,o.createComponentVNode)(2,l.Flex,{children:[(0,o.createComponentVNode)(2,d.FlexItem,{children:(0,o.createComponentVNode)(2,l.Tabs,{vertical:!0,children:s.map((function(e){return(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:e===p,onClick:function(){return f(e)},children:e.cat},e)}))})}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:p.items.map((function(e){return(0,o.createComponentVNode)(2,l.Section,{title:(0,c.decodeHtmlEntities)(e.name),buttons:(0,o.createComponentVNode)(2,l.Button,{content:"Buy ("+e.cost+"TC)"+(e.refundable?" [Refundable]":""),color:1===e.hijack_only&&"red",tooltip:1===e.hijack_only&&"Hijack Agents Only!",tooltipPosition:"left",onClick:function(){return r("buyItem",{item:e.obj_path})},disabled:e.cost>u}),children:(0,o.createComponentVNode)(2,l.Box,{italic:!0,children:(0,c.decodeHtmlEntities)(e.desc)})},(0,c.decodeHtmlEntities)(e.name))}))})]})})},f=function(e,t){var n=(0,i.useBackend)(t),u=(n.act,n.data.exploitable),s=(0,i.useLocalState)(t,"selectedRecord",u[0]),m=s[0],p=s[1],f=(0,i.useLocalState)(t,"searchText",""),h=f[0],C=f[1],N=function(e,t){void 0===t&&(t="");var n=(0,c.createSearch)(t,(function(e){return e.name}));return(0,a.flow)([(0,r.filter)((function(e){return null==e?void 0:e.name})),t&&(0,r.filter)(n),(0,r.sortBy)((function(e){return e.name}))])(e)}(u,h);return(0,o.createComponentVNode)(2,l.Section,{title:"Exploitable Records",children:(0,o.createComponentVNode)(2,l.Flex,{children:[(0,o.createComponentVNode)(2,d.FlexItem,{basis:20,children:[(0,o.createComponentVNode)(2,l.Input,{fluid:!0,mb:1,placeholder:"Search Crew",onInput:function(e,t){return C(t)}}),(0,o.createComponentVNode)(2,l.Tabs,{vertical:!0,children:N.map((function(e){return(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:e===m,onClick:function(){return p(e)},children:e.name},e)}))})]}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Name: "+m.name,children:[(0,o.createComponentVNode)(2,l.Box,{children:["Age: ",m.age]}),(0,o.createComponentVNode)(2,l.Box,{children:["Fingerprint: ",m.fingerprint]}),(0,o.createComponentVNode)(2,l.Box,{children:["Rank: ",m.rank]}),(0,o.createComponentVNode)(2,l.Box,{children:["Sex: ",m.sex]}),(0,o.createComponentVNode)(2,l.Box,{children:["Species: ",m.species]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Vending=void 0;var o=n(0),r=(n(8),n(1)),a=n(2),c=n(4),i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=e.product,d=e.productStock,u=e.productImage,s=i.chargesMoney,m=(i.user,i.userMoney),p=i.vend_ready,f=i.coin_name,h=(i.inserted_item_name,!s||0===l.price),C="ERROR!",N="";l.req_coin?(C="COIN",N="circle"):h?(C="FREE",N="arrow-circle-down"):(C=l.price,N="shopping-cart");var b=!p||!f&&l.req_coin||0===d||!h&&l.price>m;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+u,style:{"vertical-align":"middle",width:"32px",margin:"0px","margin-left":"0px"}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:l.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,textAlign:"center",children:(0,o.createComponentVNode)(2,a.Box,{color:(d<=0?"bad":d<=l.max_amount/2&&"average")||"good",children:[d," in stock"]})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,disabled:b,icon:N,content:C,textAlign:"left",onClick:function(){return c("vend",{inum:l.inum})}})})]})};t.Vending=function(e,t){var n,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.user,m=u.guestNotice,p=u.userMoney,f=u.chargesMoney,h=u.product_records,C=void 0===h?[]:h,N=u.coin_records,b=void 0===N?[]:N,g=u.hidden_records,V=void 0===g?[]:g,v=u.stock,y=(u.vend_ready,u.coin_name),_=u.inserted_item_name,x=u.panel_open,k=u.speaker,L=u.imagelist;return n=[].concat(C,b),u.extended_inventory&&(n=[].concat(n,V)),n=n.filter((function(e){return!!e})),(0,o.createComponentVNode)(2,c.Window,{title:"Vending Machine",resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!f&&(0,o.createComponentVNode)(2,a.Section,{title:"User",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:["Welcome, ",(0,o.createVNode)(1,"b",null,s.name,0),","," ",(0,o.createVNode)(1,"b",null,s.job||"Unemployed",0),"!",(0,o.createVNode)(1,"br"),"Your balance is ",(0,o.createVNode)(1,"b",null,[p,(0,o.createTextVNode)(" credits")],0),"."]})||(0,o.createComponentVNode)(2,a.Box,{color:"light-grey",children:m})}),!!y&&(0,o.createComponentVNode)(2,a.Section,{title:"Coin",buttons:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Remove Coin",onClick:function(){return d("remove_coin",{})}}),children:(0,o.createComponentVNode)(2,a.Box,{children:y})}),!!_&&(0,o.createComponentVNode)(2,a.Section,{title:"Item",buttons:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject Item",onClick:function(){return d("eject_item",{})}}),children:(0,o.createComponentVNode)(2,a.Box,{children:_})}),!!x&&(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance",children:(0,o.createComponentVNode)(2,a.Button,{icon:k?"check":"volume-mute",selected:k,content:"Speaker",textAlign:"left",onClick:function(){return d("toggle_voice",{})}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Products",children:(0,o.createComponentVNode)(2,a.Table,{children:n.map((function(e){return(0,o.createComponentVNode)(2,i,{product:e,productStock:v[e.name],productImage:L[e.path]},e.name)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.VolumeMixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.VolumeMixer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.channels;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{height:"100%",overflow:"auto",children:l.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.25rem",color:"label",mt:t>0&&"0.5rem",children:e.name}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{width:"24px",color:"transparent",children:(0,o.createComponentVNode)(2,a.Icon,{name:"volume-off",size:"1.5",mt:"0.1rem",onClick:function(){return i("volume",{channel:e.num,volume:0})}})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",mx:"1rem",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,maxValue:100,stepPixelSize:3.13,value:e.volume,onChange:function(t,n){return i("volume",{channel:e.num,volume:n})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{width:"24px",color:"transparent",children:(0,o.createComponentVNode)(2,a.Icon,{name:"volume-up",size:"1.5",mt:"0.1rem",onClick:function(){return i("volume",{channel:e.num,volume:100})}})})})]})})],4,e.num)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Wires=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Wires=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.wires||[],u=l.status||[];return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{className:"candystripe",label:e.color_name,labelColor:e.seen_color,color:e.seen_color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:e.cut?"Mend":"Cut",onClick:function(){return i("cut",{wire:e.color})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Pulse",onClick:function(){return i("pulse",{wire:e.color})}}),(0,o.createComponentVNode)(2,a.Button,{content:e.attached?"Detach":"Attach",onClick:function(){return i("attach",{wire:e.color})}})],4),children:!!e.wire&&(0,o.createVNode)(1,"i",null,[(0,o.createTextVNode)("("),e.wire,(0,o.createTextVNode)(")")],0)},e.seen_color)}))})}),!!u.length&&(0,o.createComponentVNode)(2,a.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"lightgray",mt:.1,children:e},e)}))})]})})}}]);
\ No newline at end of file
+if(!document.createEvent){var t,n=!0,o=!1,r="__IE8__"+Math.random(),a=Object.defineProperty||function(e,t,n){e[t]=n.value},c=Object.defineProperties||function(t,n){for(var o in n)if(l.call(n,o))try{a(t,o,n[o])}catch(r){e.console}},i=Object.getOwnPropertyDescriptor,l=Object.prototype.hasOwnProperty,d=e.Element.prototype,u=e.Text.prototype,s=/^[a-z]+$/,m=/loaded|complete/,p={},f=document.createElement("div"),h=document.documentElement,C=h.removeAttribute,N=h.setAttribute,b=function(e){return{enumerable:!0,writable:!0,configurable:!0,value:e}};_(e.HTMLCommentElement.prototype,d,"nodeValue"),_(e.HTMLScriptElement.prototype,null,"text"),_(u,null,"nodeValue"),_(e.HTMLTitleElement.prototype,null,"text"),a(e.HTMLStyleElement.prototype,"textContent",(t=i(e.CSSStyleSheet.prototype,"cssText"),y((function(){return t.get.call(this.styleSheet)}),(function(e){t.set.call(this.styleSheet,e)}))));var g=/\b\s*alpha\s*\(\s*opacity\s*=\s*(\d+)\s*\)/;a(e.CSSStyleDeclaration.prototype,"opacity",{get:function(){var e=this.filter.match(g);return e?(e[1]/100).toString():""},set:function(e){this.zoom=1;var t=!1;e=e<1?" alpha(opacity="+Math.round(100*e)+")":"",this.filter=this.filter.replace(g,(function(){return t=!0,e})),!t&&e&&(this.filter+=e)}}),c(d,{textContent:{get:k,set:S},firstElementChild:{get:function(){for(var e=this.childNodes||[],t=0,n=e.length;t1?r-1:0),c=1;c1?t-1:0),o=1;o=0||(r[n]=e[n]);return r}(e,["className"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["BlockQuote",t])},n)))}},function(e,t,n){"use strict";var o,r;t.__esModule=!0,t.VNodeFlags=t.ChildFlags=void 0,t.VNodeFlags=o,function(e){e[e.HtmlElement=1]="HtmlElement",e[e.ComponentUnknown=2]="ComponentUnknown",e[e.ComponentClass=4]="ComponentClass",e[e.ComponentFunction=8]="ComponentFunction",e[e.Text=16]="Text",e[e.SvgElement=32]="SvgElement",e[e.InputElement=64]="InputElement",e[e.TextareaElement=128]="TextareaElement",e[e.SelectElement=256]="SelectElement",e[e.Void=512]="Void",e[e.Portal=1024]="Portal",e[e.ReCreate=2048]="ReCreate",e[e.ContentEditable=4096]="ContentEditable",e[e.Fragment=8192]="Fragment",e[e.InUse=16384]="InUse",e[e.ForwardRef=32768]="ForwardRef",e[e.Normalized=65536]="Normalized",e[e.ForwardRefComponent=32776]="ForwardRefComponent",e[e.FormElement=448]="FormElement",e[e.Element=481]="Element",e[e.Component=14]="Component",e[e.DOMRef=2033]="DOMRef",e[e.InUseOrNormalized=81920]="InUseOrNormalized",e[e.ClearInUse=-16385]="ClearInUse",e[e.ComponentKnown=12]="ComponentKnown"}(o||(t.VNodeFlags=o={})),t.ChildFlags=r,function(e){e[e.UnknownChildren=0]="UnknownChildren",e[e.HasInvalidChildren=1]="HasInvalidChildren",e[e.HasVNodeChildren=2]="HasVNodeChildren",e[e.HasNonKeyedChildren=4]="HasNonKeyedChildren",e[e.HasKeyedChildren=8]="HasKeyedChildren",e[e.HasTextChildren=16]="HasTextChildren",e[e.MultipleChildren=12]="MultipleChildren"}(r||(t.ChildFlags=r={}))},function(e,t,n){"use strict";t.__esModule=!0,t.ByondUi=void 0;var o=n(0),r=n(8),a=n(431),c=n(25),i=n(61),l=n(17);function d(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var u=(0,i.createLogger)("ByondUi"),s=[];window.addEventListener("beforeunload",(function(){for(var e=0;e=0||(r[n]=e[n]);return r}(t,["data","rangeX","rangeY","fillColor","strokeColor","strokeWidth"]),C=this.state.viewBox,N=function(e,t,n,o){if(0===e.length)return[];var a=(0,r.zipWith)(Math.min).apply(void 0,e),c=(0,r.zipWith)(Math.max).apply(void 0,e);return n!==undefined&&(a[0]=n[0],c[0]=n[1]),o!==undefined&&(a[1]=o[0],c[1]=o[1]),(0,r.map)((function(e){return(0,r.zipWith)((function(e,t,n,o){return(e-t)/(n-t)*o}))(e,a,c,t)}))(e)}(a,C,c,l);if(N.length>0){var b=N[0],g=N[N.length-1];N.push([C[0]+f,g[1]]),N.push([C[0]+f,-f]),N.push([-f,-f]),N.push([-f,b[1]])}var V=function(e){for(var t="",n=0;n=0||(r[n]=e[n]);return r}(t,["children","color","title","buttons"]);return(0,o.createVNode)(1,"div","Collapsible",[(0,o.createVNode)(1,"div","Table",[(0,o.createVNode)(1,"div","Table__cell",(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({fluid:!0,color:l,icon:n?"chevron-down":"chevron-right",onClick:function(){return e.setState({open:!n})}},s,{children:d}))),2),u&&(0,o.createVNode)(1,"div","Table__cell Table__cell--collapsing",u,0)],0),n&&(0,o.createComponentVNode)(2,r.Box,{mt:1,children:c})],0)},c}(o.Component);t.Collapsible=c},function(e,t,n){"use strict";t.__esModule=!0,t.ColorBox=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.content,n=(e.children,e.className),c=e.color,i=e.backgroundColor,l=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["content","children","className","color","backgroundColor"]);return l.color=t?null:"transparent",l.backgroundColor=c||i,(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["ColorBox",n,(0,a.computeBoxClassName)(l)]),t||".",0,Object.assign({},(0,a.computeBoxProps)(l))))};t.ColorBox=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Dropdown=void 0;var o=n(0),r=n(8),a=n(17),c=n(130);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t,n;function l(t){var n;return(n=e.call(this,t)||this).state={open:!1},n.handleClick=function(){n.state.open&&n.setOpen(!1)},n}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentWillUnmount=function(){window.removeEventListener("click",this.handleClick)},d.setOpen=function(e){var t=this;this.setState({open:e}),e?(setTimeout((function(){return window.addEventListener("click",t.handleClick)})),this.menuRef.focus()):window.removeEventListener("click",this.handleClick)},d.setSelected=function(e){this.setOpen(!1),this.props.onSelected(e)},d.buildMenu=function(){var e=this,t=this.props.options,n=(void 0===t?[]:t).map((function(t){return(0,o.createVNode)(1,"div","Dropdown__menuentry",t,0,{onClick:function(){e.setSelected(t)}},t)}));return n.length?n:"No Options Found"},d.render=function(){var e=this,t=this.props,n=t.color,l=void 0===n?"default":n,d=t.over,u=t.noscroll,s=t.nochevron,m=t.width,p=(t.onClick,t.selected),f=t.disabled,h=i(t,["color","over","noscroll","nochevron","width","onClick","selected","disabled"]),C=h.className,N=i(h,["className"]),b=d?!this.state.open:this.state.open,g=this.state.open?(0,o.createVNode)(1,"div",(0,r.classes)([u?"Dropdown__menu-noscroll":"Dropdown__menu",d&&"Dropdown__over"]),this.buildMenu(),0,{tabIndex:"-1",style:{width:m}},null,(function(t){e.menuRef=t})):null;return(0,o.createVNode)(1,"div","Dropdown",[(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({width:m,className:(0,r.classes)(["Dropdown__control","Button","Button--color--"+l,f&&"Button--disabled",C])},N,{onClick:function(){f&&!e.state.open||e.setOpen(!e.state.open)},children:[(0,o.createVNode)(1,"span","Dropdown__selected-text",p,0),!!s||(0,o.createVNode)(1,"span","Dropdown__arrow-button",(0,o.createComponentVNode)(2,c.Icon,{name:b?"chevron-up":"chevron-down"}),2)]}))),g],0)},l}(o.Component);t.Dropdown=l},function(e,t,n){"use strict";t.__esModule=!0,t.Input=void 0;var o=n(0),r=n(8),a=n(17);function c(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var i=function(e){return(0,r.isFalsy)(e)?"":e},l=function(e){var t,n;function l(){var t;return(t=e.call(this)||this).inputRef=(0,o.createRef)(),t.state={editing:!1},t.handleInput=function(e){var n=t.state.editing,o=t.props.onInput;n||t.setEditing(!0),o&&o(e,e.target.value)},t.handleFocus=function(e){t.state.editing||t.setEditing(!0)},t.handleBlur=function(e){var n=t.state.editing,o=t.props.onChange;n&&(t.setEditing(!1),o&&o(e,e.target.value))},t.handleKeyDown=function(e){var n=t.props,o=n.onInput,r=n.onChange,a=n.onEnter;return 13===e.keyCode?(t.setEditing(!1),r&&r(e,e.target.value),o&&o(e,e.target.value),a&&a(e,e.target.value),void(t.props.selfClear?e.target.value="":e.target.blur())):27===e.keyCode?(t.setEditing(!1),e.target.value=i(t.props.value),void e.target.blur()):void 0},t}n=e,(t=l).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var d=l.prototype;return d.componentDidMount=function(){var e=this.props.value,t=this.inputRef.current;t&&(t.value=i(e),this.props.autofocus&&(t.focus(),t.selectionStart=0,t.selectionEnd=t.value.length))},d.componentDidUpdate=function(e,t){var n=this.state.editing,o=e.value,r=this.props.value,a=this.inputRef.current;a&&!n&&o!==r&&(a.value=i(r))},d.setEditing=function(e){this.setState({editing:e})},d.render=function(){var e=this.props,t=(e.selfClear,e.onInput,e.onChange,e.onEnter,e.value,e.maxLength),n=e.placeholder,i=(e.autofocus,e.disabled),l=e.multiline,d=e.cols,u=void 0===d?32:d,s=e.rows,m=void 0===s?4:s,p=c(e,["selfClear","onInput","onChange","onEnter","value","maxLength","placeholder","autofocus","disabled","multiline","cols","rows"]),f=p.className,h=p.fluid,C=c(p,["className","fluid"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Input",h&&"Input--fluid",i&&"Input--disabled",f])},C,{children:[(0,o.createVNode)(1,"div","Input__baseline",".",16),l?(0,o.createVNode)(128,"textarea","Input__textarea",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,maxLength:t,cols:u,rows:m,disabled:i},null,this.inputRef):(0,o.createVNode)(64,"input","Input__input",null,1,{placeholder:n,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyDown:this.handleKeyDown,maxLength:t,disabled:i},null,this.inputRef)]})))},l}(o.Component);t.Input=l},function(e,t,n){"use strict";t.__esModule=!0,t.Knob=void 0;var o=n(0),r=n(15),a=n(8),c=n(25),i=n(17),l=n(180),d=n(131);t.Knob=function(e){if(c.IS_IE8)return(0,o.normalizeProps)((0,o.createComponentVNode)(2,d.NumberInput,Object.assign({},e)));var t=e.animated,n=e.format,u=e.maxValue,s=e.minValue,m=e.onChange,p=e.onDrag,f=e.step,h=e.stepPixelSize,C=e.suppressFlicker,N=e.unit,b=e.value,g=e.className,V=e.style,v=e.fillValue,y=e.color,_=e.ranges,x=void 0===_?{}:_,k=e.size,L=e.bipolar,B=(e.children,e.popUpPosition),w=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["animated","format","maxValue","minValue","onChange","onDrag","step","stepPixelSize","suppressFlicker","unit","value","className","style","fillValue","color","ranges","size","bipolar","children","popUpPosition"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l.DraggableControl,Object.assign({dragMatrix:[0,-1]},{animated:t,format:n,maxValue:u,minValue:s,onChange:m,onDrag:p,step:f,stepPixelSize:h,suppressFlicker:C,unit:N,value:b},{children:function(e){var t=e.dragging,n=(e.editing,e.value),c=e.displayValue,l=e.displayElement,d=e.inputElement,m=e.handleDragStart,p=(0,r.scale)(null!=v?v:c,s,u),f=(0,r.scale)(c,s,u),h=y||(0,r.keyOfMatchingRange)(null!=v?v:n,x)||"default",C=270*(f-.5);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["Knob","Knob--color--"+h,L&&"Knob--bipolar",g,(0,i.computeBoxClassName)(w)]),[(0,o.createVNode)(1,"div","Knob__circle",(0,o.createVNode)(1,"div","Knob__cursorBox",(0,o.createVNode)(1,"div","Knob__cursor"),2,{style:{transform:"rotate("+C+"deg)"}}),2),t&&(0,o.createVNode)(1,"div",(0,a.classes)(["Knob__popupValue",B&&"Knob__popupValue--"+B]),l,0),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringTrackPivot",(0,o.createVNode)(32,"circle","Knob__ringTrack",null,1,{cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),(0,o.createVNode)(32,"svg","Knob__ring Knob__ringFillPivot",(0,o.createVNode)(32,"circle","Knob__ringFill",null,1,{style:{"stroke-dashoffset":((L?2.75:2)-1.5*p)*Math.PI*50},cx:"50",cy:"50",r:"50"}),2,{viewBox:"0 0 100 100"}),d],0,Object.assign({},(0,i.computeBoxProps)(Object.assign({style:Object.assign({"font-size":k+"rem"},V)},w)),{onMouseDown:m})))}})))}},function(e,t,n){"use strict";t.__esModule=!0,t.LabeledControls=void 0;var o=n(0),r=n(75);function a(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var c=function(e){var t=e.children,n=a(e,["children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({mx:-.5,align:"stretch",justify:"space-between"},n,{children:t})))};t.LabeledControls=c;c.Item=function(e){var t=e.label,n=e.children,c=a(e,["label","children"]);return(0,o.createComponentVNode)(2,r.Flex.Item,{mx:1,children:(0,o.normalizeProps)((0,o.createComponentVNode)(2,r.Flex,Object.assign({minWidth:"52px",height:"100%",direction:"column",align:"center",textAlign:"center",justify:"space-between"},c,{children:[(0,o.createComponentVNode)(2,r.Flex.Item),(0,o.createComponentVNode)(2,r.Flex.Item,{children:n}),(0,o.createComponentVNode)(2,r.Flex.Item,{color:"label",children:t})]})))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NanoMap=void 0;var o=n(0),r=n(2),a=n(1),c=n(77),i=n(181);var l=function(e){return e.stopPropagation&&e.stopPropagation(),e.preventDefault&&e.preventDefault(),e.cancelBubble=!0,e.returnValue=!1,!1},d=function(e){var t,n;function c(t){var n;n=e.call(this,t)||this;window.innerWidth,window.innerHeight;return n.state={offsetX:128,offsetY:48,transform:"none",dragging:!1,originX:null,originY:null,zoom:1},n.handleDragStart=function(e){n.ref=e.target,n.setState({dragging:!1,originX:e.screenX,originY:e.screenY}),document.addEventListener("mousemove",n.handleDragMove),document.addEventListener("mouseup",n.handleDragEnd),l(e)},n.handleDragMove=function(e){n.setState((function(t){var n=Object.assign({},t),o=e.screenX-n.originX,r=e.screenY-n.originY;return t.dragging?(n.offsetX+=o,n.offsetY+=r,n.originX=e.screenX,n.originY=e.screenY):n.dragging=!0,n})),l(e)},n.handleDragEnd=function(e){n.setState({dragging:!1,originX:null,originY:null}),document.removeEventListener("mousemove",n.handleDragMove),document.removeEventListener("mouseup",n.handleDragEnd),l(e)},n.handleZoom=function(e,o){n.setState((function(e){var n=Math.min(Math.max(o,1),8),r=1.5*(n-e.zoom);return e.zoom=n,e.offsetX=e.offsetX-262*r,e.offsetY=e.offsetY-256*r,t.onZoom&&t.onZoom(e.zoom),e}))},n}return n=e,(t=c).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n,c.prototype.render=function(){var e=(0,a.useBackend)(this.context).config,t=this.state,n=t.dragging,c=t.offsetX,i=t.offsetY,l=t.zoom,d=void 0===l?1:l,s=this.props.children,m=510*d+"px",p={width:m,height:m,"margin-top":i+"px","margin-left":c+"px",overflow:"hidden",position:"relative","background-image":"url("+e.map+"_nanomap_z1.png)","background-size":"cover","background-repeat":"no-repeat","text-align":"center",cursor:n?"move":"auto"};return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__container",children:[(0,o.createComponentVNode)(2,r.Box,{style:p,textAlign:"center",onMouseDown:this.handleDragStart,children:(0,o.createComponentVNode)(2,r.Box,{children:s})}),(0,o.createComponentVNode)(2,u,{zoom:d,onZoom:this.handleZoom})]})},c}(o.Component);t.NanoMap=d;d.Marker=function(e,t){var n=e.x,a=e.y,c=e.zoom,i=void 0===c?1:c,l=e.icon,d=e.tooltip,u=e.color,s=2*n*i-i-3,m=2*a*i-i-3;return(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,r.Box,{position:"absolute",className:"NanoMap__marker",lineHeight:"0",bottom:m+"px",left:s+"px",children:[(0,o.createComponentVNode)(2,r.Icon,{name:l,color:u,fontSize:"6px"}),(0,o.createComponentVNode)(2,r.Tooltip,{content:d})]}),2)};var u=function(e,t){return(0,o.createComponentVNode)(2,r.Box,{className:"NanoMap__zoomer",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Zoom",children:(0,o.createComponentVNode)(2,i.Slider,{minValue:"1",maxValue:"8",stepPixelSize:"10",format:function(e){return e+"x"},value:e.zoom,onDrag:function(t,n){return e.onZoom(t,n)}})})})})};d.Zoomer=u},function(e,t,n){"use strict";t.__esModule=!0,t.Modal=void 0;var o=n(0),r=n(8),a=n(17),c=n(177);t.Modal=function(e){var t,n=e.className,i=e.children,l=e.onEnter,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","children","onEnter"]);return l&&(t=function(e){13===e.keyCode&&l(e)}),(0,o.createComponentVNode)(2,c.Dimmer,{onKeyDown:t,children:(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Modal",n,(0,a.computeBoxClassName)(d)]),i,0,Object.assign({},(0,a.computeBoxProps)(d))))})}},function(e,t,n){"use strict";t.__esModule=!0,t.NoticeBox=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.className,n=e.color,c=e.info,i=(e.warning,e.success),l=e.danger,d=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","color","info","warning","success","danger"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["NoticeBox",n&&"NoticeBox--color--"+n,c&&"NoticeBox--type--info",i&&"NoticeBox--type--success",l&&"NoticeBox--type--danger",t])},d)))};t.NoticeBox=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.ProgressBarCountdown=t.ProgressBar=void 0;var o=n(0),r=n(15),a=n(8),c=n(17);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.value,l=e.minValue,d=void 0===l?0:l,u=e.maxValue,s=void 0===u?1:u,m=e.color,p=e.ranges,f=void 0===p?{}:p,h=e.children,C=i(e,["className","value","minValue","maxValue","color","ranges","children"]),N=(0,r.scale)(n,d,s),b=h!==undefined,g=m||(0,r.keyOfMatchingRange)(n,f)||"default";return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,a.classes)(["ProgressBar","ProgressBar--color--"+g,t,(0,c.computeBoxClassName)(C)]),[(0,o.createVNode)(1,"div","ProgressBar__fill ProgressBar__fill--animated",null,1,{style:{width:100*(0,r.clamp01)(N)+"%"}}),(0,o.createVNode)(1,"div","ProgressBar__content",b?h:(0,r.toFixed)(100*N)+"%",0)],4,Object.assign({},(0,c.computeBoxProps)(C))))};t.ProgressBar=l,l.defaultHooks=a.pureComponentHooks;var d=function(e){var t,n;function r(t){var n;return(n=e.call(this,t)||this).timer=null,n.state={value:Math.max(100*t.current,0)},n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var a=r.prototype;return a.tick=function(){var e=Math.max(this.state.value+this.props.rate,0);e<=0&&clearInterval(this.timer),this.setState((function(t){return{value:e}}))},a.componentDidMount=function(){var e=this;this.timer=setInterval((function(){return e.tick()}),this.props.rate)},a.componentWillUnmount=function(){clearInterval(this.timer)},a.render=function(){var e=this.props,t=e.start,n=(e.current,e.end),r=i(e,["start","current","end"]),a=(this.state.value/100-t)/(n-t);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,l,Object.assign({value:a},r)))},r}(o.Component);t.ProgressBarCountdown=d,d.defaultProps={rate:1e3},l.Countdown=d},function(e,t,n){"use strict";t.__esModule=!0,t.Section=void 0;var o=n(0),r=n(8),a=n(17);var c=function(e){var t=e.className,n=e.title,c=e.level,i=void 0===c?1:c,l=e.buttons,d=e.content,u=e.stretchContents,s=e.noTopPadding,m=e.children,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["className","title","level","buttons","content","stretchContents","noTopPadding","children"]),f=!(0,r.isFalsy)(n)||!(0,r.isFalsy)(l),h=!(0,r.isFalsy)(d)||!(0,r.isFalsy)(m);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Box,Object.assign({className:(0,r.classes)(["Section","Section--level--"+i,e.flexGrow&&"Section--flex",t])},p,{children:[f&&(0,o.createVNode)(1,"div","Section__title",[(0,o.createVNode)(1,"span","Section__titleText",n,0),(0,o.createVNode)(1,"div","Section__buttons",l,0)],4),h&&(0,o.createComponentVNode)(2,a.Box,{className:(0,r.classes)(["Section__content",!!u&&"Section__content--stretchContents",!!s&&"Section__content--noTopPadding"]),children:[d,m]})]})))};t.Section=c,c.defaultHooks=r.pureComponentHooks},function(e,t,n){"use strict";t.__esModule=!0,t.Tabs=void 0;var o=n(0),r=n(8),a=n(17),c=n(129);function i(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}var l=function(e){var t=e.className,n=e.vertical,c=e.children,l=i(e,["className","vertical","children"]);return(0,o.normalizeProps)((0,o.createVNode)(1,"div",(0,r.classes)(["Tabs",n?"Tabs--vertical":"Tabs--horizontal",t,(0,a.computeBoxClassName)(l)]),(0,o.createVNode)(1,"div","Tabs__tabBox",c,0),2,Object.assign({},(0,a.computeBoxProps)(l))))};t.Tabs=l;l.Tab=function(e){var t=e.className,n=e.selected,a=e.altSelection,l=i(e,["className","selected","altSelection"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Button,Object.assign({className:(0,r.classes)(["Tabs__tab",n&&"Tabs__tab--selected",a&&n&&"Tabs__tab--altSelection",t]),selected:!a&&n,color:"transparent"},l)))}},function(e,t,n){"use strict";t.__esModule=!0,t.TimeDisplay=void 0;t.TimeDisplay=function(e){var t=e.totalSeconds;return function(e){return(!e||e<0)&&(e=0),[Math.floor(e/60).toString(10),(Math.floor(e)%60).toString(10)].map((function(e){return e.length<2?"0"+e:e})).join(":")}(void 0===t?0:t)}},function(e,t,n){var o={"./AICard.js":447,"./AIFixer.js":448,"./APC.js":449,"./ATM.js":450,"./AccountsUplinkTerminal.js":451,"./AiAirlock.js":452,"./AirAlarm.js":453,"./AirlockAccessController.js":454,"./AirlockElectronics.js":455,"./AppearanceChanger.js":456,"./AtmosAlertConsole.js":457,"./AtmosControl.js":458,"./AtmosFilter.js":459,"./AtmosMixer.js":460,"./AtmosPump.js":461,"./Autolathe.js":462,"./BlueSpaceArtilleryControl.js":463,"./BluespaceTap.js":464,"./BodyScanner.js":465,"./BotClean.js":466,"./BotSecurity.js":467,"./BrigCells.js":468,"./BrigTimer.js":469,"./CameraConsole.js":470,"./Canister.js":471,"./CardComputer.js":472,"./CargoConsole.js":473,"./ChemDispenser.js":474,"./ChemHeater.js":478,"./ChemMaster.js":479,"./CloningConsole.js":480,"./CommunicationsComputer.js":481,"./Contractor.js":482,"./ConveyorSwitch.js":483,"./CrewMonitor.js":484,"./Cryo.js":485,"./DNAModifier.js":486,"./DisposalBin.js":487,"./DnaVault.js":488,"./DroneConsole.js":489,"./EFTPOS.js":490,"./ERTManager.js":491,"./Electropack.js":492,"./EvolutionMenu.js":493,"./ExosuitFabricator.js":494,"./ExternalAirlockController.js":495,"./FaxMachine.js":496,"./FloorPainter.js":497,"./GPS.js":498,"./GenericCrewManifest.js":499,"./GhostHudPanel.js":500,"./GravityGen.js":501,"./GuestPass.js":502,"./HandheldChemDispenser.js":503,"./Instrument.js":504,"./KeycardAuth.js":505,"./LaborClaimConsole.js":506,"./LawManager.js":507,"./MechBayConsole.js":508,"./MechaControlConsole.js":509,"./MedicalRecords.js":510,"./MiningVendor.js":511,"./Newscaster.js":512,"./NuclearBomb.js":513,"./OperatingComputer.js":514,"./Orbit.js":515,"./OreRedemption.js":516,"./PAI.js":517,"./PDA.js":530,"./Pacman.js":546,"./PersonalCrafting.js":547,"./PodTracking.js":548,"./PoolController.js":549,"./PortablePump.js":550,"./PortableScrubber.js":551,"./PortableTurret.js":552,"./PowerMonitor.js":188,"./RCD.js":553,"./RPD.js":554,"./Radio.js":555,"./RequestConsole.js":556,"./RndConsole.js":62,"./RobotSelfDiagnosis.js":571,"./RoboticsControlConsole.js":572,"./Safe.js":573,"./SatelliteControl.js":574,"./SecurityRecords.js":575,"./ShuttleConsole.js":576,"./ShuttleManipulator.js":577,"./Sleeper.js":578,"./SlotMachine.js":579,"./Smartfridge.js":580,"./Smes.js":581,"./SolarControl.js":582,"./SpawnersMenu.js":583,"./StationAlertConsole.js":584,"./SuitStorage.js":585,"./SupermatterMonitor.js":586,"./SyndicateComputerSimple.js":587,"./TEG.js":588,"./TachyonArray.js":589,"./Tank.js":590,"./TankDispenser.js":591,"./TcommsCore.js":592,"./TcommsRelay.js":593,"./Teleporter.js":594,"./ThermoMachine.js":595,"./TransferValve.js":596,"./Uplink.js":597,"./Vending.js":598,"./VolumeMixer.js":599,"./Wires.js":600,"./WizardApprenticeContract.js":601};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=446},function(e,t,n){"use strict";t.__esModule=!0,t.AICard=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AICard=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;if(0===l.has_ai)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No AI detected.",16)})})})});var d=null;return d=l.integrity>=75?"green":l.integrity>=25?"yellow":"red",(0,o.createComponentVNode)(2,c.Window,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:[(0,o.createComponentVNode)(2,a.Box,{bold:!0,display:"inline-block",children:(0,o.createVNode)(1,"h3",null,l.name,0)}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:d,value:l.integrity/100})})})}),(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h2",null,1===l.flushing?"Wipe of AI in progress...":"",0)})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!l.has_laws&&(0,o.createComponentVNode)(2,a.Box,{children:l.laws.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.wireless?"check":"times",content:l.wireless?"Enabled":"Disabled",color:l.wireless?"green":"red",onClick:function(){return i("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.radio?"check":"times",content:l.radio?"Enabled":"Disabled",color:l.radio?"green":"red",onClick:function(){return i("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wipe",children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash-alt",confirmIcon:"trash-alt",disabled:l.flushing||0===l.integrity,confirmColor:"red",content:"Wipe AI",onClick:function(){return i("wipe")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AIFixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AIFixer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;if(null===l.occupant)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createVNode)(1,"h3",null,"No artificial intelligence detected.",16)})})})});var d=null;d=2!==l.stat&&null!==l.stat;var u=null;u=l.integrity>=75?"green":l.integrity>=25?"yellow":"red";var s=null;return s=l.integrity>=100,(0,o.createComponentVNode)(2,c.Window,{scrollable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored AI",children:(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:(0,o.createVNode)(1,"h3",null,l.occupant,0)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:u,value:l.integrity/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:d?"green":"red",children:d?"Functional":"Non-Functional"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Laws",children:!!l.has_laws&&(0,o.createComponentVNode)(2,a.Box,{children:l.laws.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",children:e},t)}))})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:(0,o.createVNode)(1,"h3",null,"No laws detected.",16)})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Wireless Activity",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.wireless?"times":"check",content:l.wireless?"Disabled":"Enabled",color:l.wireless?"red":"green",onClick:function(){return i("wireless")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subspace Transceiver",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.radio?"times":"check",content:l.radio?"Disabled":"Enabled",color:l.radio?"red":"green",onClick:function(){return i("radio")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Start Repairs",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:s||l.active,content:s?"Already Repaired":"Repair",onClick:function(){return i("fix")}})})]}),(0,o.createComponentVNode)(2,a.Box,{color:"green",lineHeight:2,children:l.active?"Reconstruction in progress.":""})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.APC=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(183);t.APC=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,u)})})};var l={2:{color:"good",externalPowerText:"External Power",chargingText:"Fully Charged"},1:{color:"average",externalPowerText:"Low External Power",chargingText:"Charging"},0:{color:"bad",externalPowerText:"No External Power",chargingText:"Not Charging"}},d={1:{icon:"terminal",content:"Override Programming",action:"hack"},2:{icon:"caret-square-down",content:"Shunt Core Process",action:"occupy"},3:{icon:"caret-square-left",content:"Return to Main Core",action:"deoccupy"},4:{icon:"caret-square-down",content:"Shunt Core Process",action:"occupy"}},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,u=n.data,s=u.locked&&!u.siliconUser,m=(u.normallyLocked,l[u.externalPower]||l[0]),p=l[u.chargingStatus]||l[0],f=u.powerChannels||[],h=d[u.malfStatus]||d[0],C=u.powerCellStatus/100;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.InterfaceLockNoticeBox),(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main Breaker",color:m.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.isOperating?"power-off":"times",content:u.isOperating?"On":"Off",selected:u.isOperating&&!s,color:u.isOperating?"":"bad",disabled:s,onClick:function(){return c("breaker")}}),children:["[ ",m.externalPowerText," ]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Cell",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:"good",value:C})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",color:p.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.chargeMode?"sync":"times",content:u.chargeMode?"Auto":"Off",selected:u.chargeMode,disabled:s,onClick:function(){return c("charge")}}),children:["[ ",p.chargingText," ]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Channels",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[f.map((function(e){var t=e.topicParams;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{inline:!0,mx:2,color:e.status>=2?"good":"bad",children:e.status>=2?"On":"Off"}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:!s&&(1===e.status||3===e.status),disabled:s,onClick:function(){return c("channel",t.auto)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:"On",selected:!s&&2===e.status,disabled:s,onClick:function(){return c("channel",t.on)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:!s&&0===e.status,disabled:s,onClick:function(){return c("channel",t.off)}})],4),children:[e.powerLoad," W"]},e.title)})),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Load",children:(0,o.createVNode)(1,"b",null,[u.totalLoad,(0,o.createTextVNode)(" W")],0)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Misc",buttons:!!u.siliconUser&&(0,o.createFragment)([!!u.malfStatus&&(0,o.createComponentVNode)(2,a.Button,{icon:h.icon,content:h.content,color:"bad",onClick:function(){return c(h.action)}}),(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:"Overload",onClick:function(){return c("overload")}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cover Lock",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:u.coverLocked?"lock":"unlock",content:u.coverLocked?"Engaged":"Disengaged",selected:u.coverLocked,disabled:s,onClick:function(){return c("cover")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Night Shift Lighting",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",content:u.nightshiftLights?"Enabled":"Disabled",selected:u.nightshiftLights,onClick:function(){return c("toggle_nightshift")}})})]})})],4)}},function(e,t,n){"use strict";t.__esModule=!0,t.ATM=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ATM=function(e,t){var n,p=(0,r.useBackend)(t),f=(p.act,p.data),h=f.view_screen,C=f.authenticated_account,N=f.ticks_left_locked_down,b=f.linked_db;if(N>0)n=(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle"}),"Maximum number of pin attempts exceeded! Access to this ATM has been temporarily disabled."]});else if(b)if(C)switch(h){case 1:n=(0,o.createComponentVNode)(2,l);break;case 2:n=(0,o.createComponentVNode)(2,d);break;case 3:n=(0,o.createComponentVNode)(2,m);break;default:n=(0,o.createComponentVNode)(2,u)}else n=(0,o.createComponentVNode)(2,s);else n=(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle"}),"Unable to connect to accounts database, please retry and if the issue persists contact Nanotrasen IT support."]});return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Section,{children:n})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.machine_id,d=i.held_card_name;return(0,o.createComponentVNode)(2,a.Section,{title:"Nanotrasen Automatic Teller Machine",children:[(0,o.createComponentVNode)(2,a.Box,{children:"For all your monetary need!"}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:"info-circle"})," This terminal is ",(0,o.createVNode)(1,"i",null,l,0),", report this code when contacting Nanotrasen IT Support."]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Card",children:(0,o.createComponentVNode)(2,a.Button,{content:d,icon:"eject",onClick:function(){return c("insert_card")}})})})]})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.security_level;return(0,o.createComponentVNode)(2,a.Section,{title:"Select a new security level for this account",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"Zero",icon:"unlock",selected:0===i,onClick:function(){return c("change_security_level",{new_security_level:0})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"Either the account number or card is required to access this account. EFTPOS transactions will require a card and ask for a pin, but not verify the pin is correct."}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"One",icon:"unlock",selected:1===i,onClick:function(){return c("change_security_level",{new_security_level:1})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"An account number and pin must be manually entered to access this account and process transactions."}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:(0,o.createComponentVNode)(2,a.Button,{content:"Two",selected:2===i,icon:"unlock",onClick:function(){return c("change_security_level",{new_security_level:2})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:"In addition to account number and pin, a card is required to access this account and process transactions."})]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"targetAccNumber",0),d=l[0],u=l[1],s=(0,r.useLocalState)(t,"fundsAmount",0),m=s[0],f=s[1],h=(0,r.useLocalState)(t,"purpose",0),C=h[0],N=h[1],b=i.money;return(0,o.createComponentVNode)(2,a.Section,{title:"Transfer Fund",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Balance",children:["$",b]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target account number",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Funds to transfer",children:(0,o.createComponentVNode)(2,a.Input,{onInput:function(e,t){return f(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transaction Purpose",children:(0,o.createComponentVNode)(2,a.Input,{fluid:!0,onInput:function(e,t){return N(t)}})})]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Button,{content:"Transfer",icon:"sign-out-alt",onClick:function(){return c("transfer",{target_acc_number:d,funds_amount:m,purpose:C})}}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"fundsAmount",0),d=l[0],u=l[1],s=i.owner_name,m=i.money;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Welcome, "+s,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Logout",icon:"sign-out-alt",onClick:function(){return c("logout")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account Balance",children:["$",m]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Withdrawal Amount",children:(0,o.createComponentVNode)(2,a.Input,{onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Withdraw Fund",icon:"sign-out-alt",onClick:function(){return c("withdrawal",{funds_amount:d})}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Menu",children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Change account security level",icon:"lock",onClick:function(){return c("view_screen",{view_screen:1})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Make transfer",icon:"exchange-alt",onClick:function(){return c("view_screen",{view_screen:2})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"View transaction log",icon:"list",onClick:function(){return c("view_screen",{view_screen:3})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Print balance statement",icon:"print",onClick:function(){return c("balance_statement")}})})]})],4)},s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=(0,r.useLocalState)(t,"accountID",null),d=l[0],u=l[1],s=(0,r.useLocalState)(t,"accountPin",null),m=s[0],p=s[1];i.machine_id,i.held_card_name;return(0,o.createComponentVNode)(2,a.Section,{title:"Insert card or enter ID and pin to login",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Account ID",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return u(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pin",children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"6 Digit Number",onInput:function(e,t){return p(t)}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Login",icon:"sign-in-alt",onClick:function(){return c("attempt_auth",{account_num:d,account_pin:m})}})})]})})},m=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.transaction_log);return(0,o.createComponentVNode)(2,a.Section,{title:"Transactions",children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Terminal"})]}),c.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{p:"1rem",children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:["$",e.amount]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.source_terminal})]},e)}))]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,p)]})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act;n.data;return(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"sign-out-alt",onClick:function(){return c("view_screen",{view_screen:0})}})}},function(e,t,n){"use strict";t.__esModule=!0,t.AccountsUplinkTerminal=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(75),l=n(4),d=n(132),u=n(133);t.AccountsUplinkTerminal=function(e,t){var n,r=(0,a.useBackend)(t),c=(r.act,r.data),i=c.loginState,m=c.currentPage;return i.logged_in?(1===m?n=(0,o.createComponentVNode)(2,s):2===m?n=(0,o.createComponentVNode)(2,f):3===m&&(n=(0,o.createComponentVNode)(2,h)),(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d.LoginInfo),n]})})):(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,u.LoginScreen)})})};var s=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.accounts,d=(0,a.useLocalState)(t,"searchText",""),u=d[0],s=(d[1],(0,a.useLocalState)(t,"sortId","owner_name")),f=s[0],h=(s[1],(0,a.useLocalState)(t,"sortOrder",!0)),C=h[0];h[1];return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,c.Flex.Item,{flexGrow:"1",mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{height:"100%",children:(0,o.createComponentVNode)(2,c.Table,{className:"AccountsUplinkTerminal__list",children:[(0,o.createComponentVNode)(2,c.Table.Row,{bold:!0,children:[(0,o.createComponentVNode)(2,m,{id:"owner_name",children:"Account Holder"}),(0,o.createComponentVNode)(2,m,{id:"account_number",children:"Account Number"}),(0,o.createComponentVNode)(2,m,{id:"suspended",children:"Account Status"})]}),l.filter((0,r.createSearch)(u,(function(e){return e.owner_name+"|"+e.account_number+"|"+e.suspended}))).sort((function(e,t){var n=C?1:-1;return e[f].localeCompare(t[f])*n})).map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{onClick:function(){return i("view_account_detail",{index:e.account_index})},children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",e.owner_name]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:["#",e.account_number]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.suspended})]},e.id)}))]})})})]})},m=function(e,t){var n=(0,a.useLocalState)(t,"sortId","name"),r=n[0],i=n[1],l=(0,a.useLocalState)(t,"sortOrder",!0),d=l[0],u=l[1],s=e.id,m=e.children;return(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,c.Button,{color:r!==s&&"transparent",width:"100%",onClick:function(){r===s?u(!d):(i(s),u(!0))},children:[m,r===s&&(0,o.createComponentVNode)(2,c.Icon,{name:d?"sort-up":"sort-down",ml:"0.25rem;"})]})})},p=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data.is_printing,d=(0,a.useLocalState)(t,"searchText",""),u=(d[0],d[1]);return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,i.FlexItem,{children:[(0,o.createComponentVNode)(2,c.Button,{content:"New Account",icon:"plus",onClick:function(){return r("create_new_account")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"print",content:"Print Account List",disabled:l,ml:"0.25rem",onClick:function(){return r("print_records")}})]}),(0,o.createComponentVNode)(2,i.FlexItem,{grow:"1",ml:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by account holder, number, status",width:"100%",onInput:function(e,t){return u(t)}})})]})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.is_printing,d=i.account_number,u=i.owner_name,s=i.money,m=i.suspended,p=i.transactions;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"#"+d+" / "+u,mt:1,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"print",content:"Print Account Details",disabled:l,onClick:function(){return r("print_account_details")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("back")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Number",children:["#",d]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Holder",children:u}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Balance",children:s}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Status",color:m?"red":"green",children:[m?"Suspended":"Active",(0,o.createComponentVNode)(2,c.Button,{ml:1,content:m?"Unsuspend":"Suspend",icon:m?"unlock":"lock",onClick:function(){return r("toggle_suspension")}})]})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Transactions",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Timestamp"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Target"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Reason"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Value"}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Terminal"})]}),p.map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[e.date," ",e.time]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.target_name}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.purpose}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:["$",e.amount]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.source_terminal})]},e)}))]})})],4)},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=(n.data,(0,a.useLocalState)(t,"accName","")),l=i[0],d=i[1],u=(0,a.useLocalState)(t,"accDeposit",""),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,c.Section,{title:"Create Account",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"arrow-left",content:"Back",onClick:function(){return r("back")}}),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Account Holder",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Name Here",onChange:function(e,t){return d(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Initial Deposit",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"0",onChange:function(e,t){return m(t)}})})]}),(0,o.createComponentVNode)(2,c.Button,{mt:1,fluid:!0,content:"Create Account",onClick:function(){return r("finalise_create_account",{holder_name:l,starting_funds:s})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AiAirlock=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i={2:{color:"good",localStatusText:"Offline"},1:{color:"average",localStatusText:"Caution"},0:{color:"bad",localStatusText:"Optimal"}};t.AiAirlock=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=i[d.power.main]||i[0],s=i[d.power.backup]||i[0],m=i[d.shock]||i[0];return(0,o.createComponentVNode)(2,c.Window,{width:500,height:390,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Power Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Main",color:u.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.main,content:"Disrupt",onClick:function(){return l("disrupt-main")}}),children:[d.power.main?"Online":"Offline"," ",d.wires.main_power?d.power.main_timeleft>0&&"["+d.power.main_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Backup",color:s.color,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"lightbulb-o",disabled:!d.power.backup,content:"Disrupt",onClick:function(){return l("disrupt-backup")}}),children:[d.power.backup?"Online":"Offline"," ",d.wires.backup_power?d.power.backup_timeleft>0&&"["+d.power.backup_timeleft+"s]":"[Wires have been cut!]"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Electrify",color:m.color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",disabled:!(d.wires.shock&&2!==d.shock),content:"Restore",onClick:function(){return l("shock-restore")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock,content:"Temporary",onClick:function(){return l("shock-temp")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bolt",disabled:!d.wires.shock||0===d.shock,content:"Permanent",onClick:function(){return l("shock-perm")}})],4),children:[2===d.shock?"Safe":"Electrified"," ",(d.wires.shock?d.shock_timeleft>0&&"["+d.shock_timeleft+"s]":"[Wires have been cut!]")||-1===d.shock_timeleft&&"[Permanent]"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Access and Door Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Scan",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.id_scanner?"power-off":"times",content:d.id_scanner?"Enabled":"Disabled",selected:d.id_scanner,disabled:!d.wires.id_scanner,onClick:function(){return l("idscan-toggle")}}),children:!d.wires.id_scanner&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Access",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.emergency?"power-off":"times",content:d.emergency?"Enabled":"Disabled",selected:d.emergency,onClick:function(){return l("emergency-toggle")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolts",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.locked?"lock":"unlock",content:d.locked?"Lowered":"Raised",selected:d.locked,disabled:!d.wires.bolts,onClick:function(){return l("bolt-toggle")}}),children:!d.wires.bolts&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Bolt Lights",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.lights?"power-off":"times",content:d.lights?"Enabled":"Disabled",selected:d.lights,disabled:!d.wires.lights,onClick:function(){return l("light-toggle")}}),children:!d.wires.lights&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Force Sensors",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.safe?"power-off":"times",content:d.safe?"Enabled":"Disabled",selected:d.safe,disabled:!d.wires.safe,onClick:function(){return l("safe-toggle")}}),children:!d.wires.safe&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Timing Safety",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.speed?"power-off":"times",content:d.speed?"Enabled":"Disabled",selected:d.speed,disabled:!d.wires.timing,onClick:function(){return l("speed-toggle")}}),children:!d.wires.timing&&"[Wires have been cut!]"}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Door Control",color:"bad",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:d.opened?"sign-out-alt":"sign-in-alt",content:d.opened?"Open":"Closed",selected:d.opened,disabled:d.locked||d.welded,onClick:function(){return l("open-close")}}),children:!(!d.locked&&!d.welded)&&(0,o.createVNode)(1,"span",null,[(0,o.createTextVNode)("[Door is "),d.locked?"bolted":"",d.locked&&d.welded?" and ":"",d.welded?"welded":"",(0,o.createTextVNode)("!]")],0)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirAlarm=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(183);t.AirAlarm=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data.locked);return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,i.InterfaceLockNoticeBox),!a&&(0,o.createFragment)([(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s)],4)]})})};var l=function(e){return 0===e?"green":1===e?"orange":"red"},d=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,d=c.data,u=d.air,s=d.mode,m=d.atmos_alarm,p=d.locked,f=d.alarmActivated,h=d.rcon,C=d.target_temp;return n=0===u.danger.overall?0===m?"Optimal":"Caution: Atmos alert in area":1===u.danger.overall?"Caution":"DANGER: Internals Required",(0,o.createComponentVNode)(2,a.Section,{title:"Air Status",children:u?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.pressure),children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.pressure})," kPa",!p&&(0,o.createFragment)([(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,a.Button,{content:3===s?"Deactivate Panic Siphon":"Activate Panic Siphon",selected:3===s,icon:"exclamation-triangle",onClick:function(){return i("mode",{mode:3===s?1:3})}})],4)]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.oxygen/100,color:l(u.danger.oxygen)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nitrogen",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.nitrogen/100,color:l(u.danger.nitrogen)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Carbon Dioxide",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.co2/100,color:l(u.danger.co2)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Toxins",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.plasma/100,color:l(u.danger.plasma)})}),u.contents.other>0&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Other",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.contents.other/100,color:l(u.danger.other)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.temperature),children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.temperature})," K / ",(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.temperature_c})," C\xa0",(0,o.createComponentVNode)(2,a.Button,{icon:"thermometer-full",content:C+" C",onClick:function(){return i("temperature")}}),(0,o.createComponentVNode)(2,a.Button,{content:u.thermostat_state?"On":"Off",selected:u.thermostat_state,icon:"power-off",onClick:function(){return i("thermostat_state")}})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Local Status",children:(0,o.createComponentVNode)(2,a.Box,{color:l(u.danger.overall),children:[n,!p&&(0,o.createFragment)([(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,a.Button,{content:f?"Reset Alarm":"Activate Alarm",selected:f,onClick:function(){return i(f?"atmos_reset":"atmos_alarm")}})],4)]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Control Settings",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Off",selected:1===h,onClick:function(){return i("set_rcon",{rcon:1})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Auto",selected:2===h,onClick:function(){return i("set_rcon",{rcon:2})}}),(0,o.createComponentVNode)(2,a.Button,{content:"On",selected:3===h,onClick:function(){return i("set_rcon",{rcon:3})}})]})]}):(0,o.createComponentVNode)(2,a.Box,{children:"Unable to acquire air sample!"})})},u=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),c=n[0],i=n[1];return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===c,onClick:function(){return i(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"sign-out-alt"})," Vent Control"]},"Vents"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===c,onClick:function(){return i(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"sign-in-alt"})," Scrubber Control"]},"Scrubbers"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===c,onClick:function(){return i(2)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"cog"})," Mode"]},"Mode"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===c,onClick:function(){return i(3)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"tachometer-alt"})," Thresholds"]},"Thresholds")]})},s=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),a=n[0];n[1];switch(a){case 0:return(0,o.createComponentVNode)(2,m);case 1:return(0,o.createComponentVNode)(2,p);case 2:return(0,o.createComponentVNode)(2,f);case 3:return(0,o.createComponentVNode)(2,h);default:return"WE SHOULDN'T BE HERE!"}},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act;return n.data.vents.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Button,{content:e.power?"On":"Off",selected:e.power,icon:"power-off",onClick:function(){return c("command",{cmd:"power",val:1===e.power?0:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"release"===e.direction?"Blowing":"Siphoning",icon:"release"===e.direction?"sign-out-alt":"sign-in-alt",onClick:function(){return c("command",{cmd:"direction",val:"release"===e.direction?0:1,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pressure Checks",children:[(0,o.createComponentVNode)(2,a.Button,{content:"External",selected:1===e.checks,onClick:function(){return c("command",{cmd:"checks",val:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Internal",selected:2===e.checks,onClick:function(){return c("command",{cmd:"checks",val:2,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"External Pressure Target",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:e.external})," kPa\xa0",(0,o.createComponentVNode)(2,a.Button,{content:"Set",icon:"cog",onClick:function(){return c("command",{cmd:"set_external_pressure",id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Reset",icon:"redo-alt",onClick:function(){return c("command",{cmd:"set_external_pressure",val:101.325,id_tag:e.id_tag})}})]})]})},e.name)}))},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act;return n.data.scrubbers.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[(0,o.createComponentVNode)(2,a.Button,{content:e.power?"On":"Off",selected:e.power,icon:"power-off",onClick:function(){return c("command",{cmd:"power",val:1===e.power?0:1,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:0===e.scrubbing?"Siphoning":"Scrubbing",icon:0===e.scrubbing?"sign-in-alt":"filter",onClick:function(){return c("command",{cmd:"scrubbing",val:0===e.scrubbing?1:0,id_tag:e.id_tag})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,a.Button,{content:e.widenet?"Extended":"Normal",selected:e.widenet,icon:"expand-arrows-alt",onClick:function(){return c("command",{cmd:"widenet",val:0===e.widenet?1:0,id_tag:e.id_tag})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filtering",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Carbon Dioxide",selected:e.filter_co2,onClick:function(){return c("command",{cmd:"co2_scrub",val:0===e.filter_co2?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Plasma",selected:e.filter_toxins,onClick:function(){return c("command",{cmd:"tox_scrub",val:0===e.filter_toxins?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Nitrous Oxide",selected:e.filter_n2o,onClick:function(){return c("command",{cmd:"n2o_scrub",val:0===e.filter_n2o?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Oxygen",selected:e.filter_o2,onClick:function(){return c("command",{cmd:"o2_scrub",val:0===e.filter_o2?1:0,id_tag:e.id_tag})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Nitrogen",selected:e.filter_n2,onClick:function(){return c("command",{cmd:"n2_scrub",val:0===e.filter_n2?1:0,id_tag:e.id_tag})}})]})]})},e.name)}))},f=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.modes,d=i.presets,u=i.emagged,s=i.mode,m=i.preset;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"System Mode",children:(0,o.createComponentVNode)(2,a.Table,{children:l.map((function(e){return(!e.emagonly||e.emagonly&&!!u)&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"right",width:1,children:(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:"cog",selected:e.id===s,onClick:function(){return c("mode",{mode:e.id})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.desc})]},e.name)}))})}),(0,o.createComponentVNode)(2,a.Section,{title:"System Presets",children:[(0,o.createComponentVNode)(2,a.Box,{italic:!0,children:"After making a selection, the system will automatically cycle in order to remove contaminants."}),(0,o.createComponentVNode)(2,a.Table,{mt:1,children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"right",width:1,children:(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:"cog",selected:e.id===m,onClick:function(){return c("preset",{preset:e.id})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.desc})]},e.name)}))})]})],4)},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.thresholds;return(0,o.createComponentVNode)(2,a.Section,{title:"Alarm Thresholds",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"20%",children:"Value"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"red",width:"20%",children:"Danger Min"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"orange",width:"20%",children:"Warning Min"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"orange",width:"20%",children:"Warning Max"}),(0,o.createComponentVNode)(2,a.Table.Cell,{color:"red",width:"20%",children:"Danger Max"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),e.settings.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:-1===e.selected?"Off":e.selected,onClick:function(){return c("command",{cmd:"set_threshold",env:e.env,"var":e.val})}})},e.val)}))]},e.name)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirlockAccessController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AirlockAccessController=function(e,t){var n,i,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.exterior_status,m=u.interior_status,p=u.processing;return n="open"===u.exterior_status.state?(0,o.createComponentVNode)(2,a.Button,{content:"Lock Exterior Door",icon:"exclamation-triangle",disabled:p,onClick:function(){return d("force_ext")}}):(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Exterior",icon:"arrow-circle-left",disabled:p,onClick:function(){return d("cycle_ext_door")}}),i="open"===u.interior_status.state?(0,o.createComponentVNode)(2,a.Button,{content:"Lock Interior Door",icon:"exclamation-triangle",disabled:p,color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_int")}}):(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Interior",icon:"arrow-circle-right",disabled:p,onClick:function(){return d("cycle_int_door")}}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"External Door Status",children:"closed"===s.state?"Locked":"Open"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Internal Door Status",children:"closed"===m.state?"Locked":"Open"})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Box,{children:n}),(0,o.createComponentVNode)(2,a.Box,{children:i})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AirlockElectronics=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(78);t.AirlockElectronics=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,d)]})};var l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.unrestricted_dir;return(0,o.createComponentVNode)(2,a.Section,{title:"Access Control",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,mb:1,children:"Unrestricted Access From:"}),(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-down",content:"North",selected:"north"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"North"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-up",content:"South",selected:"south"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"South"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-left",content:"East",selected:"east"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"East"})}})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,textAlign:"center",icon:"arrow-right",content:"West",selected:"west"===i?"selected":null,onClick:function(){return c("unrestricted_access",{unres_dir:"West"})}})})]})]})})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.selected_accesses,u=l.one_access,s=l.regions;return(0,o.createComponentVNode)(2,i.AccessList,{usedByRcd:1,rcdButtons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:u,content:"One",onClick:function(){return c("set_one_access",{access:"one"})}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:!u,content:"All",onClick:function(){return c("set_one_access",{access:"all"})}})],4),accesses:s,selectedList:d,accessMod:function(e){return c("set",{access:e})},grantAll:function(){return c("grant_all")},denyAll:function(){return c("clear_all")},grantDep:function(e){return c("grant_region",{region:e})},denyDep:function(e){return c("deny_region",{region:e})}})}},function(e,t,n){"use strict";t.__esModule=!0,t.AppearanceChanger=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AppearanceChanger=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.change_race,s=d.species,m=d.specimen,p=d.change_gender,f=d.gender,h=d.has_gender,C=d.change_eye_color,N=d.change_skin_tone,b=d.change_skin_color,g=d.change_head_accessory_color,V=d.change_hair_color,v=d.change_secondary_hair_color,y=d.change_facial_hair_color,_=d.change_secondary_facial_hair_color,x=d.change_head_marking_color,k=d.change_body_marking_color,L=d.change_tail_marking_color,B=d.change_head_accessory,w=d.head_accessory_styles,S=d.head_accessory_style,I=d.change_hair,T=d.hair_styles,A=d.hair_style,E=d.change_facial_hair,M=d.facial_hair_styles,O=d.facial_hair_style,P=d.change_head_markings,R=d.head_marking_styles,D=d.head_marking_style,F=d.change_body_markings,j=d.body_marking_styles,W=d.body_marking_style,z=d.change_tail_markings,U=d.tail_marking_styles,H=d.tail_marking_style,K=d.change_body_accessory,G=d.body_accessory_styles,Y=d.body_accessory_style,q=d.change_alt_head,$=d.alt_head_styles,X=d.alt_head_style,J=!1;return(C||N||b||g||V||v||y||_||x||k||L)&&(J=!0),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[!!u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.specimen,selected:e.specimen===m,onClick:function(){return l("race",{race:e.specimen})}},e.specimen)}))}),!!p&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gender",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Male",selected:"male"===f,onClick:function(){return l("gender",{gender:"male"})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Female",selected:"female"===f,onClick:function(){return l("gender",{gender:"female"})}}),!h&&(0,o.createComponentVNode)(2,a.Button,{content:"Genderless",selected:"plural"===f,onClick:function(){return l("gender",{gender:"plural"})}})]}),!!J&&(0,o.createComponentVNode)(2,i),!!B&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Head accessory",children:w.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.headaccessorystyle,selected:e.headaccessorystyle===S,onClick:function(){return l("head_accessory",{head_accessory:e.headaccessorystyle})}},e.headaccessorystyle)}))}),!!I&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hair",children:T.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.hairstyle,selected:e.hairstyle===A,onClick:function(){return l("hair",{hair:e.hairstyle})}},e.hairstyle)}))}),!!E&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Facial hair",children:M.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.facialhairstyle,selected:e.facialhairstyle===O,onClick:function(){return l("facial_hair",{facial_hair:e.facialhairstyle})}},e.facialhairstyle)}))}),!!P&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Head markings",children:R.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.headmarkingstyle,selected:e.headmarkingstyle===D,onClick:function(){return l("head_marking",{head_marking:e.headmarkingstyle})}},e.headmarkingstyle)}))}),!!F&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Body markings",children:j.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.bodymarkingstyle,selected:e.bodymarkingstyle===W,onClick:function(){return l("body_marking",{body_marking:e.bodymarkingstyle})}},e.bodymarkingstyle)}))}),!!z&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tail markings",children:U.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.tailmarkingstyle,selected:e.tailmarkingstyle===H,onClick:function(){return l("tail_marking",{tail_marking:e.tailmarkingstyle})}},e.tailmarkingstyle)}))}),!!K&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Body accessory",children:G.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.bodyaccessorystyle,selected:e.bodyaccessorystyle===Y,onClick:function(){return l("body_accessory",{body_accessory:e.bodyaccessorystyle})}},e.bodyaccessorystyle)}))}),!!q&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alternate head",children:$.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.altheadstyle,selected:e.altheadstyle===X,onClick:function(){return l("alt_head",{alt_head:e.altheadstyle})}},e.altheadstyle)}))})]})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Colors",children:[{key:"change_eye_color",text:"Change eye color",action:"eye_color"},{key:"change_skin_tone",text:"Change skin tone",action:"skin_tone"},{key:"change_skin_color",text:"Change skin color",action:"skin_color"},{key:"change_head_accessory_color",text:"Change head accessory color",action:"head_accessory_color"},{key:"change_hair_color",text:"Change hair color",action:"hair_color"},{key:"change_secondary_hair_color",text:"Change secondary hair color",action:"secondary_hair_color"},{key:"change_facial_hair_color",text:"Change facial hair color",action:"facial_hair_color"},{key:"change_secondary_facial_hair_color",text:"Change secondary facial hair color",action:"secondary_facial_hair_color"},{key:"change_head_marking_color",text:"Change head marking color",action:"head_marking_color"},{key:"change_body_marking_color",text:"Change body marking color",action:"body_marking_color"},{key:"change_tail_marking_color",text:"Change tail marking color",action:"tail_marking_color"}].map((function(e){return!!i[e.key]&&(0,o.createComponentVNode)(2,a.Button,{content:e.text,onClick:function(){return c(e.action)}})}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosAlertConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.priority||[],u=l.minor||[];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Alarms",children:(0,o.createVNode)(1,"ul",null,[0===d.length&&(0,o.createVNode)(1,"li","color-good","No Priority Alerts",16),d.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e,color:"bad",onClick:function(){return i("clear",{zone:e})}}),2,null,e)})),0===u.length&&(0,o.createVNode)(1,"li","color-good","No Minor Alerts",16),u.map((function(e){return(0,o.createVNode)(1,"li",null,(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:e,color:"average",onClick:function(){return i("clear",{zone:e})}}),2,null,e)}))],0)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(76),i=n(4);t.AtmosControl=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data,(0,r.useLocalState)(t,"tabIndex",0)),u=c[0],s=c[1];return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:0===u,children:(0,o.createComponentVNode)(2,a.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"table"})," Data View"]},"DataView"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"map-marked-alt"})," Map View"]},"MapView")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,l);case 1:return(0,o.createComponentVNode)(2,d);default:return"WE SHOULDN'T BE HERE!"}}(u)]})})})};var l=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.alarms;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Access"})]}),l.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,c.TableCell,{children:e.name}),(0,o.createComponentVNode)(2,c.TableCell,{children:(t=e.danger,0===t?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Good"}):1===t?(0,o.createComponentVNode)(2,a.Box,{color:"orange",bold:!0,children:"Warning"}):2===t?(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"DANGER"}):void 0)}),(0,o.createComponentVNode)(2,c.TableCell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",content:"Access",onClick:function(){return i("open_alarm",{aref:e.ref})}})})]},e.name);var t}))]})})},d=function(e,t){var n=(0,r.useBackend)(t).data,c=(0,r.useLocalState)(t,"zoom",1),i=c[0],l=c[1],d=n.alarms;return(0,o.createComponentVNode)(2,a.Box,{height:"526px",mb:"0.5rem",overflow:"hidden",children:(0,o.createComponentVNode)(2,a.NanoMap,{onZoom:function(e){return l(e)},children:d.filter((function(e){return 2===e.z})).map((function(e){return(0,o.createComponentVNode)(2,a.NanoMap.Marker,{x:e.x,y:e.y,zoom:i,icon:"circle",tooltip:e.name,color:(t=e.danger,0===t?"green":1===t?"orange":2===t?"red":void 0)},e.ref);var t}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosFilter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosFilter=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.on,u=l.pressure,s=l.max_pressure,m=l.filter_type,p=l.filter_type_list;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"On":"Off",color:d?null:"red",selected:d,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===u,width:2.2,onClick:function(){return i("min_pressure")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"kPa",width:6.1,lineHeight:1.5,step:10,minValue:0,maxValue:s,value:u,onDrag:function(e,t){return i("custom_pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:u===s,width:2.2,onClick:function(){return i("max_pressure")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Filter",children:p.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{selected:e.gas_type===m,content:e.label,onClick:function(){return i("set_filter",{filter:e.gas_type})}},e.label)}))})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosMixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosMixer=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.on,s=d.pressure,m=d.max_pressure,p=d.node1_concentration,f=d.node2_concentration;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:u?"On":"Off",color:u?null:"red",selected:u,onClick:function(){return l("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===s,width:2.2,onClick:function(){return l("min_pressure")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"kPa",width:6.1,lineHeight:1.5,step:10,minValue:0,maxValue:m,value:s,onDrag:function(e,t){return l("custom_pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:s===m,width:2.2,onClick:function(){return l("max_pressure")}})]}),(0,o.createComponentVNode)(2,i,{node_name:"Node 1",node_ref:p}),(0,o.createComponentVNode)(2,i,{node_name:"Node 2",node_ref:f})]})})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.node_name),l=e.node_ref;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:i,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",width:2.2,disabled:0===l,onClick:function(){return c("set_node",{node_name:i,concentration:(l-10)/100})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:"%",width:6.1,lineHeight:1.5,stepPixelSize:10,minValue:0,maxValue:100,value:l,onChange:function(e,t){return c("set_node",{node_name:i,concentration:t/100})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",width:2.2,disabled:100===l,onClick:function(){return c("set_node",{node_name:i,concentration:(l+10)/100})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.AtmosPump=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.AtmosPump=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.on,u=l.rate,s=l.max_rate,m=l.gas_unit,p=l.step;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",content:d?"On":"Off",color:d?null:"red",selected:d,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Rate",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",textAlign:"center",disabled:0===u,width:2.2,onClick:function(){return i("min_rate")}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,unit:m,width:6.1,lineHeight:1.5,step:p,minValue:0,maxValue:s,value:u,onDrag:function(e,t){return i("custom_rate",{rate:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",textAlign:"center",disabled:u===s,width:2.2,onClick:function(){return i("max_rate")}})]})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Autolathe=void 0;var o=n(0),r=n(43),a=n(26),c=n(1),i=n(2),l=n(4),d=n(19),u=function(e,t,n,o){return null===e.requirements||!(e.requirements.metal*o>t)&&!(e.requirements.glass*o>n)};t.Autolathe=function(e,t){var n=(0,c.useBackend)(t),s=n.act,m=n.data,p=m.total_amount,f=(m.max_amount,m.metal_amount),h=m.glass_amount,C=m.busyname,N=(m.busyamt,m.showhacked,m.buildQueue),b=m.buildQueueLen,g=m.recipes,V=m.categories,v=(0,c.useSharedState)(t,"category",0),y=v[0],_=v[1];0===y&&(y="Tools");var x=f.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),k=h.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),L=p.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,"),B=(0,c.useSharedState)(t,"search_text",""),w=B[0],S=B[1],I=(0,d.createSearch)(w,(function(e){return e.name})),T="";b>0&&(T=N.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,i.Button,{icon:"times",content:N[t][0],onClick:function(){return s("remove_from_queue",{remove_from_queue:N.indexOf(e)+1})}},e)},t)})));var A=(0,r.flow)([(0,a.filter)((function(e){return(e.category.indexOf(y)>-1||w)&&(m.showhacked||!e.hacked)})),w&&(0,a.filter)(I),(0,a.sortBy)((function(e){return e.name.toLowerCase()}))])(g),E="Build";w?E="Results for: '"+w+"':":y&&(E="Build ("+y+")");return(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,children:[(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,i.Section,{title:E,buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"190px",options:V,selected:y,onSelected:function(e){return _(e)}}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",onInput:function(e,t){return S(t)},mb:1}),A.map((function(e){return(0,o.createComponentVNode)(2,i.Flex,{justify:"space-between",align:"center",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{children:[(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+e.image,style:{"vertical-align":"middle",width:"32px",margin:"0px","margin-left":"0px"}}),(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&1===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,1),onClick:function(){return s("make",{make:e.uid,multiplier:1})},children:(0,d.toTitleCase)(e.name)}),e.max_multiplier>=10&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&10===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,10),onClick:function(){return s("make",{make:e.uid,multiplier:10})},children:"10x"}),e.max_multiplier>=25&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&25===m.busyamt,disabled:!u(e,m.metal_amount,m.glass_amount,25),onClick:function(){return s("make",{make:e.uid,multiplier:25})},children:"25x"}),e.max_multiplier>25&&(0,o.createComponentVNode)(2,i.Button,{icon:"hammer",selected:m.busyname===e.name&&m.busyamt===e.max_multiplier,disabled:!u(e,m.metal_amount,m.glass_amount,e.max_multiplier),onClick:function(){return s("make",{make:e.uid,multiplier:e.max_multiplier})},children:[e.max_multiplier,"x"]})]}),(0,o.createComponentVNode)(2,i.Flex.Item,{children:e.requirements&&Object.keys(e.requirements).map((function(t){return(0,d.toTitleCase)(t)+": "+e.requirements[t]})).join(", ")||(0,o.createComponentVNode)(2,i.Box,{children:"No resources required."})})]},e.ref)}))]}),2,{style:{float:"left",width:"68%"}}),(0,o.createVNode)(1,"div",null,[(0,o.createComponentVNode)(2,i.Section,{title:"Materials",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Metal",children:x}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Glass",children:k}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Total",children:L}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Storage",children:[m.fill_percent,"% Full"]})]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Building",children:(0,o.createComponentVNode)(2,i.Box,{color:C?"green":"",children:C||"Nothing"})}),(0,o.createComponentVNode)(2,i.Section,{title:"Build Queue",children:[T,(0,o.createVNode)(1,"div",null,(0,o.createComponentVNode)(2,i.Button,{icon:"times",content:"Clear All",disabled:!m.buildQueueLen,onClick:function(){return s("clear_queue")}}),2,{align:"right"})]})],4,{style:{float:"right",width:"30%"}})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BlueSpaceArtilleryControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BlueSpaceArtilleryControl=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return n=d.ready?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:"green",children:"Ready"}):d.reloadtime_text?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reloading In",color:"red",children:d.reloadtime_text}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:"red",children:"No cannon connected!"}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.notice&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alert",color:"red",children:d.notice}),n,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Button,{icon:"crosshairs",content:d.target?d.target:"None",onClick:function(){return l("recalibrate")}})}),1===d.ready&&!!d.target&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Firing",children:(0,o.createComponentVNode)(2,a.Button,{icon:"skull",content:"FIRE!",color:"red",onClick:function(){return l("fire")}})}),!d.connected&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance",children:(0,o.createComponentVNode)(2,a.Button,{icon:"wrench",content:"Complete Deployment",onClick:function(){return l("build")}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BluespaceTap=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(95);t.BluespaceTap=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.product||[],s=d.desiredLevel,m=d.inputLevel,p=d.points,f=d.totalPoints,h=d.powerUse,C=d.availablePower,N=d.maxLevel,b=d.emagged,g=d.safeLevels,V=d.nextLevelPower,v=s>m?"bad":"good";return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!b&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:1,children:"Safety Protocols disabled"}),!!(m>g)&&(0,o.createComponentVNode)(2,a.NoticeBox,{danger:1,children:"High Power, Instability likely"}),(0,o.createComponentVNode)(2,a.Collapsible,{title:"Input Management",children:(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Input Level",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Desired Level",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===s,tooltip:"Set to 0",onClick:function(){return l("set",{set_level:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"step-backward",tooltip:"Decrease to actual input level",disabled:0===s,onClick:function(){return l("set",{set_level:m})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===s,tooltip:"Decrease one step",onClick:function(){return l("decrease")}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:s,fillValue:m,minValue:0,color:v,maxValue:N,stepPixelSize:20,step:1,onChange:function(e,t){return l("set",{set_level:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:s===N,tooltip:"Increase one step",tooltipPosition:"left",onClick:function(){return l("increase")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:s===N,tooltip:"Set to max",tooltipPosition:"left",onClick:function(){return l("set",{set_level:N})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Power Use",children:(0,i.formatPower)(h)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power for next level",children:(0,i.formatPower)(V)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Surplus Power",children:(0,i.formatPower)(C)})]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available Points",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Points",children:f})]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{align:"end",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:(0,o.createComponentVNode)(2,a.Button,{disabled:e.price>=p,onClick:function(){return l("vend",{target:e.key})},content:e.price})},e.key)}))})})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BodyScanner=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["hasBorer","bad","Large growth detected in frontal lobe, possibly cancerous. Surgical removal is recommended."],["hasVirus","bad","Viral pathogen detected in blood stream."],["blind","average","Cataracts detected."],["colourblind","average","Photoreceptor abnormalities detected."],["nearsighted","average","Retinal misalignment detected."]],u=[["Respiratory","oxyLoss"],["Brain","brainLoss"],["Toxin","toxLoss"],["Radioactive","radLoss"],["Brute","bruteLoss"],["Genetic","cloneLoss"],["Burn","fireLoss"],["Paralysis","paralysis"]],s={average:[.25,.5],bad:[.5,Infinity]},m=function(e,t){for(var n=[],o=0;o0?e.filter((function(e){return!!e})).reduce((function(e,t){return(0,o.createFragment)([e,(0,o.createComponentVNode)(2,c.Box,{children:t},t)],0)}),null):null},f=function(e){if(e>100){if(e<300)return"mild infection";if(e<400)return"mild infection+";if(e<500)return"mild infection++";if(e<700)return"acute infection";if(e<800)return"acute infection+";if(e<900)return"acute infection++";if(e>=900)return"septic"}return""};t.BodyScanner=function(e,t){var n=(0,a.useBackend)(t).data,r=n.occupied,c=n.occupant,l=void 0===c?{}:c,d=r?(0,o.createComponentVNode)(2,h,{occupant:l}):(0,o.createComponentVNode)(2,y);return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:d})})};var h=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,C,{occupant:t}),(0,o.createComponentVNode)(2,N,{occupant:t}),(0,o.createComponentVNode)(2,b,{occupant:t}),(0,o.createComponentVNode)(2,V,{organs:t.extOrgan}),(0,o.createComponentVNode)(2,v,{organs:t.intOrgan})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=n.act,d=n.data.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"print",onClick:function(){return i("print_p")},children:"Print Report"}),(0,o.createComponentVNode)(2,c.Button,{icon:"user-slash",onClick:function(){return i("ejectify")},children:"Eject"})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:d.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:d.maxHealth,value:d.health/d.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[d.stat][0],children:l[d.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:(0,r.round)(d.bodyTempC,0)}),"\xb0C,\xa0",(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:(0,r.round)(d.bodyTempF,0)}),"\xb0F"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Implants",children:d.implant_len?(0,o.createComponentVNode)(2,c.Box,{children:d.implant.map((function(e){return e.name})).join(", ")}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"None"})})]})})},N=function(e){var t=e.occupant;return t.hasBorer||t.blind||t.colourblind||t.nearsighted||t.hasVirus?(0,o.createComponentVNode)(2,c.Section,{title:"Abnormalities",children:d.map((function(e,n){if(t[e[0]])return(0,o.createComponentVNode)(2,c.Box,{color:e[1],bold:"bad"===e[1],children:e[2]})}))}):(0,o.createComponentVNode)(2,c.Section,{title:"Abnormalities",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No abnormalities found."})})},b=function(e){var t=e.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Damage",children:(0,o.createComponentVNode)(2,c.Table,{children:m(u,(function(e,n,r){return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Table.Row,{color:"label",children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[e[0],":"]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:!!n&&n[0]+":"})]}),(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,g,{value:t[e[1]],marginBottom:r100)&&"average":"bad")||!!e.status.robotic&&"label",width:"33%",children:e.name}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",q:!0,children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:e.maxHealth,mt:t>0&&"0.5rem",value:e.totalLoss/100,ranges:s,children:[(0,o.createComponentVNode)(2,c.Box,{float:"left",display:"inline",children:[!!e.bruteLoss&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"bone"}),(0,r.round)(e.bruteLoss,0),"\xa0",(0,o.createComponentVNode)(2,c.Tooltip,{position:"top",content:"Brute damage"})]}),!!e.fireLoss&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",position:"relative",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"fire"}),(0,r.round)(e.fireLoss,0),(0,o.createComponentVNode)(2,c.Tooltip,{position:"top",content:"Burn damage"})]})]}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:(0,r.round)(e.totalLoss,0)})]})}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",verticalAlign:"top",width:"33%",pt:t>0&&"calc(0.5rem + 2px)",children:[(0,o.createComponentVNode)(2,c.Box,{color:"average",display:"inline",children:p([!!e.internalBleeding&&"Internal bleeding",!!e.lungRuptured&&"Ruptured lung",!!e.status.broken&&e.status.broken,f(e.germ_level),!!e.open&&"Open incision"])}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:[p([!!e.status.splinted&&(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Splinted"}),!!e.status.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Robotic"}),!!e.status.dead&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",bold:!0,children:"DEAD"})]),p(e.shrapnel.map((function(e){return e.known?e.name:"Unknown object"})))]})]})]},t)}))]})})},v=function(e){return 0===e.organs.length?(0,o.createComponentVNode)(2,c.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"N/A"})}):(0,o.createComponentVNode)(2,c.Section,{title:"Internal Organs",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",children:"Damage"}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",children:"Injuries"})]}),e.organs.map((function(e,t){return(0,o.createComponentVNode)(2,c.Table.Row,{textTransform:"capitalize",children:[(0,o.createComponentVNode)(2,c.Table.Cell,{color:(!e.dead?e.germ_level>100&&"average":"bad")||e.robotic>0&&"label",width:"33%",children:e.name}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:e.maxHealth,value:e.damage/100,mt:t>0&&"0.5rem",ranges:s,children:(0,r.round)(e.damage,0)})}),(0,o.createComponentVNode)(2,c.Table.Cell,{textAlign:"right",verticalAlign:"top",width:"33%",pt:t>0&&"calc(0.5rem + 2px)",children:[(0,o.createComponentVNode)(2,c.Box,{color:"average",display:"inline",children:p([f(e.germ_level)])}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:p([1===e.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Robotic"}),2===e.robotic&&(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Assisted"}),!!e.dead&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",bold:!0,children:"DEAD"})])})]})]},t)}))]})})},y=function(){return(0,o.createComponentVNode)(2,c.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotClean=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BotClean=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.locked,u=l.noaccess,s=l.maintpanel,m=l.on,p=l.autopatrol,f=l.canhack,h=l.emagged,C=l.remote_disabled,N=l.painame,b=l.cleanblood;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{title:"General Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",selected:m,disabled:u,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Patrol",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,content:"Auto Patrol",disabled:u,onClick:function(){return i("autopatrol")}})}),!!s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Panel Open!"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety System",children:(0,o.createComponentVNode)(2,a.Box,{color:h?"bad":"good",children:h?"DISABLED!":"Enabled"})}),!!f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hacking",children:(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:h?"Restore Safties":"Hack",disabled:u,color:"bad",onClick:function(){return i("hack")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Access",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:!C,content:"AI Remote Control",disabled:u,onClick:function(){return i("disableremote")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cleaning Settings",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"Clean Blood",disabled:u,onClick:function(){return i("blood")}})}),N&&(0,o.createComponentVNode)(2,a.Section,{title:"pAI",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:N,disabled:u,onClick:function(){return i("ejectpai")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BotSecurity=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BotSecurity=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.locked,u=l.noaccess,s=l.maintpanel,m=l.on,p=l.autopatrol,f=l.canhack,h=l.emagged,C=l.remote_disabled,N=l.painame,b=l.check_id,g=l.check_weapons,V=l.check_warrant,v=l.arrest_mode,y=l.arrest_declare;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.NoticeBox,{children:["Swipe an ID card to ",d?"unlock":"lock"," this interface."]}),(0,o.createComponentVNode)(2,a.Section,{title:"General Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",selected:m,disabled:u,onClick:function(){return i("power")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Patrol",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:p,content:"Auto Patrol",disabled:u,onClick:function(){return i("autopatrol")}})}),!!s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Maintenance Panel",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Panel Open!"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety System",children:(0,o.createComponentVNode)(2,a.Box,{color:h?"bad":"good",children:h?"DISABLED!":"Enabled"})}),!!f&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hacking",children:(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:h?"Restore Safties":"Hack",disabled:u,color:"bad",onClick:function(){return i("hack")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Remote Access",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:!C,content:"AI Remote Control",disabled:u,onClick:function(){return i("disableremote")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Who To Arrest",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:b,content:"Unidentifiable Persons",disabled:u,onClick:function(){return i("authid")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:g,content:"Unauthorized Weapons",disabled:u,onClick:function(){return i("authweapon")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:V,content:"Wanted Criminals",disabled:u,onClick:function(){return i("authwarrant")}})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Arrest Procedure",children:[(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:v,content:"Detain Targets Indefinitely",disabled:u,onClick:function(){return i("arrtype")}}),(0,o.createComponentVNode)(2,a.Button.Checkbox,{fluid:!0,checked:y,content:"Announce Arrests On Radio",disabled:u,onClick:function(){return i("arrdeclare")}})]}),N&&(0,o.createComponentVNode)(2,a.Section,{title:"pAI",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:N,disabled:u,onClick:function(){return i("ejectpai")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigCells=void 0;var o=n(0),r=n(4),a=n(2),c=n(1),i=function(e,t){var n=e.cell,r=(0,c.useBackend)(t).act,i=n.cell_id,l=n.occupant,d=n.crimes,u=n.brigged_by,s=n.time_left_seconds,m=n.time_set_seconds,p=n.ref,f="";s>0&&(f+=" BrigCells__listRow--active");return(0,o.createComponentVNode)(2,a.Table.Row,{className:f,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:i}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:l}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:d}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:u}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.TimeDisplay,{totalSeconds:m})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.TimeDisplay,{totalSeconds:s})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{type:"button",onClick:function(){r("release",{ref:p})},children:"Release"})})]})},l=function(e){var t=e.cells;return(0,o.createComponentVNode)(2,a.Table,{className:"BrigCells__list",children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Cell"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Occupant"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Crimes"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Brigged By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Time Brigged For"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Time Left"}),(0,o.createComponentVNode)(2,a.Table.Cell,{header:!0,children:"Release"})]}),t.map((function(e){return(0,o.createComponentVNode)(2,i,{cell:e},e.ref)}))]})};t.BrigCells=function(e,t){var n=(0,c.useBackend)(t),i=(n.act,n.data.cells);return(0,o.createComponentVNode)(2,r.Window,{theme:"security",resizable:!0,children:(0,o.createComponentVNode)(2,r.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",height:"100%",children:(0,o.createComponentVNode)(2,a.Section,{height:"100%",flexGrow:"1",children:(0,o.createComponentVNode)(2,l,{cells:i})})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.BrigTimer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.BrigTimer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;l.nameText=l.occupant,l.timing&&(l.prisoner_hasrec?l.nameText=(0,o.createComponentVNode)(2,a.Box,{color:"green",children:l.occupant}):l.nameText=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:l.occupant}));var d="pencil-alt";l.prisoner_name&&(l.prisoner_hasrec||(d="exclamation-triangle"));var u=[],s=0;for(s=0;se.current_positions&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:e.total_positions-e.current_positions})||(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"0"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{content:"-",disabled:s.cooldown_time||!e.can_close,onClick:function(){return u("make_job_unavailable",{job:e.title})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{content:"+",disabled:s.cooldown_time||!e.can_open,onClick:function(){return u("make_job_available",{job:e.title})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{textAlign:"center",children:s.target_dept&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:s.priority_jobs.indexOf(e.title)>-1?"Yes":""})||(0,o.createComponentVNode)(2,a.Button,{content:e.is_priority?"Yes":"No",selected:e.is_priority,disabled:s.cooldown_time||!e.can_prioritize,onClick:function(){return u("prioritize_job",{job:e.title})}})})]},e.title)}))]})})],4):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 2:n=s.authenticated&&s.scan_name?s.modify_name?(0,o.createComponentVNode)(2,i.AccessList,{accesses:s.regions,selectedList:s.selectedAccess,accessMod:function(e){return u("set",{access:e})},grantAll:function(){return u("grant_all")},denyAll:function(){return u("clear_all")},grantDep:function(e){return u("grant_region",{region:e})},denyDep:function(e){return u("deny_region",{region:e})}}):(0,o.createComponentVNode)(2,a.Section,{title:"Card Missing",color:"red",children:"No card to modify."}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 3:n=s.authenticated?s.records.length?(0,o.createComponentVNode)(2,a.Section,{title:"Records",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Delete All Records",disabled:!s.authenticated||0===s.records.length||s.target_dept,onClick:function(){return u("wipe_all_logs")}}),children:[(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Crewman"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Old Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"New Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Authorized By"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Time"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Reason"}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Deleted By"})]}),s.records.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.transferee}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.oldvalue}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.newvalue}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.whodidit}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.timestamp}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.reason}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.deletedby})]},e.timestamp)}))]}),!!s.iscentcom&&(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:"Delete MY Records",color:"purple",disabled:!s.authenticated||0===s.records.length,onClick:function(){return u("wipe_my_logs")}})})]}):(0,o.createComponentVNode)(2,a.Section,{title:"Records",children:"No records."}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;case 4:n=s.authenticated&&s.scan_name?(0,o.createComponentVNode)(2,a.Section,{title:"Your Team",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Name"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Rank"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Sec Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Actions"})]}),s.people_dept.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.title}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.crimstat}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.buttontext,disabled:!e.demotable,onClick:function(){return u("remote_demote",{remote_demote:e.name})}})})]},e.title)}))]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"Not logged in."});break;default:n=(0,o.createComponentVNode)(2,a.Section,{title:"Warning",color:"red",children:"ERROR: Unknown Mode."})}return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[m,p,n]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CargoConsole=void 0;var o=n(0),r=n(43),a=n(26),c=n(1),i=n(2),l=n(4),d=(n(77),n(19));t.CargoConsole=function(e,t){return(0,o.createComponentVNode)(2,l.Window,{children:(0,o.createComponentVNode)(2,l.Window.Content,{children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m),(0,o.createComponentVNode)(2,p)]})})};var u=function(e,t){var n=(0,c.useLocalState)(t,"contentsModal",null),r=n[0],a=n[1],l=(0,c.useLocalState)(t,"contentsModalTitle",null),d=l[0],u=l[1];return null!==r&&null!==d?(0,o.createComponentVNode)(2,i.Modal,{maxWidth:"75%",width:window.innerWidth+"px",maxHeight:.75*window.innerHeight+"px",mx:"auto",children:[(0,o.createComponentVNode)(2,i.Box,{width:"100%",bold:!0,children:(0,o.createVNode)(1,"h1",null,[d,(0,o.createTextVNode)(" contents:")],0)}),(0,o.createComponentVNode)(2,i.Box,{children:r.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:["- ",e]},e)}))}),(0,o.createComponentVNode)(2,i.Box,{m:2,children:(0,o.createComponentVNode)(2,i.Button,{content:"Close",onClick:function(){a(null),u(null)}})})]}):void 0},s=function(e,t){var n,r,a=(0,c.useBackend)(t),l=a.act,d=a.data,u=d.is_public,s=d.points,m=d.timeleft,p=d.moving,f=d.at_station;return p||f?!p&&f?(n="Docked at the station",r="Return Shuttle"):p&&(r="In Transit...",n=1!==m?"Shuttle is en route (ETA: "+m+" minutes)":"Shuttle is en route (ETA: "+m+" minute)"):(n="Docked off-station",r="Call Shuttle"),(0,o.createComponentVNode)(2,i.Section,{title:"Status",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Points Available",children:s}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Shuttle Status",children:n}),0===u&&(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,i.Button,{content:r,disabled:p,onClick:function(){return l("moveShuttle")}}),(0,o.createComponentVNode)(2,i.Button,{content:"View Central Command Messages",onClick:function(){return l("showMessages")}})]})]})})},m=function(e,t){var n=(0,c.useBackend)(t),l=n.act,u=n.data,s=u.categories,m=u.supply_packs,p=(0,c.useSharedState)(t,"category","Emergency"),f=p[0],h=p[1],C=(0,c.useSharedState)(t,"search_text",""),N=C[0],b=C[1],g=(0,c.useLocalState)(t,"contentsModal",null),V=(g[0],g[1]),v=(0,c.useLocalState)(t,"contentsModalTitle",null),y=(v[0],v[1]),_=(0,d.createSearch)(N,(function(e){return e.name})),x=(0,r.flow)([(0,a.filter)((function(e){return e.cat===s.filter((function(e){return e.name===f}))[0].category||N})),N&&(0,a.filter)(_),(0,a.sortBy)((function(e){return e.name.toLowerCase()}))])(m),k="Crate Catalogue";return N?k="Results for '"+N+"':":f&&(k="Browsing "+f),(0,o.createComponentVNode)(2,i.Section,{title:k,buttons:(0,o.createComponentVNode)(2,i.Dropdown,{width:"190px",options:s.map((function(e){return e.name})),selected:f,onSelected:function(e){return h(e)}}),children:[(0,o.createComponentVNode)(2,i.Input,{fluid:!0,placeholder:"Search for...",onInput:function(e,t){return b(t)},mb:1}),(0,o.createComponentVNode)(2,i.Box,{maxHeight:25,overflowY:"auto",overflowX:"hidden",children:(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:x.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{bold:!0,children:[e.name," (",e.cost," Points)"]}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",pr:1,children:[(0,o.createComponentVNode)(2,i.Button,{content:"Order 1",icon:"shopping-cart",onClick:function(){return l("order",{crate:e.ref,multiple:0})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Order Multiple",icon:"cart-plus",onClick:function(){return l("order",{crate:e.ref,multiple:1})}}),(0,o.createComponentVNode)(2,i.Button,{content:"View Contents",icon:"search",onClick:function(){V(e.contents),y(e.name)}})]})]},e.name)}))})})]})},p=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.requests,d=a.canapprove,u=a.orders;return(0,o.createComponentVNode)(2,i.Section,{title:"Details",children:(0,o.createComponentVNode)(2,i.Box,{maxHeight:15,overflowY:"auto",overflowX:"hidden",children:[(0,o.createComponentVNode)(2,i.Box,{bold:!0,children:"Requests"}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:l.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{children:["- #",e.ordernum,": ",e.supply_type," for ",(0,o.createVNode)(1,"b",null,e.orderedby,0)]}),(0,o.createComponentVNode)(2,i.Box,{italic:!0,children:["Reason: ",e.comment]})]}),(0,o.createComponentVNode)(2,i.Table.Cell,{textAlign:"right",pr:1,children:[(0,o.createComponentVNode)(2,i.Button,{content:"Approve",color:"green",disabled:!d,onClick:function(){return r("approve",{ordernum:e.ordernum})}}),(0,o.createComponentVNode)(2,i.Button,{content:"Deny",color:"red",onClick:function(){return r("deny",{ordernum:e.ordernum})}})]})]},e.ordernum)}))}),(0,o.createComponentVNode)(2,i.Box,{bold:!0,children:"Confirmed Orders"}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:u.map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{children:(0,o.createComponentVNode)(2,i.Table.Cell,{children:[(0,o.createComponentVNode)(2,i.Box,{children:["- #",e.ordernum,": ",e.supply_type," for ",(0,o.createVNode)(1,"b",null,e.orderedby,0)]}),(0,o.createComponentVNode)(2,i.Box,{italic:!0,children:["Reason: ",e.comment]})]})},e.ordernum)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(134),i=n(4),l=[1,5,10,20,30,50],d=[1,5,10];t.ChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})})};var u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.amount,u=i.energy,s=i.maxEnergy;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:s,ranges:{good:[.5*s,Infinity],average:[.25*s,.5*s],bad:[-Infinity,.25*s]},children:[u," / ",s," Units"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispense",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",spacing:"1",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",width:"14%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:d===e,content:e,m:"0",width:"100%",onClick:function(){return c("amount",{amount:e})}})},t)}))})})]})})},s=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.chemicals,d=void 0===l?[]:l,u=[],s=0;s<(d.length+1)%3;s++)u.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:i.glass?"Drink Dispenser":"Chemical Dispenser",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px",width:"30%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",overflow:"hidden",textOverflow:"ellipsis",width:"100%",height:"100%",align:"flex-start",content:e.title,onClick:function(){return c("dispense",{reagent:e.id})}})},t)})),u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})},m=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,u=l.isBeakerLoaded,s=l.beakerCurrentVolume,m=l.beakerMaxVolume,p=l.beakerContents,f=void 0===p?[]:p;return(0,o.createComponentVNode)(2,a.Section,{title:l.glass?"Glass":"Beaker",flex:"content",minHeight:"25%",buttons:(0,o.createComponentVNode)(2,a.Box,{children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"label",mr:2,children:[s," / ",m," units"]}),(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject",disabled:!u,onClick:function(){return i("ejectBeaker")}})]}),children:(0,o.createComponentVNode)(2,c.BeakerContents,{beakerLoaded:u,beakerContents:f,buttons:function(e){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Isolate",icon:"compress-arrows-alt",onClick:function(){return i("remove",{reagent:e.id,amount:-1})}}),d.map((function(t,n){return(0,o.createComponentVNode)(2,a.Button,{content:t,onClick:function(){return i("remove",{reagent:e.id,amount:t})}},n)})),(0,o.createComponentVNode)(2,a.Button,{content:"ALL",onClick:function(){return i("remove",{reagent:e.id,amount:e.volume})}})],0)}})})}},function(e,t,n){"use strict";e.exports=n(476)()},function(e,t,n){"use strict";var o=n(477);function r(){}function a(){}a.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,a,c){if(c!==o){var i=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw i.name="Invariant Violation",i}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:r};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";t.__esModule=!0,t.ChemHeater=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(134),l=n(4);t.ChemHeater=function(e,t){return(0,o.createComponentVNode)(2,l.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.targetTemp,u=l.targetTempReached,s=l.autoEject,m=l.isActive,p=l.currentTemp,f=l.isBeakerLoaded;return(0,o.createComponentVNode)(2,c.Section,{title:"Settings",flexBasis:"content",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{content:"Auto-eject",icon:s?"toggle-on":"toggle-off",selected:s,onClick:function(){return i("toggle_autoeject")}}),(0,o.createComponentVNode)(2,c.Button,{content:m?"On":"Off",icon:"power-off",selected:m,disabled:!f,onClick:function(){return i("toggle_on")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,c.NumberInput,{width:"65px",unit:"K",step:10,stepPixelSize:3,value:(0,r.round)(d,0),minValue:0,maxValue:1e3,onDrag:function(e,t){return i("adjust_temperature",{target:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Reading",color:u?"good":"average",children:f&&(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:p,format:function(e){return(0,r.toFixed)(e)+" K"}})||"\u2014"})]})})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=l.isBeakerLoaded,u=l.beakerCurrentVolume,s=l.beakerMaxVolume,m=l.beakerContents;return(0,o.createComponentVNode)(2,c.Section,{title:"Beaker",flexGrow:"1",buttons:!!d&&(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{inline:!0,color:"label",mr:2,children:[u," / ",s," units"]}),(0,o.createComponentVNode)(2,c.Button,{icon:"eject",content:"Eject",onClick:function(){return r("eject_beaker")}})]}),children:(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:d,beakerContents:m})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ChemMaster=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(134),l=n(49),d=[1,5,10],u=["bottle.png","small_bottle.png","wide_bottle.png","round_bottle.png","reagent_bottle.png"];t.ChemMaster=function(e,t){var n=(0,r.useBackend)(t).data,a=n.condi,i=n.beaker,d=n.beaker_reagents,u=void 0===d?[]:d,f=n.buffer_reagents,h=void 0===f?[]:f,N=n.mode;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal),(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s,{beaker:i,beakerReagents:u,bufferNonEmpty:h.length>0}),(0,o.createComponentVNode)(2,m,{mode:N,bufferReagents:h}),(0,o.createComponentVNode)(2,p,{isCondiment:a,bufferNonEmpty:h.length>0}),(0,o.createComponentVNode)(2,C)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t).act,c=e.beaker,u=e.beakerReagents,s=e.bufferNonEmpty;return(0,o.createComponentVNode)(2,a.Section,{title:"Beaker",flexGrow:"0",flexBasis:"300px",buttons:s?(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"eject",disabled:!c,content:"Eject and Clear Buffer",onClick:function(){return n("eject")}}):(0,o.createComponentVNode)(2,a.Button,{icon:"eject",disabled:!c,content:"Eject and Clear Buffer",onClick:function(){return n("eject")}}),children:c?(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:!0,beakerContents:u,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?(0,o.createComponentVNode)(2,i.BeakerContents,{beakerLoaded:!0,beakerContents:s,buttons:function(e,r){return(0,o.createComponentVNode)(2,a.Box,{mb:r0?l.desc:"N/A"}),l.blood_type&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood type",children:l.blood_type}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Blood DNA",className:"LabeledList__breakContents",children:l.blood_dna})],4),!i.condi&&(0,o.createComponentVNode)(2,a.Button,{icon:i.printing?"spinner":"print",disabled:i.printing,iconSpin:!!i.printing,ml:"0.5rem",content:"Print",onClick:function(){return c("print",{idx:l.idx,beaker:e.args.beaker})}})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.CloningConsole=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(39),l=n(49),d=n(4),u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,d=e.args,u=d.activerecord,s=d.realname,m=d.health,p=d.unidentity,f=d.strucenzymes,h=m.split(" - ");return(0,o.createComponentVNode)(2,c.Section,{level:2,m:"-1rem",pb:"1rem",title:"Records of "+s,children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:s}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Damage",children:h.length>1?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.oxy,display:"inline",children:h[0]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.toxin,display:"inline",children:h[2]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.brute,display:"inline",children:h[3]}),(0,o.createTextVNode)("\xa0|\xa0"),(0,o.createComponentVNode)(2,c.Box,{color:i.COLORS.damageType.burn,display:"inline",children:h[1]})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Unknown"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"UI",className:"LabeledList__breakContents",children:p}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"SE",className:"LabeledList__breakContents",children:f}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Disk",children:[(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:!l.disk,icon:"arrow-circle-down",content:"Import",onClick:function(){return r("disk",{option:"load"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI",onClick:function(){return r("disk",{option:"save",savetype:"ui"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export UI and UE",onClick:function(){return r("disk",{option:"save",savetype:"ue"})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!l.disk,icon:"arrow-circle-up",content:"Export SE",onClick:function(){return r("disk",{option:"save",savetype:"se"})}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,c.Button,{disabled:!l.podready,icon:"user-plus",content:"Clone",onClick:function(){return r("clone",{ref:u})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"trash",content:"Delete",onClick:function(){return r("del_rec")}})]})]})})};t.CloningConsole=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.menu;return(0,l.modalRegisterBodyOverride)("view_rec",u),(0,o.createComponentVNode)(2,d.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,l.ComplexModal,{maxWidth:"75%",maxHeight:"75%"}),(0,o.createComponentVNode)(2,d.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,C),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,c.Section,{noTopPadding:!0,flexGrow:"1",children:(0,o.createComponentVNode)(2,m)})]})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data.menu;return(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===i,icon:"home",onClick:function(){return r("menu",{num:1})},children:"Main"}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===i,icon:"folder",onClick:function(){return r("menu",{num:2})},children:"Records"})]})},m=function(e,t){var n,r=(0,a.useBackend)(t).data.menu;return 1===r?n=(0,o.createComponentVNode)(2,p):2===r&&(n=(0,o.createComponentVNode)(2,f)),n},p=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.loading,u=l.scantemp,s=l.occupant,m=l.locked,p=l.can_brainscan,f=l.scan_mode,h=l.numberofpods,C=l.pods,N=l.selected_pod,b=m&&!!s;return(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"Scanner",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline",color:"label",children:"Scanner Lock:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s,selected:b,icon:b?"toggle-on":"toggle-off",content:b?"Engaged":"Disengaged",onClick:function(){return i("lock")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:b||!s,icon:"user-slash",content:"Eject Occupant",onClick:function(){return i("eject")}})],4),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:d?(0,o.createComponentVNode)(2,c.Box,{color:"average",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"spinner",spin:!0}),"\xa0 Scanning..."]}):(0,o.createComponentVNode)(2,c.Box,{color:u.color,children:u.text})}),!!p&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Scan Mode",children:(0,o.createComponentVNode)(2,c.Button,{icon:f?"brain":"male",content:f?"Brain":"Body",onClick:function(){return i("toggle_mode")}})})]}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s||d,icon:"user",content:"Scan Occupant",mt:"0.5rem",mb:"0",onClick:function(){return i("scan")}})]}),(0,o.createComponentVNode)(2,c.Section,{title:"Pods",level:"2",children:h?C.map((function(e,t){var n;return n="cloning"===e.status?(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:e.progress/100,ranges:{good:[.75,Infinity],average:[.25,.75],bad:[-Infinity,.25]},mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Box,{textAlign:"center",children:(0,r.round)(e.progress,0)+"%"})}):"mess"===e.status?(0,o.createComponentVNode)(2,c.Box,{bold:!0,color:"bad",mt:"0.5rem",children:"ERROR"}):(0,o.createComponentVNode)(2,c.Button,{selected:N===e.pod,icon:N===e.pod&&"check",content:"Select",mt:"0.5rem",onClick:function(){return i("selectpod",{ref:e.pod})}}),(0,o.createComponentVNode)(2,c.Box,{width:"64px",textAlign:"center",display:"inline-block",mr:"0.5rem",children:[(0,o.createVNode)(1,"img",null,null,1,{src:"pod_"+e.status+".gif",style:{width:"100%","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createComponentVNode)(2,c.Box,{color:"label",children:["Pod #",t+1]}),(0,o.createComponentVNode)(2,c.Box,{bold:!0,color:e.biomass>=150?"good":"bad",display:"inline",children:[(0,o.createComponentVNode)(2,c.Icon,{name:e.biomass>=150?"circle":"circle-o"}),"\xa0",e.biomass]}),n]},t)})):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"No pods detected. Unable to clone."})})],4)},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data.records;return i.length?(0,o.createComponentVNode)(2,c.Box,{mt:"0.5rem",children:i.map((function(e,t){return(0,o.createComponentVNode)(2,c.Button,{icon:"user",mb:"0.5rem",content:e.realname,onClick:function(){return r("view_rec",{ref:e.record})}},t)}))}):(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No records found."]})})},h=function(e,t){var n,r=(0,a.useBackend)(t),i=r.act,l=r.data.temp;if(l&&l.text&&!(l.text.length<=0)){var d=((n={})[l.style]=!0,n);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.NoticeBox,Object.assign({},d,{children:[(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",children:l.text}),(0,o.createComponentVNode)(2,c.Button,{icon:"times-circle",float:"right",onClick:function(){return i("cleartemp")}}),(0,o.createComponentVNode)(2,c.Box,{clear:"both"})]})))}},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.scanner,d=i.numberofpods,u=i.autoallowed,s=i.autoprocess,m=i.disk;return(0,o.createComponentVNode)(2,c.Section,{title:"Status",buttons:(0,o.createFragment)([!!u&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline",color:"label",children:"Auto-processing:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"Enabled":"Disabled",onClick:function(){return r("autoprocess",{on:s?0:1})}})],4),(0,o.createComponentVNode)(2,c.Button,{disabled:!m,icon:"eject",content:"Eject Disk",onClick:function(){return r("disk",{option:"eject"})}})],0),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Scanner",children:l?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Connected"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Not connected!"})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pods",children:d?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:[d," connected"]}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"None connected!"})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CommunicationsComputer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.CommunicationsComputer=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=!1;d.authenticated?1===d.authenticated?n="Command":2===d.authenticated?n="Captain":3===d.authenticated?(n="CentComm Secure Connection",u=!0):n="ERROR: Report This Bug!":n="Not Logged In";var s="View ("+d.messages.length+")",m=(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Authentication",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Access",children:n})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.authenticated?"sign-out-alt":"id-card",selected:d.authenticated,disabled:d.noauthbutton,content:d.authenticated?"Log Out ("+n+")":"Log In",onClick:function(){return l("auth")}})})})}),!!d.esc_section&&(0,o.createComponentVNode)(2,a.Section,{title:"Escape Shuttle",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[!!d.esc_status&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:d.esc_status}),!!d.esc_callable&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"rocket",content:"Call Shuttle",disabled:!d.authhead,onClick:function(){return l("callshuttle")}})}),!!d.esc_recallable&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Options",children:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Recall Shuttle",disabled:!d.authhead||d.is_ai,onClick:function(){return l("cancelshuttle")}})}),!!d.lastCallLoc&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Last Call/Recall From",children:d.lastCallLoc})]})})],0),p="Make Priority Announcement";d.msg_cooldown>0&&(p+=" ("+d.msg_cooldown+"s)");var f=d.emagged?"Message [UNKNOWN]":"Message CentComm",h="Request Authentication Codes";d.cc_cooldown>0&&(f+=" ("+d.cc_cooldown+"s)",h+=" ("+d.cc_cooldown+"s)");var C,N=d.str_security_level,b=d.levels.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.icon,content:e.name,disabled:!d.authcapt||e.id===d.security_level,onClick:function(){return l("newalertlevel",{level:e.id})}},e.name)})),g=d.stat_display.presets.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.label,selected:e.name===d.stat_display.type,disabled:!d.authhead,onClick:function(){return l("setstat",{statdisp:e.name})}},e.name)})),V=d.stat_display.alerts.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.label,selected:e.alert===d.stat_display.icon,disabled:!d.authhead,onClick:function(){return l("setstat",{statdisp:"alert",alert:e.alert})}},e.alert)}));if(d.current_message_title)C=(0,o.createComponentVNode)(2,a.Section,{title:d.current_message_title,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Return To Message List",disabled:!d.authhead,onClick:function(){return l("messagelist")}}),children:(0,o.createComponentVNode)(2,a.Box,{children:d.current_message})});else{var v=d.messages.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.title,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"eye",content:"View",disabled:!d.authhead||d.current_message_title===e.title,onClick:function(){return l("messagelist",{msgid:e.id})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Delete",disabled:!d.authhead,onClick:function(){return l("delmessage",{msgid:e.id})}})]},e.id)}));C=(0,o.createComponentVNode)(2,a.Section,{title:"Messages Received",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back To Main Menu",onClick:function(){return l("main")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:v})})}switch(d.menu_state){case 1:return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[m,(0,o.createComponentVNode)(2,a.Section,{title:"Captain-Only Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Alert",color:d.security_level_color,children:N}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Change Alert",children:b}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Announcement",children:(0,o.createComponentVNode)(2,a.Button,{icon:"bullhorn",content:p,disabled:!d.authcapt||d.msg_cooldown>0,onClick:function(){return l("announce")}})}),!!d.emagged&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transmit",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",color:"red",content:f,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("MessageSyndicate")}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",content:"Reset Relays",disabled:!d.authcapt,onClick:function(){return l("RestoreBackup")}})]})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transmit",children:(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",content:f,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("MessageCentcomm")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nuclear Device",children:(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",content:h,disabled:!d.authcapt||d.cc_cooldown>0,onClick:function(){return l("nukerequest")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Command Staff Actions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Displays",children:(0,o.createComponentVNode)(2,a.Button,{icon:"tv",content:"Change Status Displays",disabled:!d.authhead,onClick:function(){return l("status")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Incoming Messages",children:(0,o.createComponentVNode)(2,a.Button,{icon:"folder-open",content:s,disabled:!d.authhead,onClick:function(){return l("messagelist")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Misc",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",content:"Restart Nano-Mob Hunter GO! Server",disabled:!d.authhead,onClick:function(){return l("RestartNanoMob")}})})]})})]})});case 2:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,(0,o.createComponentVNode)(2,a.Section,{title:"Modify Status Screens",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back To Main Menu",onClick:function(){return l("main")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Presets",children:g}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alerts",children:V}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message Line 1",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.stat_display.line_1,disabled:!d.authhead,onClick:function(){return l("setmsg1")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message Line 2",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.stat_display.line_2,disabled:!d.authhead,onClick:function(){return l("setmsg2")}})})]})})]})});case 3:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,C]})});default:return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[m,"ERRROR. Unknown menu_state: ",d.menu_state,"Please report this to NT Technical Support."]})})}}},function(e,t,n){"use strict";t.__esModule=!0,t.Contractor=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(184),l=n(4);var d={1:["ACTIVE","good"],2:["COMPLETED","good"],3:["FAILED","bad"]},u=["Recording biometric data...","Analyzing embedded syndicate info...","STATUS CONFIRMED","Contacting Syndicate database...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Awaiting response...","Response received, ack 4851234...","CONFIRM ACC "+Math.round(2e4*Math.random()),"Setting up private accounts...","CONTRACTOR ACCOUNT CREATED","Searching for available contracts...","Searching for available contracts...","Searching for available contracts...","Searching for available contracts...","CONTRACTS FOUND","WELCOME, AGENT"];t.Contractor=function(e,t){var n,r=(0,a.useBackend)(t),i=r.act,d=r.data;n=d.unauthorized?(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",backgroundColor:"rgba(0, 0, 0, 0.8)",children:(0,o.createComponentVNode)(2,C,{height:"100%",allMessages:["ERROR: UNAUTHORIZED USER"],finishedTimeout:100,onFinished:function(){}})}):d.load_animation_completed?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"content",children:(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"content",mt:"0.5rem",children:(0,o.createComponentVNode)(2,m)}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",overflow:"hidden",children:1===d.page?(0,o.createComponentVNode)(2,p,{height:"100%"}):(0,o.createComponentVNode)(2,h,{height:"100%"})})],4):(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",backgroundColor:"rgba(0, 0, 0, 0.8)",children:(0,o.createComponentVNode)(2,C,{height:"100%",allMessages:u,finishedTimeout:3e3,onFinished:function(){return i("complete_load_animation")}})});var f=(0,a.useLocalState)(t,"viewingPhoto",""),b=f[0];f[1];return(0,o.createComponentVNode)(2,l.Window,{theme:"syndicate",children:[b&&(0,o.createComponentVNode)(2,N),(0,o.createComponentVNode)(2,l.Window.Content,{className:"Contractor",children:(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:n})})]})};var s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.tc_available,d=i.tc_paid_out,u=i.completed_contracts,s=i.rep;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Section,Object.assign({title:"Summary",buttons:(0,o.createComponentVNode)(2,c.Box,{verticalAlign:"middle",mt:"0.25rem",children:[s," Rep"]})},e,{children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Box,{flexBasis:"50%",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"TC Available",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,c.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",children:[l," TC"]}),(0,o.createComponentVNode)(2,c.Button,{disabled:l<=0,content:"Claim",mx:"0.75rem",mb:"0",flexBasis:"content",onClick:function(){return r("claim")}})]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"TC Earned",children:[d," TC"]})]})}),(0,o.createComponentVNode)(2,c.Box,{flexBasis:"50%",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Contracts Completed",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,c.Box,{height:"20px",lineHeight:"20px",display:"inline-block",children:u})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Contractor Status",verticalAlign:"middle",children:"ACTIVE"})]})})]})})))},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data.page;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Tabs,Object.assign({},e,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===i,onClick:function(){return r("page",{page:1})},children:[(0,o.createComponentVNode)(2,c.Icon,{name:"suitcase"}),"Contracts"]}),(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===i,onClick:function(){return r("page",{page:2})},children:[(0,o.createComponentVNode)(2,c.Icon,{name:"shopping-cart"}),"Hub"]})]})))},p=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data,u=l.contracts,s=l.contract_active,m=l.can_extract,p=!!s&&u.filter((function(e){return 1===e.status}))[0],h=p&&p.time_left>0,C=(0,a.useLocalState)(t,"viewingPhoto",""),N=(C[0],C[1]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Section,Object.assign({title:"Available Contracts",overflow:"auto",buttons:(0,o.createComponentVNode)(2,c.Button,{disabled:!m||h,icon:"parachute-box",content:["Call Extraction",h&&(0,o.createComponentVNode)(2,i.Countdown,{timeLeft:p.time_left,format:function(e,t){return" ("+t.substr(3)+")"}})],onClick:function(){return r("extract")}})},e,{children:u.slice().sort((function(e,t){return 1===e.status?-1:1===t.status?1:e.status-t.status})).map((function(e){var t;return(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",color:1===e.status&&"good",children:e.target_name}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"content",children:e.has_photo&&(0,o.createComponentVNode)(2,c.Button,{icon:"camera",mb:"-0.5rem",ml:"0.5rem",onClick:function(){return N("target_photo_"+e.uid+".png")}})})]}),className:"Contractor__Contract",buttons:(0,o.createComponentVNode)(2,c.Box,{width:"100%",children:[!!d[e.status]&&(0,o.createComponentVNode)(2,c.Box,{color:d[e.status][1],display:"inline-block",mt:1!==e.status&&"0.125rem",mr:"0.25rem",lineHeight:"20px",children:d[e.status][0]}),1===e.status&&(0,o.createComponentVNode)(2,c.Button.Confirm,{icon:"ban",color:"bad",content:"Abort",ml:"0.5rem",onClick:function(){return r("abort")}})]}),children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"2",mr:"0.5rem",children:[e.fluff_message,!!e.completed_time&&(0,o.createComponentVNode)(2,c.Box,{color:"good",children:[(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Icon,{name:"check",mr:"0.5rem"}),"Contract completed at ",e.completed_time]}),!!e.dead_extraction&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",mt:"0.5rem",bold:!0,children:[(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-triangle",mr:"0.5rem"}),"Telecrystals reward reduced drastically as the target was dead during extraction."]}),!!e.fail_reason&&(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:[(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Icon,{name:"times",mr:"0.5rem"}),"Contract failed: ",e.fail_reason]})]}),(0,o.createComponentVNode)(2,c.Flex.Item,{flexBasis:"100%",children:[(0,o.createComponentVNode)(2,c.Flex,{mb:"0.5rem",color:"label",children:["Extraction Zone:\xa0",f(e)]}),null==(t=e.difficulties)?void 0:t.map((function(t,n){return(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:!!s,content:t.name+" ("+t.reward+" TC)",onClick:function(){return r("activate",{uid:e.uid,difficulty:n+1})}})})),!!e.objective&&(0,o.createComponentVNode)(2,c.Box,{color:"white",bold:!0,children:[e.objective.extraction_name,(0,o.createVNode)(1,"br"),"(",(e.objective.rewards.tc||0)+" TC",",\xa0",(e.objective.rewards.credits||0)+" Credits",")"]})]})]})},e.uid)}))})))},f=function(e){if(e.objective&&!(e.status>1)){var t=e.objective.locs.user_area_id,n=e.objective.locs.user_coords,a=e.objective.locs.target_area_id,i=e.objective.locs.target_coords,l=t===a;return(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Icon,{name:l?"dot-circle-o":"arrow-alt-circle-right-o",color:l?"green":"yellow",rotation:l?null:-(0,r.rad2deg)(Math.atan2(i[1]-n[1],i[0]-n[0])),lineHeight:l?null:"0.85",size:"1.5"})})}},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.rep,d=i.buyables;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Section,Object.assign({title:"Available Purchases",overflow:"auto"},e,{children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Section,{title:e.name,children:[e.description,(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:l-1&&(0,o.createComponentVNode)(2,c.Box,{as:"span",color:0===e.stock?"bad":"good",ml:"0.5rem",children:[e.stock," in stock"]})]},e.uid)}))})))},C=function(e){var t,n;function r(t){var n;return(n=e.call(this,t)||this).timer=null,n.state={currentIndex:0,currentDisplay:[]},n}n=e,(t=r).prototype=Object.create(n.prototype),t.prototype.constructor=t,t.__proto__=n;var a=r.prototype;return a.tick=function(){var e=this.props,t=this.state;t.currentIndex<=e.allMessages.length?(this.setState((function(e){return{currentIndex:e.currentIndex+1}})),t.currentDisplay.push(e.allMessages[t.currentIndex])):(clearTimeout(this.timer),setTimeout(e.onFinished,e.finishedTimeout))},a.componentDidMount=function(){var e=this,t=this.props.linesPerSecond,n=void 0===t?2.5:t;this.timer=setInterval((function(){return e.tick()}),1e3/n)},a.componentWillUnmount=function(){clearTimeout(this.timer)},a.render=function(){return(0,o.createComponentVNode)(2,c.Box,{m:1,children:this.state.currentDisplay.map((function(e){return(0,o.createFragment)([e,(0,o.createVNode)(1,"br")],0,e)}))})},r}(o.Component),N=function(e,t){var n=(0,a.useLocalState)(t,"viewingPhoto",""),r=n[0],i=n[1];return(0,o.createComponentVNode)(2,c.Modal,{className:"Contractor__photoZoom",children:[(0,o.createComponentVNode)(2,c.Box,{as:"img",src:r}),(0,o.createComponentVNode)(2,c.Button,{icon:"times",content:"Close",color:"grey",mt:"1rem",onClick:function(){return i("")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ConveyorSwitch=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ConveyorSwitch=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.slowFactor,u=l.oneWay,s=l.position;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lever position",children:s>0?"forward":s<0?"reverse":"neutral"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Allow reverse",children:(0,o.createComponentVNode)(2,a.Button.Checkbox,{checked:!u,onClick:function(){return i("toggleOneWay")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Slowdown factor",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-double-left",onClick:function(){return i("slowFactor",{value:d-5})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-left",onClick:function(){return i("slowFactor",{value:d-1})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Slider,{width:"100px",mx:"1px",value:d,fillValue:d,minValue:1,maxValue:50,step:1,format:function(e){return e+"x"},onChange:function(e,t){return i("slowFactor",{value:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-right",onClick:function(){return i("slowFactor",{value:d+1})}})," "]}),(0,o.createComponentVNode)(2,a.Flex.Item,{mx:"1px",children:[" ",(0,o.createComponentVNode)(2,a.Button,{icon:"angle-double-right",onClick:function(){return i("slowFactor",{value:d+5})}})," "]})]})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.CrewMonitor=void 0;var o=n(0),r=n(26),a=n(19),c=n(1),i=n(2),l=n(76),d=n(39),u=n(4),s=function(e,t){return e.dead?"Deceased":parseInt(e.health,10)<=t?"Critical":1===parseInt(e.stat,10)?"Unconscious":"Living"},m=function(e,t){return e.dead?"red":parseInt(e.health,10)<=t?"orange":1===parseInt(e.stat,10)?"blue":"green"};t.CrewMonitor=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data,(0,c.useLocalState)(t,"tabIndex",0)),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,u.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,u.Window.Content,{children:(0,o.createComponentVNode)(2,i.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:0===a,onClick:function(){return l(0)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"table"})," Data View"]},"DataView"),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:1===a,onClick:function(){return l(1)},children:[(0,o.createComponentVNode)(2,i.Icon,{name:"map-marked-alt"})," Map View"]},"MapView")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,p);case 1:return(0,o.createComponentVNode)(2,f);default:return"WE SHOULDN'T BE HERE!"}}(a)]})})})};var p=function(e,t){var n=(0,c.useBackend)(t),u=n.act,p=n.data,f=(0,r.sortBy)((function(e){return e.name}))(p.crewmembers||[]),h=(0,c.useLocalState)(t,"search",""),C=h[0],N=h[1],b=(0,a.createSearch)(C,(function(e){return e.name+"|"+e.assignment+"|"+e.area}));return(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by name, assignment or location..",width:"100%",onInput:function(e,t){return N(t)}}),(0,o.createComponentVNode)(2,i.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,i.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Name"}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,i.Table.Cell,{children:"Location"})]}),f.filter(b).map((function(e){return(0,o.createComponentVNode)(2,i.Table.Row,{bold:!!e.is_command,children:[(0,o.createComponentVNode)(2,l.TableCell,{children:[e.name," (",e.assignment,")"]}),(0,o.createComponentVNode)(2,l.TableCell,{children:[(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:m(e,p.critThreshold),children:s(e,p.critThreshold)}),e.sensor_type>=2?(0,o.createComponentVNode)(2,i.Box,{inline:!0,children:["(",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.oxy,children:e.oxy}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.toxin,children:e.tox}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.burn,children:e.fire}),"|",(0,o.createComponentVNode)(2,i.Box,{inline:!0,color:d.COLORS.damageType.brute,children:e.brute}),")"]}):null]}),(0,o.createComponentVNode)(2,l.TableCell,{children:3===e.sensor_type?p.isAI?(0,o.createComponentVNode)(2,i.Button,{fluid:!0,icon:"location-arrow",content:e.area+" ("+e.x+", "+e.y+")",onClick:function(){return u("track",{track:e.ref})}}):e.area+" ("+e.x+", "+e.y+")":"Not Available"})]},e.name)}))]})]})},f=function(e,t){var n=(0,c.useBackend)(t).data,r=(0,c.useLocalState)(t,"zoom",1),a=r[0],l=r[1];return(0,o.createComponentVNode)(2,i.Box,{height:"526px",mb:"0.5rem",overflow:"hidden",children:(0,o.createComponentVNode)(2,i.NanoMap,{onZoom:function(e){return l(e)},children:n.crewmembers.filter((function(e){return 3===e.sensor_type})).map((function(e){return(0,o.createComponentVNode)(2,i.NanoMap.Marker,{x:e.x,y:e.y,zoom:a,icon:"circle",tooltip:e.name+" ("+e.assignment+")",color:m(e,n.critThreshold)},e.ref)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Cryo=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=[{label:"Resp.",type:"oxyLoss"},{label:"Toxin",type:"toxLoss"},{label:"Brute",type:"bruteLoss"},{label:"Burn",type:"fireLoss"}],l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]];t.Cryo=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:(0,o.createComponentVNode)(2,d)})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,d=n.data,s=d.isOperating,m=d.hasOccupant,p=d.occupant,f=void 0===p?[]:p,h=d.cellTemperature,C=d.cellTemperatureStatus,N=d.isBeakerLoaded,b=d.auto_eject_healthy,g=d.auto_eject_dead;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",flexGrow:"1",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"user-slash",onClick:function(){return c("ejectOccupant")},disabled:!m,children:"Eject"}),children:m?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Occupant",children:f.name||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:f.health,max:f.maxHealth,value:f.health/f.maxHealth,color:f.health>0?"good":"average",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f.health)})})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[f.stat][0],children:l[f.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f.bodyTemperature)})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),i.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.label,children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:f[e.type]/100,ranges:{bad:[.01,Infinity]},children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:Math.round(f[e.type])})})},e.id)}))]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",textAlign:"center",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Cell",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",onClick:function(){return c("ejectBeaker")},disabled:!N,children:"Eject Beaker"}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,a.Button,{icon:"power-off",onClick:function(){return c(s?"switchOff":"switchOn")},selected:s,children:s?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",color:C,children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:h})," K"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:(0,o.createComponentVNode)(2,u)}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto-eject healthy occupants",children:(0,o.createComponentVNode)(2,a.Button,{icon:b?"toggle-on":"toggle-off",selected:b,onClick:function(){return c(b?"auto_eject_healthy_off":"auto_eject_healthy_on")},children:b?"On":"Off"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto-eject dead occupants",children:(0,o.createComponentVNode)(2,a.Button,{icon:g?"toggle-on":"toggle-off",selected:g,onClick:function(){return c(g?"auto_eject_dead_off":"auto_eject_dead_on")},children:g?"On":"Off"})})]})})],4)},u=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),i=c.isBeakerLoaded,l=c.beakerLabel,d=c.beakerVolume;return i?(0,o.createFragment)([l||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No label"}),(0,o.createComponentVNode)(2,a.Box,{color:!d&&"bad",children:d?(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d,format:function(e){return Math.round(e)+" units remaining"}}):"Beaker is empty"})],0):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"No beaker loaded"})}},function(e,t,n){"use strict";t.__esModule=!0,t.DNAModifier=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(49),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["ui","Modify U.I.","dna"],["se","Modify S.E.","dna"],["buffer","Transfer Buffers","syringe"],["rejuvenators","Rejuvenators","flask"]],u=[5,10,20,30,50];t.DNAModifier=function(e,t){var n,a=(0,r.useBackend)(t),l=(a.act,a.data),d=l.irradiating,u=l.dnaBlockSize,p=l.occupant;return t.dnaBlockSize=u,t.isDNAInvalid=!p.isViableSubject||!p.uniqueIdentity||!p.structuralEnzymes,d&&(n=(0,o.createComponentVNode)(2,V,{duration:d})),(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,i.ComplexModal),n,(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,m)]})]})};var s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.locked,u=i.hasOccupant,s=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",mr:"0.5rem",children:"Door Lock:"}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,selected:d,icon:d?"toggle-on":"toggle-off",content:d?"Engaged":"Disengaged",onClick:function(){return c("toggleLock")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u||d,icon:"user-slash",content:"Eject",onClick:function(){return c("ejectOccupant")}})],4),children:u?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:s.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:s.minHealth,max:s.maxHealth,value:s.health/s.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",color:l[s.stat][0],children:l[s.stat][1]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider)]})}),t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 The occupant's DNA structure is ruined beyond recognition, please insert a subject with an intact DNA structure."]}):(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Radiation",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:"0",max:"100",value:s.radiationLevel/100,color:"average"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unique Enzymes",children:i.occupant.uniqueEnzymes?i.occupant.uniqueEnzymes:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-circle"}),"\xa0 Unknown"]})})]})],0):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Cell unoccupied."})})},m=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data,u=l.selectedMenuKey,s=l.hasOccupant;l.occupant;return s?t.isDNAInvalid?(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No operation possible on this subject."]})})}):("ui"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,h)],4):"se"===u?n=(0,o.createFragment)([(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,h)],4):"buffer"===u?n=(0,o.createComponentVNode)(2,C):"rejuvenators"===u&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:[(0,o.createComponentVNode)(2,a.Tabs,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:u===e[0],onClick:function(){return i("selectMenuKey",{key:e[0]})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:e[2]}),e[1]]},t)}))}),n]})):(0,o.createComponentVNode)(2,a.Section,{flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",align:"center",textAlign:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant in DNA modifier."]})})})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.selectedUIBlock,d=i.selectedUISubBlock,u=i.selectedUITarget,s=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Unique Identifier",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:s.uniqueIdentity,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectUIBlock"}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"15",stepPixelSize:"20",value:u,format:function(e){return e.toString(16).toUpperCase()},ml:"0",onChange:function(e,t){return c("changeUITarget",{value:t})}})})}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",mt:"0.5rem",onClick:function(){return c("pulseUIRadiation")}})]})},f=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.selectedSEBlock,d=i.selectedSESubBlock,u=i.occupant;return(0,o.createComponentVNode)(2,a.Section,{title:"Modify Structural Enzymes",level:"2",children:[(0,o.createComponentVNode)(2,v,{dnaString:u.structuralEnzymes,selectedBlock:l,selectedSubblock:d,blockSize:t.dnaBlockSize,action:"selectSEBlock"}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Irradiate Block",onClick:function(){return c("pulseSERadiation")}})]})},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.radiationIntensity,d=i.radiationDuration;return(0,o.createComponentVNode)(2,a.Section,{title:"Radiation Emitter",level:"2",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Intensity",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"10",stepPixelSize:"20",value:l,popUpPosition:"right",ml:"0",onChange:function(e,t){return c("radiationIntensity",{value:t})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Knob,{minValue:"1",maxValue:"20",stepPixelSize:"10",unit:"s",value:d,popUpPosition:"right",ml:"0",onChange:function(e,t){return c("radiationDuration",{value:t})}})})]}),(0,o.createComponentVNode)(2,a.Button,{icon:"radiation",content:"Pulse Radiation",tooltip:"Mutates a random block of either the occupant's UI or SE.",tooltipPosition:"top-right",mt:"0.5rem",onClick:function(){return c("pulseRadiation")}})]})},C=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.buffers.map((function(e,t){return(0,o.createComponentVNode)(2,N,{id:t+1,name:"Buffer "+(t+1),buffer:e},t)})));return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Buffers",level:"2",children:c}),(0,o.createComponentVNode)(2,b)],4)},N=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=e.id,d=e.name,u=e.buffer,s=i.isInjectorReady,m=d+(u.data?" - "+u.label:"");return(0,o.createComponentVNode)(2,a.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,a.Section,{title:m,level:"3",mx:"0",lineHeight:"18px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!u.data,icon:"trash",content:"Clear",onClick:function(){return c("bufferOption",{option:"clear",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data,icon:"pen",content:"Rename",onClick:function(){return c("bufferOption",{option:"changeLabel",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u.data||!i.hasDisk,icon:"save",content:"Export",tooltip:"Exports this buffer to the currently loaded data disk.",tooltipPosition:"bottom-left",onClick:function(){return c("bufferOption",{option:"saveDisk",id:l})}})],4),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Write",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I",mb:"0",onClick:function(){return c("bufferOption",{option:"saveUI",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject U.I and U.E.",mb:"0",onClick:function(){return c("bufferOption",{option:"saveUIAndUE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",content:"Subject S.E.",mb:"0",onClick:function(){return c("bufferOption",{option:"saveSE",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!i.hasDisk||!i.disk.data,icon:"arrow-circle-down",content:"From Disk",mb:"0",onClick:function(){return c("bufferOption",{option:"loadDisk",id:l})}})]}),!!u.data&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:u.owner||(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===u.type?"Unique Identifiers":"Structural Enzymes",!!u.ue&&" and Unique Enzymes"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Transfer to",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Injector",mb:"0",onClick:function(){return c("bufferOption",{option:"createInjector",id:l})}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!s,icon:s?"syringe":"spinner",iconSpin:!s,content:"Block Injector",mb:"0",onClick:function(){return c("bufferOption",{option:"createInjector",id:l,block:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"user",content:"Subject",mb:"0",onClick:function(){return c("bufferOption",{option:"transfer",id:l})}})]})],4)]}),!u.data&&(0,o.createComponentVNode)(2,a.Box,{color:"label",mt:"0.5rem",children:"This buffer is empty."})]})})},b=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.hasDisk,d=i.disk;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk",level:"2",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button.Confirm,{disabled:!l||!d.data,icon:"trash",content:"Wipe",onClick:function(){return c("wipeDisk")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return c("ejectDisk")}})],4),children:l?d.data?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Label",children:d.label?d.label:"No label"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Subject",children:d.owner?d.owner:(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Unknown"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Data Type",children:["ui"===d.type?"Unique Identifiers":"Structural Enzymes",!!d.ue&&" and Unique Enzymes"]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"Disk is blank."}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"1rem",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"save-o",size:"4"}),(0,o.createVNode)(1,"br"),"No disk inserted."]})})},g=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.isBeakerLoaded,d=i.beakerVolume,s=i.beakerLabel;return(0,o.createComponentVNode)(2,a.Section,{title:"Rejuvenators and Beaker",level:"2",buttons:(0,o.createComponentVNode)(2,a.Button,{disabled:!l,icon:"eject",content:"Eject",onClick:function(){return c("ejectBeaker")}}),children:l?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Inject",children:[u.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:e>d,icon:"syringe",content:e,onClick:function(){return c("injectRejuvenators",{amount:e})}},t)})),(0,o.createComponentVNode)(2,a.Button,{disabled:d<=0,icon:"syringe",content:"All",onClick:function(){return c("injectRejuvenators",{amount:d})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Beaker",children:[(0,o.createComponentVNode)(2,a.Box,{mb:"0.5rem",children:s||"No label"}),d?(0,o.createComponentVNode)(2,a.Box,{color:"good",children:[d," unit",1===d?"":"s"," remaining"]}):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Empty"})]})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",textAlign:"center",my:"25%",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",size:"4"}),(0,o.createVNode)(1,"br"),"No beaker loaded."]})})},V=function(e,t){return(0,o.createComponentVNode)(2,a.Dimmer,{textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",size:"5",spin:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{color:"average",children:(0,o.createVNode)(1,"h1",null,[(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"}),(0,o.createTextVNode)("\xa0Irradiating occupant\xa0"),(0,o.createComponentVNode)(2,a.Icon,{name:"radiation"})],4)}),(0,o.createComponentVNode)(2,a.Box,{color:"label",children:(0,o.createVNode)(1,"h3",null,[(0,o.createTextVNode)("For "),e.duration,(0,o.createTextVNode)(" second"),1===e.duration?"":"s"],0)})]})},v=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.dnaString),l=e.selectedBlock,d=e.selectedSubblock,u=e.blockSize,s=e.action,m=i.split(""),p=[],f=function(e){for(var t=e/u+1,n=[],r=function(r){var i=r+1;n.push((0,o.createComponentVNode)(2,a.Button,{selected:l===t&&d===i,content:m[e+r],mb:"0",onClick:function(){return c(s,{block:t,subblock:i})}}))},i=0;i0?"Yes":"No",selected:l.com>0,onClick:function(){return i("toggle_com")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Security",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.sec===e,content:e,onClick:function(){return i("set_sec",{set_sec:e})}},"sec"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Medical",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.med===e,content:e,onClick:function(){return i("set_med",{set_med:e})}},"med"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Engineering",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.eng===e,content:e,onClick:function(){return i("set_eng",{set_eng:e})}},"eng"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Paranormal",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.par===e,content:e,onClick:function(){return i("set_par",{set_par:e})}},"par"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Janitor",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.jan===e,content:e,onClick:function(){return i("set_jan",{set_jan:e})}},"jan"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cyborg",children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Button,{selected:l.cyb===e,content:e,onClick:function(){return i("set_cyb",{set_cyb:e})}},"cyb"+e)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Slots",children:(0,o.createComponentVNode)(2,a.Box,{color:l.total>l.spawnpoints?"red":"green",children:[l.total," total, versus ",l.spawnpoints," spawnpoints"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Dispatch",children:(0,o.createComponentVNode)(2,a.Button,{icon:"ambulance",content:"Send ERT",onClick:function(){return i("dispatch_ert")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Electropack=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4);t.Electropack=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=d.power,s=d.code,m=d.frequency,p=d.minFrequency,f=d.maxFrequency;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Power",children:(0,o.createComponentVNode)(2,c.Button,{icon:u?"power-off":"times",content:u?"On":"Off",selected:u,onClick:function(){return l("power")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Frequency",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"sync",content:"Reset",onClick:function(){return l("reset",{reset:"freq"})}}),children:(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,unit:"kHz",step:.2,stepPixelSize:6,minValue:p/10,maxValue:f/10,value:m/10,format:function(e){return(0,r.toFixed)(e,1)},width:"80px",onChange:function(e,t){return l("freq",{freq:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Code",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"sync",content:"Reset",onClick:function(){return l("reset",{reset:"code"})}}),children:(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,step:1,stepPixelSize:6,minValue:1,maxValue:100,value:s,width:"80px",onChange:function(e,t){return l("code",{code:t})}})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.EvolutionMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.EvolutionMenu=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,theme:"changeling",children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.evo_points,d=i.can_respec;return(0,o.createComponentVNode)(2,a.Section,{title:"Evolution Points",height:5.5,children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.5,color:"label",children:"Points remaining:"}),(0,o.createComponentVNode)(2,a.Flex.Item,{mt:.5,ml:2,bold:!0,color:"#1b945c",children:l}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{ml:2.5,disabled:!d,content:"Readapt",icon:"sync",onClick:function(){return c("readapt")}}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"By transforming a humanoid into a husk, we gain the ability to readapt our chosen evolutions.",tooltipPosition:"bottom",icon:"question-circle"})]})]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.evo_points,d=i.ability_list,u=i.purchsed_abilities,s=i.view_mode;return(0,o.createComponentVNode)(2,a.Section,{title:"Abilities",flexGrow:"1",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:s?"square-o":"check-square-o",selected:!s,content:"Compact",onClick:function(){return c("set_view_mode",{mode:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:s?"check-square-o":"square-o",selected:s,content:"Expanded",onClick:function(){return c("set_view_mode",{mode:1})}})],4),children:d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{p:.5,mx:-1,className:"candystripe",children:[(0,o.createComponentVNode)(2,a.Flex,{align:"center",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{ml:.5,color:"#dedede",children:e.name}),u.includes(e.name)&&(0,o.createComponentVNode)(2,a.Flex.Item,{ml:2,bold:!0,color:"#1b945c",children:"(Purchased)"}),(0,o.createComponentVNode)(2,a.Flex.Item,{mr:3,textAlign:"right",grow:1,children:[(0,o.createComponentVNode)(2,a.Box,{as:"span",color:"label",children:["Cost: "," "]}),(0,o.createComponentVNode)(2,a.Box,{as:"span",bold:!0,color:"#1b945c",children:e.cost})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{textAlign:"right",children:(0,o.createComponentVNode)(2,a.Button,{mr:.5,disabled:e.cost>l||u.includes(e.name),content:"Evolve",onClick:function(){return c("purchase",{power_name:e.name})}})})]}),!!s&&(0,o.createComponentVNode)(2,a.Flex,{color:"#8a8a8a",my:1,ml:1.5,width:"95%",children:e.description+" "+e.helptext})]},t)}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.ExosuitFabricator=void 0;var o=n(0),r=n(8),a=n(19),c=n(1),i=n(2),l=n(184),d=n(4);var u={bananium:"clown",tranquillite:"mime"};t.ExosuitFabricator=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data.building);return(0,o.createComponentVNode)(2,d.Window,{children:(0,o.createComponentVNode)(2,d.Window.Content,{className:"Exofab",children:(0,o.createComponentVNode)(2,i.Flex,{width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",mr:"0.5rem",width:"70%",children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"100%",children:(0,o.createComponentVNode)(2,m)}),r&&(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"content",mt:"0.5rem",children:(0,o.createComponentVNode)(2,p)})]})}),(0,o.createComponentVNode)(2,i.Flex.Item,{width:"30%",children:(0,o.createComponentVNode)(2,i.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"50%",children:(0,o.createComponentVNode)(2,s)}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",basis:"50%",mt:"0.5rem",children:(0,o.createComponentVNode)(2,f)})]})})]})})})};var s=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.materials,d=a.capacity,u=Object.values(l).reduce((function(e,t){return e+t}),0);return(0,o.createComponentVNode)(2,i.Section,{title:"Materials",className:"Exofab__materials",buttons:(0,o.createComponentVNode)(2,i.Box,{color:"label",mt:"0.25rem",children:[(u/d*100).toPrecision(3),"% full"]}),children:["$metal","$glass","$silver","$gold","$uranium","$titanium","$plasma","$diamond","$bluespace","$bananium","$tranquillite","$plastic"].map((function(e){return(0,o.createComponentVNode)(2,h,{id:e,bold:"$metal"===e||"$glass"===e,onClick:function(){return r("withdraw",{id:e})}},e)}))})},m=function(e,t){var n=(0,c.useBackend)(t),r=n.act,l=n.data,d=l.curCategory,u=l.categories,s=l.designs,m=l.syncing,p=(0,c.useLocalState)(t,"searchText",""),f=p[0],h=p[1],N=(0,a.createSearch)(f,(function(e){return e.name})),b=s.filter(N);return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__designs",title:(0,o.createComponentVNode)(2,i.Dropdown,{selected:d,options:u,onSelected:function(e){return r("category",{cat:e})},width:"150px"}),height:"100%",buttons:(0,o.createComponentVNode)(2,i.Box,{mt:"-18px",children:[(0,o.createComponentVNode)(2,i.Button,{icon:"plus",content:"Queue all",onClick:function(){return r("queueall")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:m,iconSpin:m,icon:"sync-alt",content:m?"Synchronizing...":"Synchronize with R&D servers",onClick:function(){return r("sync")}})]}),children:[(0,o.createComponentVNode)(2,i.Input,{placeholder:"Search by name...",mb:"0.5rem",width:"100%",onInput:function(e,t){return h(t)}}),b.map((function(e){return(0,o.createComponentVNode)(2,C,{design:e},e.id)})),0===b.length&&(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No designs found."})]})},p=function(e,t){var n=(0,c.useBackend)(t),r=(n.act,n.data),a=r.building,d=r.buildStart,u=r.buildEnd,s=r.worldTime;return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__building",stretchContents:!0,children:(0,o.createComponentVNode)(2,i.ProgressBar.Countdown,{start:d,current:s,end:u,bold:!0,children:[(0,o.createComponentVNode)(2,i.Box,{float:"left",children:(0,o.createComponentVNode)(2,i.Icon,{name:"cog",spin:!0})}),"Building ",a,"\xa0(",(0,o.createComponentVNode)(2,l.Countdown,{current:s,timeLeft:u-s,format:function(e,t){return t.substr(3)}}),")"]})})},f=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=a.queue,d=a.processingQueue,u=Object.entries(a.queueDeficit).filter((function(e){return e[1]<0})),s=l.reduce((function(e,t){return e+t.time}),0);return(0,o.createComponentVNode)(2,i.Section,{className:"Exofab__queue",title:"Queue",buttons:(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,i.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:"Process",onClick:function(){return r("process")}}),(0,o.createComponentVNode)(2,i.Button,{disabled:0===l.length,icon:"eraser",content:"Clear",onClick:function(){return r("unqueueall")}})]}),children:(0,o.createComponentVNode)(2,i.Flex,{height:"100%",direction:"column",children:0===l.length?(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"The queue is empty."}):(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--queue",grow:"1",overflow:"auto",children:l.map((function(e,t){return(0,o.createComponentVNode)(2,i.Box,{color:e.notEnough&&"bad",children:[t+1,". ",e.name,t>0&&(0,o.createComponentVNode)(2,i.Button,{icon:"arrow-up",onClick:function(){return r("queueswap",{from:t+1,to:t})}}),t0&&(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--time",basis:"content",shrink:"0",children:[(0,o.createComponentVNode)(2,i.Divider),"Processing time:",(0,o.createComponentVNode)(2,i.Icon,{name:"clock",mx:"0.5rem"}),(0,o.createComponentVNode)(2,i.Box,{display:"inline",bold:!0,children:new Date(s/10*1e3).toISOString().substr(14,5)})]}),Object.keys(u).length>0&&(0,o.createComponentVNode)(2,i.Flex.Item,{className:"Exofab__queue--deficit",basis:"content",shrink:"0",children:[(0,o.createComponentVNode)(2,i.Divider),"Lacking materials to complete:",u.map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,h,{id:e[0],amount:-e[1],lineDisplay:!0})},e[0])}))]})],0)})})},h=function(e,t){var n=(0,c.useBackend)(t),a=(n.act,n.data),l=e.id,d=e.amount,s=e.lineDisplay,m=e.onClick,p=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["id","amount","lineDisplay","onClick"]),f=l.replace("$",""),h=a.materials[l]||0,C=d||h;if(!(C<=0&&"metal"!==f&&"glass"!==f)){var N=d&&d>h;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,i.Flex,Object.assign({className:(0,r.classes)(["Exofab__material",s&&"Exofab__material--line"])},p,{children:[(0,o.createComponentVNode)(2,i.Flex.Item,{basis:"content",children:(0,o.createComponentVNode)(2,i.Button,{onClick:m,children:(0,o.createComponentVNode)(2,i.Box,{as:"img",src:"sheet-"+(u[f]||f)+".png"})})}),(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",children:s?(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--amount",color:N&&"bad",children:C.toLocaleString("en-US")}):(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--name",children:f}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__material--amount",children:[C.toLocaleString("en-US")," cm\xb3 (",Math.round(C/2e3*10)/10," sheets)"]})],4)})]})))}},C=function(e,t){var n=(0,c.useBackend)(t),r=n.act,a=n.data,l=e.design;return(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design",children:[(0,o.createComponentVNode)(2,i.Button,{disabled:l.notEnough||a.building,icon:"cog",content:l.name,onClick:function(){return r("build",{id:l.id})}}),(0,o.createComponentVNode)(2,i.Button,{icon:"plus-circle",onClick:function(){return r("queue",{id:l.id})}}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design--cost",children:Object.entries(l.cost).map((function(e){return(0,o.createComponentVNode)(2,i.Box,{children:(0,o.createComponentVNode)(2,h,{id:e[0],amount:e[1],lineDisplay:!0})},e[0])}))}),(0,o.createComponentVNode)(2,i.Box,{className:"Exofab__design--time",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"clock"}),l.time>0?(0,o.createFragment)([l.time/10,(0,o.createTextVNode)(" seconds")],0):"Instant"]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ExternalAirlockController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ExternalAirlockController=function(e,t){var n,i,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.chamber_pressure,m=(u.exterior_status,u.interior_status),p=u.processing;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Information",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Chamber Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:(n=s,i="good",n<80?i="bad":n<95||n>110?i="average":n>120&&(i="bad"),i),value:s,minValue:0,maxValue:1013,children:[s," kPa"]})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Exterior",icon:"arrow-circle-left",disabled:p,onClick:function(){return d("cycle_ext")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Cycle to Interior",icon:"arrow-circle-right",disabled:p,onClick:function(){return d("cycle_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Force Exterior Door",icon:"exclamation-triangle",color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_ext")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Force Interior Door",icon:"exclamation-triangle",color:"open"===m?"red":p?"yellow":null,onClick:function(){return d("force_int")}})]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Abort",icon:"ban",color:"red",disabled:!p,onClick:function(){return d("abort")}})})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FaxMachine=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.FaxMachine=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.scan_name?"eject":"id-card",selected:l.scan_name,content:l.scan_name?l.scan_name:"-----",tooltip:l.scan_name?"Eject ID":"Insert ID",onClick:function(){return i("scan")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Authorize",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.authenticated?"sign-out-alt":"id-card",selected:l.authenticated,disabled:l.nologin,content:l.realauth?"Log Out":"Log In",onClick:function(){return i("auth")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Fax Menu",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network",children:l.network}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Document",children:[(0,o.createComponentVNode)(2,a.Button,{icon:l.paper?"eject":"paperclip",disabled:!l.authenticated&&!l.paper,content:l.paper?l.paper:"-----",onClick:function(){return i("paper")}}),!!l.paper&&(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:"Rename",onClick:function(){return i("rename")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sending To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:l.destination?l.destination:"-----",disabled:!l.authenticated,onClick:function(){return i("dept")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Action",children:(0,o.createComponentVNode)(2,a.Button,{icon:"envelope",content:l.sendError?l.sendError:"Send",disabled:!l.paper||!l.destination||!l.authenticated||l.sendError,onClick:function(){return i("send")}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.FloorPainter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e,t){var n=(0,r.useBackend)(t),a=(n.act,n.data,e.image),c=e.isSelected,i=e.onSelect;return(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+a,style:{"border-style":c?"solid":"none","border-width":"2px","border-color":"orange",padding:c?"2px":"4px"},onClick:i})};t.FloorPainter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.availableStyles,s=d.selectedStyle,m=d.selectedDir,p=d.directionsPreview,f=d.allStylesPreview;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Decal setup",children:[(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-left",onClick:function(){return l("cycle_style",{offset:-1})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Dropdown,{options:u,selected:s,width:"150px",height:"20px",ml:"2px",mr:"2px",nochevron:"true",onSelected:function(e){return l("select_style",{style:e})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-right",onClick:function(){return l("cycle_style",{offset:1})}})})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"5px",mb:"5px",children:(0,o.createComponentVNode)(2,a.Flex,{overflowY:"auto",maxHeight:"220px",wrap:"wrap",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,i,{image:f[e],isSelected:s===e,onSelect:function(){return l("select_style",{style:e})}})},"{style}")}))})}),(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Direction",children:(0,o.createComponentVNode)(2,a.Table,{style:{display:"inline"},children:["north","","south"].map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[e+"west",e,e+"east"].map((function(e){return(0,o.createComponentVNode)(2,a.Table.Cell,{style:{"vertical-align":"middle","text-align":"center"},children:""===e?(0,o.createComponentVNode)(2,a.Icon,{name:"arrows-alt",size:3}):(0,o.createComponentVNode)(2,i,{image:p[e],isSelected:e===m,onSelect:function(){return l("select_direction",{direction:e})}})},e)}))},e)}))})})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GPS=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4),l=function(e){return e?"("+e.join(", ")+")":"ERROR"};t.GPS=function(e,t){var n=(0,a.useBackend)(t).data,r=n.emped,l=n.active,p=n.area,f=n.position,h=n.saved;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:r?(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",basis:"0",children:(0,o.createComponentVNode)(2,d,{emp:!0})}):(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,u)}),l?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Flex.Item,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,s,{area:p,position:f})}),h&&(0,o.createComponentVNode)(2,c.Flex.Item,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,s,{title:"Saved Position",position:h})}),(0,o.createComponentVNode)(2,c.Flex.Item,{mt:"0.5rem",grow:"1",basis:"0",children:(0,o.createComponentVNode)(2,m,{height:"100%"})})],0):(0,o.createComponentVNode)(2,d)],0)})})})};var d=function(e,t){var n=e.emp;return(0,o.createComponentVNode)(2,c.Section,{mt:"0.5rem",width:"100%",height:"100%",stretchContents:!0,children:(0,o.createComponentVNode)(2,c.Box,{width:"100%",height:"100%",color:"label",textAlign:"center",children:(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:n?"ban":"power-off",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),n?"ERROR: Device temporarily lost signal.":"Device is disabled."]})})})})},u=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.active,d=i.tag,u=i.same_z,s=(0,a.useLocalState)(t,"newTag",d),m=s[0],p=s[1];return(0,o.createComponentVNode)(2,c.Section,{title:"Settings",buttons:(0,o.createComponentVNode)(2,c.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return r("toggle")}}),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Tag",children:[(0,o.createComponentVNode)(2,c.Input,{width:"5rem",value:d,onEnter:function(){return r("tag",{newtag:m})},onInput:function(e,t){return p(t)}}),(0,o.createComponentVNode)(2,c.Button,{disabled:d===m,width:"20px",mb:"0",ml:"0.25rem",onClick:function(){return r("tag",{newtag:m})},children:(0,o.createComponentVNode)(2,c.Icon,{name:"pen"})})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Range",children:(0,o.createComponentVNode)(2,c.Button,{selected:!u,icon:u?"compress":"expand",content:u?"Local Sector":"Global",onClick:function(){return r("same_z")}})})]})})},s=function(e,t){var n=e.title,r=e.area,a=e.position;return(0,o.createComponentVNode)(2,c.Section,{title:n||"Position",children:(0,o.createComponentVNode)(2,c.Box,{fontSize:"1.5rem",children:[r&&(0,o.createFragment)([r,(0,o.createVNode)(1,"br")],0),l(a)]})})},m=function(e,t){var n=(0,a.useBackend)(t).data,i=n.position,d=n.signals;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Section,Object.assign({title:"Signals",overflow:"auto"},e,{children:(0,o.createComponentVNode)(2,c.Table,{children:d.map((function(e){return Object.assign({},e,{},function(e,t){if(e&&t){if(e[2]!==t[2])return null;var n=Math.atan2(t[1]-e[1],t[0]-e[0]),o=Math.sqrt(Math.pow(t[1]-e[1],2)+Math.pow(t[0]-e[0],2));return{angle:(0,r.rad2deg)(n),distance:o}}}(i,e.position))})).map((function(e,t){return(0,o.createComponentVNode)(2,c.Table.Row,{backgroundColor:t%2==0&&"rgba(255, 255, 255, 0.05)",children:[(0,o.createComponentVNode)(2,c.Table.Cell,{width:"30%",verticalAlign:"middle",color:"label",p:"0.25rem",bold:!0,children:e.tag}),(0,o.createComponentVNode)(2,c.Table.Cell,{verticalAlign:"middle",color:"grey",children:e.area}),(0,o.createComponentVNode)(2,c.Table.Cell,{verticalAlign:"middle",collapsing:!0,children:e.distance!==undefined&&(0,o.createComponentVNode)(2,c.Box,{opacity:Math.max(1-Math.min(e.distance,100)/100,.5),children:[(0,o.createComponentVNode)(2,c.Icon,{name:e.distance>0?"arrow-right":"circle",rotation:-e.angle}),"\xa0",Math.floor(e.distance)+"m"]})}),(0,o.createComponentVNode)(2,c.Table.Cell,{verticalAlign:"middle",pr:"0.25rem",collapsing:!0,children:l(e.position)})]},t)}))})})))}},function(e,t,n){"use strict";t.__esModule=!0,t.GenericCrewManifest=void 0;var o=n(0),r=n(2),a=n(4),c=n(135);t.GenericCrewManifest=function(e,t){return(0,o.createComponentVNode)(2,a.Window,{resizable:!0,theme:"nologo",children:(0,o.createComponentVNode)(2,a.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,r.Section,{noTopPadding:!0,children:(0,o.createComponentVNode)(2,c.CrewManifest)})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GhostHudPanel=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.GhostHudPanel=function(e,t){var n=(0,r.useBackend)(t).data,l=n.security,d=n.medical,u=n.diagnostic,s=n.ahud;return(0,o.createComponentVNode)(2,c.Window,{theme:"nologo",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,i,{label:"Medical",type:"medical",is_active:d}),(0,o.createComponentVNode)(2,i,{label:"Security",type:"security",is_active:l}),(0,o.createComponentVNode)(2,i,{label:"Diagnostic",type:"diagnostic",is_active:u}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,i,{label:"Antag HUD",is_active:s,act_on:"ahud_on",act_off:"ahud_off"})]})})})};var i=function(e,t){var n=(0,r.useBackend)(t).act,c=e.label,i=e.type,l=void 0===i?null:i,d=e.is_active,u=e.act_on,s=void 0===u?"hud_on":u,m=e.act_off,p=void 0===m?"hud_off":m;return(0,o.createComponentVNode)(2,a.Flex,{pt:.3,color:"label",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{pl:.5,align:"center",width:"80%",children:c}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{mr:.6,content:d?"On":"Off",icon:d?"toggle-on":"toggle-off",selected:d,onClick:function(){return n(d?p:s,{hud_type:l})}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.GravityGen=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.GravityGen=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=d.charging_state,s=d.charge_count,m=d.breaker,p=d.ext_power;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[function(e){if(e>0)return(0,o.createComponentVNode)(2,a.NoticeBox,{danger:!0,p:1.5,children:[(0,o.createVNode)(1,"b",null,"WARNING:",16)," Radiation Detected!"]})}(u),(0,o.createComponentVNode)(2,a.Section,{title:"Generator Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"Online":"Offline",color:m?"green":"red",px:1.5,onClick:function(){return l("breaker")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power Status",color:p?"good":"bad",children:(n=u,n>0?(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:"average",children:["[ ",1===n?"Charging":"Discharging"," ]"]}):(0,o.createComponentVNode)(2,a.Box,{inline:!0,color:p?"good":"bad",children:["[ ",p?"Powered":"Unpowered"," ]"]}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Gravity Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:s/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.GuestPass=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(78);t.GuestPass=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{icon:"id-card",selected:!d.showlogs,onClick:function(){return l("mode",{mode:0})},children:"Issue Pass"}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{icon:"scroll",selected:d.showlogs,onClick:function(){return l("mode",{mode:1})},children:["Records (",d.issue_log.length,")"]})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID Card",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.scan_name?"eject":"id-card",selected:d.scan_name,content:d.scan_name?d.scan_name:"-----",tooltip:d.scan_name?"Eject ID":"Insert ID",onClick:function(){return l("scan")}})})})}),!d.showlogs&&(0,o.createComponentVNode)(2,a.Section,{title:"Issue Guest Pass",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Issue To",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.giv_name?d.giv_name:"-----",disabled:!d.scan_name,onClick:function(){return l("giv_name")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Reason",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.reason?d.reason:"-----",disabled:!d.scan_name,onClick:function(){return l("reason")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Duration",children:(0,o.createComponentVNode)(2,a.Button,{icon:"pencil-alt",content:d.duration?d.duration:"-----",disabled:!d.scan_name,onClick:function(){return l("duration")}})})]}),!!d.scan_name&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.AccessList,{grantableList:d.grantableList,accesses:d.regions,selectedList:d.selectedAccess,accessMod:function(e){return l("access",{access:e})},grantAll:function(){return l("grant_all")},denyAll:function(){return l("clear_all")},grantDep:function(e){return l("grant_region",{region:e})},denyDep:function(e){return l("deny_region",{region:e})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"id-card",content:d.printmsg,disabled:!d.canprint,onClick:function(){return l("issue")}})],4)]}),!!d.showlogs&&(0,o.createComponentVNode)(2,a.Section,{title:"Issuance Log",children:!!d.issue_log.length&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:d.issue_log.map((function(e,t){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:e},t)}))}),(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print",disabled:!d.scan_name,onClick:function(){return l("print")}})],4)||(0,o.createComponentVNode)(2,a.Box,{children:"None."})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.HandheldChemDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=[1,5,10,20,30,50];t.HandheldChemDispenser=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.amount,u=l.energy,s=l.maxEnergy,m=l.mode;return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",flex:"content",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:u,minValue:0,maxValue:s,ranges:{good:[.5*s,Infinity],average:[.25*s,.5*s],bad:[-Infinity,.25*s]},children:[u," / ",s," Units"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Amount",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",spacing:"1",children:i.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",width:"14%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:d===e,content:e,m:"0",width:"100%",onClick:function(){return c("amount",{amount:e})}})},t)}))})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mode",verticalAlign:"middle",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",justify:"space-between",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"dispense"===m,content:"Dispense",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"dispense"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"remove"===m,content:"Remove",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"remove"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"cog",selected:"isolate"===m,content:"Isolate",m:"0",width:"32%",onClick:function(){return c("mode",{mode:"isolate"})}})]})})]})})},d=function(e,t){for(var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.chemicals,d=void 0===l?[]:l,u=i.current_reagent,s=[],m=0;m<(d.length+1)%3;m++)s.push(!0);return(0,o.createComponentVNode)(2,a.Section,{title:i.glass?"Drink Selector":"Chemical Selector",flexGrow:"1",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",wrap:"wrap",height:"100%",spacingPrecise:"2",align:"flex-start",alignContent:"flex-start",children:[d.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px",width:"30%",display:"inline-block",children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-down",overflow:"hidden",textOverflow:"ellipsis",selected:u===e.id,width:"100%",height:"100%",align:"flex-start",content:e.title,onClick:function(){return c("dispense",{reagent:e.id})}})},t)})),s.map((function(e,t){return(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",basis:"25%",height:"20px"},t)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Instrument=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4);t.Instrument=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,i.Window,{children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,s)]})]})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act;if(n.data.help)return(0,o.createComponentVNode)(2,c.Modal,{maxWidth:"75%",height:.75*window.innerHeight+"px",mx:"auto",py:"0",px:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{height:"100%",title:"Help",level:"2",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Box,{px:"0.5rem",mt:"-0.5rem",children:[(0,o.createVNode)(1,"h1",null,"Making a Song",16),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Lines are a series of chords, separated by commas\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(,)"}),(0,o.createTextVNode)(", each with notes seperated by hyphens\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(-)"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Every note in a chord will play together, with the chord timed by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo"}),(0,o.createTextVNode)(" as defined above.")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Notes are played by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"names of the note"}),(0,o.createTextVNode)(", and optionally, the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(", and/or the "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave number"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("By default, every note is\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"natural"}),(0,o.createTextVNode)(" and in\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave 3"}),(0,o.createTextVNode)(". Defining a different state for either is remembered for each "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"note"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Example:"}),(0,o.createTextVNode)("\xa0"),(0,o.createVNode)(1,"i",null,"C,D,E,F,G,A,B",16),(0,o.createTextVNode)(" will play a\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"C"}),(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"major"}),(0,o.createTextVNode)(" scale.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createTextVNode)("After a note has an\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(" or\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave"}),(0,o.createTextVNode)(" placed, it will be remembered:\xa0"),(0,o.createVNode)(1,"i",null,"C,C4,C#,C3",16),(0,o.createTextVNode)(" is "),(0,o.createVNode)(1,"i",null,"C3,C4,C4#,C3#",16)],4)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Chords"}),(0,o.createTextVNode)("\xa0can be played simply by seperating each note with a hyphen: "),(0,o.createVNode)(1,"i",null,"A-C#,Cn-E,E-G#,Gn-B",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("A "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"pause"}),(0,o.createTextVNode)("\xa0may be denoted by an empty chord: "),(0,o.createVNode)(1,"i",null,"C,E,,C,G",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("To make a chord be a different time, end it with /x, where the chord length will be length defined by\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo / x"}),(0,o.createTextVNode)(",\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"eg:"}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"i",null,"C,G/2,E/4",16),(0,o.createTextVNode)(".")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Combined, an example line is: "),(0,o.createVNode)(1,"i",null,"E-E4/4,F#/2,G#/8,B/8,E3-E4/4",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,"Lines may be up to 300 characters.",16),(0,o.createVNode)(1,"li",null,"A song may only contain up to 1,000 lines.",16)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Lines are a series of chords, separated by commas\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(,)"}),(0,o.createTextVNode)(", each with notes seperated by hyphens\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"(-)"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Every note in a chord will play together, with the chord timed by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo"}),(0,o.createTextVNode)(" as defined above.")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Notes are played by the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"names of the note"}),(0,o.createTextVNode)(", and optionally, the\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(", and/or the "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave number"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("By default, every note is\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"natural"}),(0,o.createTextVNode)(" and in\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave 3"}),(0,o.createTextVNode)(". Defining a different state for either is remembered for each "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"note"}),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Example:"}),(0,o.createTextVNode)("\xa0"),(0,o.createVNode)(1,"i",null,"C,D,E,F,G,A,B",16),(0,o.createTextVNode)(" will play a\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"good",children:"C"}),(0,o.createTextVNode)("\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"major"}),(0,o.createTextVNode)(" scale.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createTextVNode)("After a note has an\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"average",children:"accidental"}),(0,o.createTextVNode)(" or\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"bad",children:"octave"}),(0,o.createTextVNode)(" placed, it will be remembered:\xa0"),(0,o.createVNode)(1,"i",null,"C,C4,C#,C3",16),(0,o.createTextVNode)(" is "),(0,o.createVNode)(1,"i",null,"C3,C4,C4#,C3#",16)],4)],4)],4),(0,o.createVNode)(1,"p",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"Chords"}),(0,o.createTextVNode)("\xa0can be played simply by seperating each note with a hyphen: "),(0,o.createVNode)(1,"i",null,"A-C#,Cn-E,E-G#,Gn-B",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("A "),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"pause"}),(0,o.createTextVNode)("\xa0may be denoted by an empty chord: "),(0,o.createVNode)(1,"i",null,"C,E,,C,G",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("To make a chord be a different time, end it with /x, where the chord length will be length defined by\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"tempo / x"}),(0,o.createTextVNode)(",\xa0"),(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"highlight",children:"eg:"}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"i",null,"C,G/2,E/4",16),(0,o.createTextVNode)(".")],4),(0,o.createVNode)(1,"p",null,[(0,o.createTextVNode)("Combined, an example line is: "),(0,o.createVNode)(1,"i",null,"E-E4/4,F#/2,G#/8,B/8,E3-E4/4",16),(0,o.createTextVNode)("."),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,"Lines may be up to 300 characters.",16),(0,o.createVNode)(1,"li",null,"A song may only contain up to 1,000 lines.",16)],4)],4),(0,o.createVNode)(1,"h1",null,"Instrument Advanced Settings",16),(0,o.createVNode)(1,"ul",null,[(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Type:"}),(0,o.createTextVNode)("\xa0Whether the instrument is legacy or synthesized."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Legacy instruments have a collection of sounds that are selectively used depending on the note to play."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Synthesized instruments use a base sound and change its pitch to match the note to play.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Current:"}),(0,o.createTextVNode)("\xa0Which instrument sample to play. Some instruments can be tuned to play different samples. Experiment!")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Note Shift/Note Transpose:"}),(0,o.createTextVNode)("\xa0The pitch to apply to all notes of the song.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Sustain Mode:"}),(0,o.createTextVNode)("\xa0How a played note fades out."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Linear sustain means a note will fade out at a constant rate."),(0,o.createVNode)(1,"br"),(0,o.createTextVNode)("Exponential sustain means a note will fade out at an exponential rate, sounding smoother.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Volume Dropoff Threshold:"}),(0,o.createTextVNode)("\xa0The volume threshold at which a note is fully stopped.")],4),(0,o.createVNode)(1,"li",null,[(0,o.createComponentVNode)(2,c.Box,{as:"span",color:"label",children:"Sustain indefinitely last held note:"}),(0,o.createTextVNode)("\xa0Whether the last note should be sustained indefinitely.")],4)],4),(0,o.createComponentVNode)(2,c.Button,{color:"grey",content:"Close",onClick:function(){return r("help")}})]})})})},d=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data,d=l.lines,s=l.playing,m=l.repeat,p=l.maxRepeats,f=l.tempo,h=l.minTempo,C=l.maxTempo,N=l.tickLag,b=l.volume,g=l.minVolume,V=l.maxVolume,v=l.ready;return(0,o.createComponentVNode)(2,c.Section,{title:"Instrument",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{icon:"info",content:"Help",onClick:function(){return i("help")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"file",content:"New",onClick:function(){return i("newsong")}}),(0,o.createComponentVNode)(2,c.Button,{icon:"upload",content:"Import",onClick:function(){return i("import")}})],4),children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Playback",children:[(0,o.createComponentVNode)(2,c.Button,{selected:s,disabled:0===d.length||m<0,icon:"play",content:"Play",onClick:function(){return i("play")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!s,icon:"stop",content:"Stop",onClick:function(){return i("stop")}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Repeat",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:"0",maxValue:p,value:m,stepPixelSize:"59",onChange:function(e,t){return i("repeat",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Tempo",children:(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Button,{disabled:f>=C,content:"-",as:"span",mr:"0.5rem",onClick:function(){return i("tempo",{"new":f+N})}}),(0,r.round)(600/f)," BPM",(0,o.createComponentVNode)(2,c.Button,{disabled:f<=h,content:"+",as:"span",ml:"0.5rem",onClick:function(){return i("tempo",{"new":f-N})}})]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:g,maxValue:V,value:b,stepPixelSize:"6",onDrag:function(e,t){return i("setvolume",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:v?(0,o.createComponentVNode)(2,c.Box,{color:"good",children:"Ready"}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"Instrument Definition Error!"})})]}),(0,o.createComponentVNode)(2,u)]})},u=function(e,t){var n,i,l=(0,a.useBackend)(t),d=l.act,u=l.data,s=u.allowedInstrumentNames,m=u.instrumentLoaded,p=u.instrument,f=u.canNoteShift,h=u.noteShift,C=u.noteShiftMin,N=u.noteShiftMax,b=u.sustainMode,g=u.sustainLinearDuration,V=u.sustainExponentialDropoff,v=u.legacy,y=u.sustainDropoffVolume,_=u.sustainHeldNote;return 1===b?(n="Linear",i=(0,o.createComponentVNode)(2,c.Slider,{minValue:"0.1",maxValue:"5",value:g,step:"0.5",stepPixelSize:"85",format:function(e){return(0,r.round)(100*e)/100+" seconds"},onChange:function(e,t){return d("setlinearfalloff",{"new":t/10})}})):2===b&&(n="Exponential",i=(0,o.createComponentVNode)(2,c.Slider,{minValue:"1.025",maxValue:"10",value:V,step:"0.01",format:function(e){return(0,r.round)(1e3*e)/1e3+"% per decisecond"},onChange:function(e,t){return d("setexpfalloff",{"new":t})}})),s.sort(),(0,o.createComponentVNode)(2,c.Box,{my:-1,children:(0,o.createComponentVNode)(2,c.Collapsible,{mt:"1rem",mb:"0",title:"Advanced",children:(0,o.createComponentVNode)(2,c.Section,{mt:-1,children:[(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Type",children:v?"Legacy":"Synthesized"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Current",children:m?(0,o.createComponentVNode)(2,c.Dropdown,{options:s,selected:p,width:"40%",onSelected:function(e){return d("switchinstrument",{name:e})}}):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"None!"})}),!(v||!f)&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Note Shift/Note Transpose",children:(0,o.createComponentVNode)(2,c.Slider,{minValue:C,maxValue:N,value:h,stepPixelSize:"2",format:function(e){return e+" keys / "+(0,r.round)(e/12*100)/100+" octaves"},onChange:function(e,t){return d("setnoteshift",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Sustain Mode",children:[(0,o.createComponentVNode)(2,c.Dropdown,{options:["Linear","Exponential"],selected:n,onSelected:function(e){return d("setsustainmode",{"new":e})}}),i]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Volume Dropoff Threshold",children:(0,o.createComponentVNode)(2,c.Slider,{animated:!0,minValue:"0.01",maxValue:"100",value:y,stepPixelSize:"6",onChange:function(e,t){return d("setdropoffvolume",{"new":t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Sustain indefinitely last held note",children:(0,o.createComponentVNode)(2,c.Button,{selected:_,icon:_?"toggle-on":"toggle-off",content:_?"Yes":"No",onClick:function(){return d("togglesustainhold")}})})],4)]}),(0,o.createComponentVNode)(2,c.Button,{icon:"redo",content:"Reset to Default",mt:"0.5rem",onClick:function(){return d("reset")}})]})})})},s=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.playing,d=i.lines,u=i.editing;return(0,o.createComponentVNode)(2,c.Section,{title:"Editor",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:!u||l,icon:"plus",content:"Add Line",onClick:function(){return r("newline",{line:d.length+1})}}),(0,o.createComponentVNode)(2,c.Button,{selected:!u,icon:u?"chevron-up":"chevron-down",onClick:function(){return r("edit")}})],4),children:!!u&&(d.length>0?(0,o.createComponentVNode)(2,c.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:t+1,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:"pen",onClick:function(){return r("modifyline",{line:t+1})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:"trash",onClick:function(){return r("deleteline",{line:t+1})}})],4),children:e},t)}))}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"Song is empty."}))})}},function(e,t,n){"use strict";t.__esModule=!0,t.KeycardAuth=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.KeycardAuth=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=(0,o.createComponentVNode)(2,a.Section,{title:"Keycard Authentication Device",children:(0,o.createComponentVNode)(2,a.Box,{children:"This device is used to trigger certain high security events. It requires the simultaneous swipe of two high-level ID cards."})});if(l.swiping||l.busy){var u=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Waiting for YOU to swipe your ID..."});return l.hasSwiped||l.ertreason||"Emergency Response Team"!==l.event?l.hasConfirm?u=(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Request Confirmed!"}):l.isRemote?u=(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Swipe your card to CONFIRM the remote request."}):l.hasSwiped&&(u=(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Waiting for second person to confirm..."})):u=(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Fill out the reason for your ERT request."}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[d,"Emergency Response Team"===l.event&&(0,o.createComponentVNode)(2,a.Section,{title:"Reason for ERT Call",children:(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{color:l.ertreason?"":"red",icon:l.ertreason?"check":"pencil-alt",content:l.ertreason?l.ertreason:"-----",disabled:l.busy,onClick:function(){return i("ert")}})})}),(0,o.createComponentVNode)(2,a.Section,{title:l.event,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-circle-left",content:"Back",disabled:l.busy||l.hasConfirm,onClick:function(){return i("reset")}}),children:u})]})})}return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[d,(0,o.createComponentVNode)(2,a.Section,{title:"Choose Action",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Red Alert",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",disabled:!l.redAvailable,onClick:function(){return i("triggerevent",{triggerevent:"Red Alert"})},content:"Red Alert"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ERT",children:(0,o.createComponentVNode)(2,a.Button,{icon:"broadcast-tower",onClick:function(){return i("triggerevent",{triggerevent:"Emergency Response Team"})},content:"Call ERT"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Maint Access",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"door-open",onClick:function(){return i("triggerevent",{triggerevent:"Grant Emergency Maintenance Access"})},content:"Grant"}),(0,o.createComponentVNode)(2,a.Button,{icon:"door-closed",onClick:function(){return i("triggerevent",{triggerevent:"Revoke Emergency Maintenance Access"})},content:"Revoke"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Emergency Station-Wide Access",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"door-open",onClick:function(){return i("triggerevent",{triggerevent:"Activate Station-Wide Emergency Access"})},content:"Grant"}),(0,o.createComponentVNode)(2,a.Button,{icon:"door-closed",onClick:function(){return i("triggerevent",{triggerevent:"Deactivate Station-Wide Emergency Access"})},content:"Revoke"})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LaborClaimConsole=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);t.LaborClaimConsole=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,l),(0,o.createComponentVNode)(2,d)]})})};var l=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.can_go_home,d=i.emagged,u=i.id_inserted,s=i.id_name,m=i.id_points,p=i.id_goal,f=i.unclaimed_points,h=d?0:1,C=d?"ERR0R":l?"Completed!":"Insufficient";return(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",children:!!u&&(0,o.createComponentVNode)(2,c.ProgressBar,{value:m/p,ranges:{good:[h,Infinity],bad:[-Infinity,h]},children:m+" / "+p+" "+C})||!!d&&"ERR0R COMPLETED?!@"||"No ID inserted"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Shuttle controls",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:"Move shuttle",disabled:!l,onClick:function(){return r("move_shuttle")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Unclaimed points",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:"Claim points ("+f+")",disabled:!u||!f,onClick:function(){return r("claim_points")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Inserted ID",children:(0,o.createComponentVNode)(2,c.Button,{fluid:!0,content:u?s:"-------------",onClick:function(){return r("handle_id")}})})]})})},d=function(e,t){var n=(0,a.useBackend)(t).data.ores;return(0,o.createComponentVNode)(2,c.Section,{title:"Material values",children:(0,o.createComponentVNode)(2,c.Table,{children:[(0,o.createComponentVNode)(2,c.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:"Material"}),(0,o.createComponentVNode)(2,c.Table.Cell,{collapsing:!0,textAlign:"right",children:"Value"})]}),n.map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,r.toTitleCase)(e.ore)}),(0,o.createComponentVNode)(2,c.Table.Cell,{collapsing:!0,textAlign:"right",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",inline:!0,children:e.value})})]},e.ore)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LawManager=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.LawManager=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.isAdmin,m=u.isSlaved,p=u.isMalf,f=u.isAIMalf,h=u.view;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!(!s||!m)&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:["This unit is slaved to ",m,"."]}),!(!p&&!f)&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Law Management",selected:0===h,onClick:function(){return d("set_view",{set_view:0})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Lawsets",selected:1===h,onClick:function(){return d("set_view",{set_view:1})}})]}),!(0!==h)&&(0,o.createComponentVNode)(2,i),!(1!==h)&&(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.has_zeroth_laws,u=i.zeroth_laws,s=i.has_ion_laws,m=i.ion_laws,p=i.ion_law_nr,f=i.has_inherent_laws,h=i.inherent_laws,C=i.has_supplied_laws,N=i.supplied_laws,b=i.channels,g=i.channel,V=i.isMalf,v=i.isAdmin,y=i.zeroth_law,_=i.ion_law,x=i.inherent_law,k=i.supplied_law,L=i.supplied_law_position;return(0,o.createFragment)([!!l&&(0,o.createComponentVNode)(2,d,{title:"ERR_NULL_VALUE",laws:u,ctx:t}),!!s&&(0,o.createComponentVNode)(2,d,{title:p,laws:m,ctx:t}),!!f&&(0,o.createComponentVNode)(2,d,{title:"Inherent",laws:h,ctx:t}),!!C&&(0,o.createComponentVNode)(2,d,{title:"Supplied",laws:N,ctx:t}),(0,o.createComponentVNode)(2,a.Section,{title:"Statement Settings",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Statement Channel",children:b.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.channel,selected:e.channel===g,onClick:function(){return c("law_channel",{law_channel:e.channel})}},e.channel)}))}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"State Laws",children:(0,o.createComponentVNode)(2,a.Button,{content:"State Laws",onClick:function(){return c("state_laws")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Law Notification",children:(0,o.createComponentVNode)(2,a.Button,{content:"Notify",onClick:function(){return c("notify_laws")}})})]})}),!!V&&(0,o.createComponentVNode)(2,a.Section,{title:"Add Laws",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Type"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"60%",children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"20%",children:"Actions"})]}),!(!v||l)&&(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Zero"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:y}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_zeroth_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_zeroth_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Ion"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:_}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_ion_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_ion_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Inherent"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:x}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"N/A"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_inherent_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_inherent_law")}})]})]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Supplied"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:k}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:L,onClick:function(){return c("change_supplied_law_position")}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("change_supplied_law")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Add",icon:"plus",onClick:function(){return c("add_supplied_law")}})]})]})]})})],0)},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.law_sets;return(0,o.createComponentVNode)(2,a.Box,{children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name+" - "+e.header,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Load Laws",icon:"download",onClick:function(){return c("transfer_laws",{transfer_laws:e.ref})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.laws.has_ion_laws>0&&e.laws.ion_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_zeroth_laws>0&&e.laws.zeroth_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_inherent_laws>0&&e.laws.inherent_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)})),e.laws.has_supplied_laws>0&&e.laws.inherent_laws.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.index,children:e.law},e.index)}))]})},e.name)}))})},d=function(e,t){var n=(0,r.useBackend)(e.ctx),c=n.act,i=n.data.isMalf;return(0,o.createComponentVNode)(2,a.Section,{title:e.title+" Laws",children:(0,o.createComponentVNode)(2,a.Table,{children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{width:"10%",children:"Index"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"69%",children:"Law"}),(0,o.createComponentVNode)(2,a.Table.Cell,{width:"21%",children:"State?"})]}),e.laws.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.index}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.law}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:[(0,o.createComponentVNode)(2,a.Button,{content:e.state?"Yes":"No",selected:e.state,onClick:function(){return c("state_law",{ref:e.ref,state_law:e.state?0:1})}}),!!i&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Edit",icon:"pencil-alt",onClick:function(){return c("edit_law",{edit_law:e.ref})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Delete",icon:"trash",color:"red",onClick:function(){return c("delete_law",{delete_law:e.ref})}})],4)]})]},e.law)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechBayConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.MechBayConsole=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.recharge_port,d=l&&l.mech,u=d&&d.cell,s=d&&d.name;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:s?"Mech status: "+s:"Mech status",textAlign:"center",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Sync",onClick:function(){return i("reconnect")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:!l&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No power port detected. Please re-sync."})||!d&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mech detected."})||(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.health/d.maxhealth,ranges:{good:[.7,Infinity],average:[.3,.7],bad:[-Infinity,.3]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:!l&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No power port detected. Please re-sync."})||!d&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mech detected."})||!u&&(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cell is installed."})||(0,o.createComponentVNode)(2,a.ProgressBar,{value:u.charge/u.maxcharge,ranges:{good:[.7,Infinity],average:[.3,.7],bad:[-Infinity,.3]},children:[(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:u.charge})," / "+u.maxcharge]})})]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MechaControlConsole=void 0;var o=n(0),r=(n(15),n(1)),a=n(2),c=n(4),i=n(19);t.MechaControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.beacons,s=d.stored_data;return s.length?(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Log",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"window-close",onClick:function(){return l("clear_log")}}),children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",children:["(",e.time,")"]}),(0,o.createComponentVNode)(2,a.Box,{children:(0,i.decodeHtmlEntities)(e.message)})]},e.time)}))})})}):(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:u.length&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"comment",onClick:function(){return l("send_message",{mt:e.uid})},children:"Message"}),(0,o.createComponentVNode)(2,a.Button,{icon:"eye",onClick:function(){return l("get_log",{mt:e.uid})},children:"View Log"}),(0,o.createComponentVNode)(2,a.Button.Confirm,{color:"red",content:"EMP",icon:"bomb",onClick:function(){return l("shock",{mt:e.uid})}})],4),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.maxHealth,Infinity],average:[.5*e.maxHealth,.75*e.maxHealth],bad:[-Infinity,.5*e.maxHealth]},value:e.health,maxValue:e.maxHealth})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:e.cell&&(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.75*e.cellMaxCharge,Infinity],average:[.5*e.cellMaxCharge,.75*e.cellMaxCharge],bad:[-Infinity,.5*e.cellMaxCharge]},value:e.cellCharge,maxValue:e.cellMaxCharge})||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Cell Installed"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Air Tank",children:[e.airtank,"kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot||"Unoccupied"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,i.toTitleCase)(e.location)||"Unknown"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Active Equipment",children:e.active||"None"}),e.cargoMax&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cargo Space",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{bad:[.75*e.cargoMax,Infinity],average:[.5*e.cargoMax,.75*e.cargoMax],good:[-Infinity,.5*e.cargoMax]},value:e.cargoUsed,maxValue:e.cargoMax})})||null]})},e.name)}))||(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No mecha beacons found."})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MedicalRecords=void 0;var o=n(0),r=n(1),a=n(2),c=n(49),i=n(4),l=n(132),d=n(133),u=n(136),s={Minor:"good",Medium:"average","Dangerous!":"bad",Harmful:"bad","BIOHAZARD THREAT!":"bad"},m=function(e,t){(0,c.modalOpen)(e,"edit",{field:t.edit,value:t.value})};t.MedicalRecords=function(e,t){var n,s=(0,r.useBackend)(t).data,m=s.loginState,C=s.screen;return m.logged_in?(2===C?n=(0,o.createComponentVNode)(2,p):3===C?n=(0,o.createComponentVNode)(2,f):4===C?n=(0,o.createComponentVNode)(2,h):5===C?n=(0,o.createComponentVNode)(2,b):6===C&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:[(0,o.createComponentVNode)(2,c.ComplexModal),(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,l.LoginInfo),(0,o.createComponentVNode)(2,u.TemporaryNotice),(0,o.createComponentVNode)(2,V),(0,o.createComponentVNode)(2,a.Section,{height:"100%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{children:(0,o.createComponentVNode)(2,d.LoginScreen)})})};var p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Input,{fluid:!0,placeholder:"Search by Name, DNA, or ID",onChange:function(e,t){return c("search",{t1:t})}}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"user",mb:"0.5rem",content:e.id+": "+e.name,onClick:function(){return c("d_rec",{d_rec:e.ref})}}),(0,o.createVNode)(1,"br")],4,t)}))})],4)},f=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"download",content:"Backup to Disk",disabled:!0}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"upload",content:"Upload from Disk",my:"0.5rem",disabled:!0}),(0,o.createTextVNode)(" "),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Medical Records",onClick:function(){return n("del_all")}})],4)},h=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.medical,d=i.printing;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"General Data",level:2,mt:"-6px",children:(0,o.createComponentVNode)(2,C)}),(0,o.createComponentVNode)(2,a.Section,{title:"Medical Data",level:2,children:(0,o.createComponentVNode)(2,N)}),(0,o.createComponentVNode)(2,a.Section,{title:"Actions",level:2,children:[(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",disabled:!!l.empty,content:"Delete Medical Record",color:"bad",onClick:function(){return c("del_r")}}),(0,o.createComponentVNode)(2,a.Button,{icon:d?"spinner":"print",disabled:d,iconSpin:!!d,content:"Print Entry",ml:"0.5rem",onClick:function(){return c("print_p")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-left",content:"Back",mt:"0.5rem",onClick:function(){return c("screen",{screen:2})}})]})],4)},C=function(e,t){var n=(0,r.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"left",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[(0,o.createComponentVNode)(2,a.Box,{height:"20px",display:"inline-block",children:e.value}),!!e.edit&&(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",onClick:function(){return m(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,a.Box,{width:"50%",float:"right",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e,style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"General records lost!"})},N=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.medical;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.field,children:[e.value,(0,o.createComponentVNode)(2,a.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return m(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Comments/Log",level:2,children:[0===l.comments.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"label",display:"inline",children:e.header}),(0,o.createVNode)(1,"br"),e.text,(0,o.createComponentVNode)(2,a.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return i("del_c",{del_c:t+1})}})]},t)})),(0,o.createComponentVNode)(2,a.Button,{icon:"comment-medical",content:"Add Entry",color:"good",mt:"0.5rem",mb:"0",onClick:function(){return(0,c.modalOpen)(t,"add_c")}})]})],4):(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:["Medical records lost!",(0,o.createComponentVNode)(2,a.Button,{icon:"pen",content:"New Record",ml:"0.5rem",onClick:function(){return i("new")}})]})},b=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.virus;return i.sort((function(e,t){return e.name>t.name?1:-1})),i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"flask",content:e.name,mb:"0.5rem",onClick:function(){return c("vir",{vir:e.D})}}),(0,o.createVNode)(1,"br")],4,t)}))},g=function(e,t){var n=(0,r.useBackend)(t).data.medbots;return 0===n.length?(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"There are no Medbots."}):n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Collapsible,{open:!0,title:e.name,children:(0,o.createComponentVNode)(2,a.Box,{px:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:[e.area||"Unknown"," (",e.x,", ",e.y,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:e.on?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Online"}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:e.use_beaker?"Reservoir: "+e.total_volume+"/"+e.maximum_volume:"Using internal synthesizer."})],4):(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"Offline"})})]})})},t)}))},V=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.screen;return(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===i,onClick:function(){return c("screen",{screen:2})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"list"}),"List Records"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:5===i,onClick:function(){return c("screen",{screen:5})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"database"}),"Virus Database"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:6===i,onClick:function(){return c("screen",{screen:6})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"plus-square"}),"Medbot Tracking"]}),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:3===i,onClick:function(){return c("screen",{screen:3})},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Record Maintenance"]})]})};(0,c.modalRegisterBodyOverride)("virus",(function(e,t){var n=e.args;return(0,o.createComponentVNode)(2,a.Section,{level:2,m:"-1rem",pb:"1rem",title:n.name||"Virus",children:(0,o.createComponentVNode)(2,a.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Number of stages",children:n.max_stages}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Spread",children:[n.spread_text," Transmission"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Possible cure",children:n.cure}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Notes",children:n.desc}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Severity",color:s[n.severity],children:n.severity})]})})})}))},function(e,t,n){"use strict";t.__esModule=!0,t.MiningVendor=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);var l={Alphabetical:function(e,t){return e-t},"By availability":function(e,t){return-(e.affordable-t.affordable)},"By price":function(e,t){return e.price-t.price}};t.MiningVendor=function(e,t){return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,s),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.has_id,d=i.id;return(0,o.createComponentVNode)(2,c.NoticeBox,{success:l,children:l?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",style:{float:"left"},children:["Logged in as ",d.name,".",(0,o.createVNode)(1,"br"),"You have ",d.points.toLocaleString("en-US")," points."]}),(0,o.createComponentVNode)(2,c.Button,{icon:"eject",content:"Eject ID",style:{float:"right"},onClick:function(){return r("logoff")}}),(0,o.createComponentVNode)(2,c.Box,{style:{clear:"both"}})],4):"Please insert an ID in order to make purchases."})},u=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),d=i.has_id,u=i.id,s=i.items,p=(0,a.useLocalState)(t,"search",""),f=p[0],h=(p[1],(0,a.useLocalState)(t,"sort","Alphabetical")),C=h[0],N=(h[1],(0,a.useLocalState)(t,"descending",!1)),b=N[0],g=(N[1],(0,r.createSearch)(f,(function(e){return e[0]}))),V=!1,v=Object.entries(s).map((function(e,t){var n=Object.entries(e[1]).filter(g).map((function(e){return e[1].affordable=d&&u.points>=e[1].price,e[1]})).sort(l[C]);if(0!==n.length)return b&&(n=n.reverse()),V=!0,(0,o.createComponentVNode)(2,m,{title:e[0],items:n},e[0])}));return(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Section,{children:V?v:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No items matching your criteria was found!"})})})},s=function(e,t){var n=(0,a.useLocalState)(t,"search",""),r=(n[0],n[1]),i=(0,a.useLocalState)(t,"sort",""),d=(i[0],i[1]),u=(0,a.useLocalState)(t,"descending",!1),s=u[0],m=u[1];return(0,o.createComponentVNode)(2,c.Box,{mb:"0.5rem",children:(0,o.createComponentVNode)(2,c.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",mr:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by item name..",width:"100%",onInput:function(e,t){return r(t)}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{basis:"30%",children:(0,o.createComponentVNode)(2,c.Dropdown,{selected:"Alphabetical",options:Object.keys(l),width:"100%",lineHeight:"19px",onSelected:function(e){return d(e)}})}),(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Button,{icon:s?"arrow-down":"arrow-up",height:"19px",tooltip:s?"Descending order":"Ascending order",tooltipPosition:"bottom-left",ml:"0.5rem",onClick:function(){return m(!s)}})})]})})},m=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=e.title,d=e.items,u=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["title","items"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Collapsible,Object.assign({open:!0,title:l},u,{children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",verticalAlign:"middle",lineHeight:"20px",style:{float:"left"},children:e.name}),(0,o.createComponentVNode)(2,c.Button,{disabled:!i.has_id||i.id.points=0||(r[n]=e[n]);return r}var m=["security","engineering","medical","science","service","supply"],p={security:{title:"Security",fluff_text:"Help keep the crew safe"},engineering:{title:"Engineering",fluff_text:"Ensure the station runs smoothly"},medical:{title:"Medical",fluff_text:"Practice medicine and save lives"},science:{title:"Science",fluff_text:"Develop new technologies"},service:{title:"Service",fluff_text:"Provide amenities to the crew"},supply:{title:"Supply",fluff_text:"Keep the station supplied"}};t.Newscaster=function(e,t){var n,i=(0,a.useBackend)(t),s=i.act,m=i.data,p=m.is_security,N=m.is_admin,b=m.is_silent,V=m.is_printing,v=m.screen,y=m.channels,_=m.channel_idx,x=void 0===_?-1:_,k=(0,a.useLocalState)(t,"menuOpen",!1),L=k[0],B=k[1],w=(0,a.useLocalState)(t,"viewingPhoto",""),S=w[0],I=(w[1],(0,a.useLocalState)(t,"censorMode",!1)),T=I[0],A=I[1];0===v||2===v?n=(0,o.createComponentVNode)(2,h):1===v&&(n=(0,o.createComponentVNode)(2,C));var E=y.reduce((function(e,t){return e+t.unread}),0);return(0,o.createComponentVNode)(2,l.Window,{theme:p&&"security",children:[S?(0,o.createComponentVNode)(2,g):(0,o.createComponentVNode)(2,d.ComplexModal,{maxWidth:window.innerWidth/1.5+"px",maxHeight:window.innerHeight/1.5+"px"}),(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,c.Flex,{width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,c.Section,{stretchContents:!0,className:(0,r.classes)(["Newscaster__menu",L&&"Newscaster__menu--open"]),children:(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,c.Box,{flex:"0 1 content",children:[(0,o.createComponentVNode)(2,f,{icon:"bars",title:"Toggle Menu",onClick:function(){return B(!L)}}),(0,o.createComponentVNode)(2,f,{icon:"newspaper",title:"Headlines",selected:0===v,onClick:function(){return s("headlines")},children:E>0&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--unread",children:E>=10?"9+":E})}),(0,o.createComponentVNode)(2,f,{icon:"briefcase",title:"Job Openings",selected:1===v,onClick:function(){return s("jobs")}}),(0,o.createComponentVNode)(2,c.Divider)]}),(0,o.createComponentVNode)(2,c.Box,{flex:"2",overflowY:"auto",overflowX:"hidden",children:y.map((function(e){return(0,o.createComponentVNode)(2,f,{icon:e.icon,title:e.name,selected:2===v&&y[x-1]===e,onClick:function(){return s("channel",{uid:e.uid})},children:e.unread>0&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--unread",children:e.unread>=10?"9+":e.unread})},e)}))}),(0,o.createComponentVNode)(2,c.Box,{width:"100%",flex:"0 0 content",children:[(0,o.createComponentVNode)(2,c.Divider),(!!p||!!N)&&(0,o.createFragment)([(0,o.createComponentVNode)(2,f,{security:!0,icon:"exclamation-circle",title:"Edit Wanted Notice",mb:"0.5rem",onClick:function(){return(0,d.modalOpen)(t,"wanted_notice")}}),(0,o.createComponentVNode)(2,f,{security:!0,icon:T?"minus-square":"minus-square-o",title:"Censor Mode: "+(T?"On":"Off"),mb:"0.5rem",onClick:function(){return A(!T)}}),(0,o.createComponentVNode)(2,c.Divider)],4),(0,o.createComponentVNode)(2,f,{icon:"pen-alt",title:"New Story",mb:"0.5rem",onClick:function(){return(0,d.modalOpen)(t,"create_story")}}),(0,o.createComponentVNode)(2,f,{icon:"plus-circle",title:"New Channel",onClick:function(){return(0,d.modalOpen)(t,"create_channel")}}),(0,o.createComponentVNode)(2,c.Divider),(0,o.createComponentVNode)(2,f,{icon:V?"spinner":"print",iconSpin:V,title:V?"Printing...":"Print Newspaper",onClick:function(){return s("print_newspaper")}}),(0,o.createComponentVNode)(2,f,{icon:b?"volume-mute":"volume-up",title:"Mute: "+(b?"On":"Off"),onClick:function(){return s("toggle_mute")}})]})]})}),(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[(0,o.createComponentVNode)(2,u.TemporaryNotice),n]})]})})]})};var f=function(e,t){(0,a.useBackend)(t).act;var n=e.icon,i=void 0===n?"":n,l=e.iconSpin,d=e.selected,u=void 0!==d&&d,m=e.security,p=void 0!==m&&m,f=e.onClick,h=e.title,C=e.children,N=s(e,["icon","iconSpin","selected","security","onClick","title","children"]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Box,Object.assign({className:(0,r.classes)(["Newscaster__menuButton",u&&"Newscaster__menuButton--selected",p&&"Newscaster__menuButton--security"]),onClick:f},N,{children:[u&&(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--selectedBar"}),(0,o.createComponentVNode)(2,c.Icon,{name:i,spin:l,size:"2"}),(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__menuButton--title",children:h}),C]})))},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.screen,u=i.is_admin,s=i.channel_idx,m=i.channel_can_manage,p=i.channels,f=i.stories,h=i.wanted,C=(0,a.useLocalState)(t,"fullStories",[]),b=C[0],g=(C[1],(0,a.useLocalState)(t,"censorMode",!1)),V=g[0],v=(g[1],2===l&&s>-1?p[s-1]:null);return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[!!h&&(0,o.createComponentVNode)(2,N,{story:h,wanted:!0}),(0,o.createComponentVNode)(2,c.Section,{title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:v?v.icon:"newspaper",mr:"0.5rem"}),v?v.name:"Headlines"],0),flexGrow:"1",children:f.length>0?f.slice().reverse().map((function(e){return!b.includes(e.uid)&&e.body.length+3>128?Object.assign({},e,{body_short:e.body.substr(0,124)+"..."}):e})).map((function(e){return(0,o.createComponentVNode)(2,N,{story:e},e)})):(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__emptyNotice",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"times",size:"3"}),(0,o.createVNode)(1,"br"),"There are no stories at this time."]})}),!!v&&(0,o.createComponentVNode)(2,c.Section,{flexShrink:"1",title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"info-circle",mr:"0.5rem"}),(0,o.createTextVNode)("About")],4),buttons:(0,o.createFragment)([V&&(0,o.createComponentVNode)(2,c.Button,{disabled:!!v.admin&&!u,selected:v.censored,icon:v.censored?"comment-slash":"comment",content:v.censored?"Uncensor Channel":"Censor Channel",mr:"0.5rem",onClick:function(){return r("censor_channel",{uid:v.uid})}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!m,icon:"cog",content:"Manage",onClick:function(){return(0,d.modalOpen)(t,"manage_channel",{uid:v.uid})}})],0),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description",children:v.description||"N/A"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:v.author||"N/A"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Public",children:v["public"]?"Yes":"No"}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Total Views",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"eye",mr:"0.5rem"}),f.reduce((function(e,t){return e+t.view_count}),0).toLocaleString()]})]})})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=(n.act,n.data),l=i.jobs,d=i.wanted,u=Object.entries(l).reduce((function(e,t){t[0];return e+t[1].length}),0);return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",flex:"1",children:[!!d&&(0,o.createComponentVNode)(2,N,{story:d,wanted:!0}),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",title:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"briefcase",mr:"0.5rem"}),(0,o.createTextVNode)("Job Openings")],4),buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",color:"label",children:"Work for a better future at Nanotrasen"}),children:u>0?m.map((function(e){return Object.assign({},p[e],{id:e,jobs:l[e]})})).filter((function(e){return!!e&&e.jobs.length>0})).map((function(e){return(0,o.createComponentVNode)(2,c.Section,{className:(0,r.classes)(["Newscaster__jobCategory","Newscaster__jobCategory--"+e.id]),title:e.title,buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",color:"label",children:e.fluff_text}),children:e.jobs.map((function(e){return(0,o.createComponentVNode)(2,c.Box,{"class":(0,r.classes)(["Newscaster__jobOpening",!!e.is_command&&"Newscaster__jobOpening--command"]),children:["\u2022 ",e.title]},e.title)}))},e.id)})):(0,o.createComponentVNode)(2,c.Box,{className:"Newscaster__emptyNotice",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"times",size:"3"}),(0,o.createVNode)(1,"br"),"There are no openings at this time."]})}),(0,o.createComponentVNode)(2,c.Section,{flexShrink:"1",children:["Interested in serving Nanotrasen?",(0,o.createVNode)(1,"br"),"Sign up for any of the above position now at the ",(0,o.createVNode)(1,"b",null,"Head of Personnel's Office!",16),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Box,{as:"small",color:"label",children:"By signing up for a job at Nanotrasen, you agree to transfer your soul to the loyalty department of the omnipresent and helpful watcher of humanity."})]})]})},N=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data,u=e.story,s=e.wanted,m=void 0!==s&&s,p=(0,a.useLocalState)(t,"fullStories",[]),f=p[0],h=p[1],C=(0,a.useLocalState)(t,"censorMode",!1),N=C[0];C[1];return(0,o.createComponentVNode)(2,c.Section,{className:(0,r.classes)(["Newscaster__story",m&&"Newscaster__story--wanted"]),title:(0,o.createFragment)([m&&(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-circle",mr:"0.5rem"}),(2&u.censor_flags?"[REDACTED]":u.title)||"News from "+u.author],0),buttons:(0,o.createComponentVNode)(2,c.Box,{mt:"0.25rem",children:(0,o.createComponentVNode)(2,c.Box,{color:"label",children:[!m&&N&&(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:(0,o.createComponentVNode)(2,c.Button,{enabled:2&u.censor_flags,icon:2&u.censor_flags?"comment-slash":"comment",content:2&u.censor_flags?"Uncensor":"Censor",mr:"0.5rem",mt:"-0.25rem",onClick:function(){return l("censor_story",{uid:u.uid})}})}),(0,o.createComponentVNode)(2,c.Box,{display:"inline",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",u.author," |\xa0",!m&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Icon,{name:"eye"}),(0,o.createTextVNode)(" "),u.view_count.toLocaleString(),(0,o.createTextVNode)(" |\xa0")],0),(0,o.createComponentVNode)(2,c.Icon,{name:"clock"})," ",(0,i.timeAgo)(u.publish_time,d.world_time)]})]})}),children:(0,o.createComponentVNode)(2,c.Box,{children:2&u.censor_flags?"[REDACTED]":(0,o.createFragment)([!!u.has_photo&&(0,o.createComponentVNode)(2,b,{name:"story_photo_"+u.uid+".png",float:"right",ml:"0.5rem"}),(u.body_short||u.body).split("\n").map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e||(0,o.createVNode)(1,"br")},e)})),u.body_short&&(0,o.createComponentVNode)(2,c.Button,{content:"Read more..",mt:"0.5rem",onClick:function(){return h([].concat(f,[u.uid]))}}),(0,o.createComponentVNode)(2,c.Box,{clear:"right"})],0)})})},b=function(e,t){var n=e.name,r=s(e,["name"]),i=(0,a.useLocalState)(t,"viewingPhoto",""),l=(i[0],i[1]);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,c.Box,Object.assign({as:"img",className:"Newscaster__photo",src:n,onClick:function(){return l(n)}},r)))},g=function(e,t){var n=(0,a.useLocalState)(t,"viewingPhoto",""),r=n[0],i=n[1];return(0,o.createComponentVNode)(2,c.Modal,{className:"Newscaster__photoZoom",children:[(0,o.createComponentVNode)(2,c.Box,{as:"img",src:r}),(0,o.createComponentVNode)(2,c.Button,{icon:"times",content:"Close",color:"grey",mt:"1rem",onClick:function(){return i("")}})]})},V=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data),i=!!e.args.uid&&r.channels.filter((function(t){return t.uid===e.args.uid})).pop();if("manage_channel"!==e.id||i){var l="manage_channel"===e.id,u=!!e.args.is_admin,s=e.args.scanned_user,m=(0,a.useLocalState)(t,"author",(null==i?void 0:i.author)||s||"Unknown"),p=m[0],f=m[1],h=(0,a.useLocalState)(t,"name",(null==i?void 0:i.name)||""),C=h[0],N=h[1],b=(0,a.useLocalState)(t,"description",(null==i?void 0:i.description)||""),g=b[0],V=b[1],v=(0,a.useLocalState)(t,"icon",(null==i?void 0:i.icon)||"newspaper"),y=v[0],_=v[1],x=(0,a.useLocalState)(t,"isPublic",!!l&&!!(null==i?void 0:i["public"])),k=x[0],L=x[1],B=(0,a.useLocalState)(t,"adminLocked",1===(null==i?void 0:i.admin)||!1),w=B[0],S=B[1];return(0,o.createComponentVNode)(2,c.Section,{level:"2",m:"-1rem",pb:"1rem",title:l?"Manage "+i.name:"Create New Channel",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Owner",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!u,width:"100%",value:p,onInput:function(e,t){return f(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",placeholder:"50 characters max.",maxLength:"50",value:C,onInput:function(e,t){return N(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description (optional)",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{multiline:!0,width:"100%",placeholder:"128 characters max.",maxLength:"128",value:g,onInput:function(e,t){return V(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Icon",children:[(0,o.createComponentVNode)(2,c.Input,{disabled:!u,value:y,width:"35%",mr:"0.5rem",onInput:function(e,t){return _(t)}}),(0,o.createComponentVNode)(2,c.Icon,{name:y,size:"2",verticalAlign:"middle",mr:"0.5rem"})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Accept Public Stories?",children:(0,o.createComponentVNode)(2,c.Button,{selected:k,icon:k?"toggle-on":"toggle-off",content:k?"Yes":"No",onClick:function(){return L(!k)}})}),u&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:w,icon:w?"lock":"lock-open",content:w?"On":"Off",tooltip:"Locking this channel will make it editable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return S(!w)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===p.trim().length||0===C.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,e.id,"",{author:p,name:C.substr(0,49),description:g.substr(0,128),icon:y,"public":k?1:0,admin_locked:w?1:0}),(0,a.deleteLocalState)(t,"author","name","description","icon","public")}})]})}(0,d.modalClose)(t)};(0,d.modalRegisterBodyOverride)("create_channel",V),(0,d.modalRegisterBodyOverride)("manage_channel",V),(0,d.modalRegisterBodyOverride)("create_story",(function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.photo,u=i.channels,s=i.channel_idx,m=void 0===s?-1:s,p=!!e.args.is_admin,f=e.args.scanned_user,h=u.slice().sort((function(e,t){if(m<0)return 0;var n=u[m-1];return n.uid===e.uid?-1:n.uid===t.uid?1:void 0})).filter((function(e){return p||!e.frozen&&(e.author===f||!!e["public"])})),C=(0,a.useLocalState)(t,"author",f||"Unknown"),N=C[0],g=C[1],V=(0,a.useLocalState)(t,"channel",h.length>0?h[0].name:""),v=V[0],y=V[1],_=(0,a.useLocalState)(t,"title",""),x=_[0],k=_[1],L=(0,a.useLocalState)(t,"body",""),B=L[0],w=L[1],S=(0,a.useLocalState)(t,"adminLocked",!1),I=S[0],T=S[1];return(0,o.createComponentVNode)(2,c.Section,{level:2,m:"-1rem",pb:"1rem",title:"Create New Story",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Author",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!p,width:"100%",value:N,onInput:function(e,t){return g(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Channel",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Dropdown,{selected:v,options:h.map((function(e){return e.name})),mb:"0",width:"100%",onSelected:function(e){return y(e)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Divider),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Title",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",placeholder:"128 characters max.",maxLength:"128",value:x,onInput:function(e,t){return k(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Story Text",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{fluid:!0,multiline:!0,placeholder:"1024 characters max.",maxLength:"1024",rows:"8",width:"100%",value:B,onInput:function(e,t){return w(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Photo (optional)",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{icon:"image",selected:l,content:l?"Eject: "+l.name:"Insert Photo",tooltip:!l&&"Attach a photo to this story by holding the photograph in your hand.",onClick:function(){return r(l?"eject_photo":"attach_photo")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Preview",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Section,{noTopPadding:!0,title:x,maxHeight:"13.5rem",overflow:"auto",children:(0,o.createComponentVNode)(2,c.Box,{mt:"0.5rem",children:[!!l&&(0,o.createComponentVNode)(2,b,{name:"inserted_photo_"+l.uid+".png",float:"right"}),B.split("\n").map((function(e){return(0,o.createComponentVNode)(2,c.Box,{children:e||(0,o.createVNode)(1,"br")},e)})),(0,o.createComponentVNode)(2,c.Box,{clear:"right"})]})})}),p&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:I,icon:I?"lock":"lock-open",content:I?"On":"Off",tooltip:"Locking this story will make it censorable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return T(!I)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===N.trim().length||0===v.trim().length||0===x.trim().length||0===B.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,"create_story","",{author:N,channel:v,title:x.substr(0,127),body:B.substr(0,1023),admin_locked:I?1:0}),(0,a.deleteLocalState)(t,"author","channel","title","body")}})]})})),(0,d.modalRegisterBodyOverride)("wanted_notice",(function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.photo,u=i.wanted,s=!!e.args.is_admin,m=e.args.scanned_user,p=(0,a.useLocalState)(t,"author",(null==u?void 0:u.author)||m||"Unknown"),f=p[0],h=p[1],C=(0,a.useLocalState)(t,"name",(null==u?void 0:u.title.substr(8))||""),N=C[0],g=C[1],V=(0,a.useLocalState)(t,"description",(null==u?void 0:u.body)||""),v=V[0],y=V[1],_=(0,a.useLocalState)(t,"adminLocked",1===(null==u?void 0:u.admin_locked)||!1),x=_[0],k=_[1];return(0,o.createComponentVNode)(2,c.Section,{level:"2",m:"-1rem",pb:"1rem",title:"Manage Wanted Notice",children:[(0,o.createComponentVNode)(2,c.Box,{mx:"0.5rem",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Authority",children:(0,o.createComponentVNode)(2,c.Input,{disabled:!s,width:"100%",value:f,onInput:function(e,t){return h(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:(0,o.createComponentVNode)(2,c.Input,{width:"100%",value:N,maxLength:"128",onInput:function(e,t){return g(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Description",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Input,{multiline:!0,width:"100%",value:v,maxLength:"512",rows:"4",onInput:function(e,t){return y(t)}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Photo (optional)",verticalAlign:"top",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"image",selected:l,content:l?"Eject: "+l.name:"Insert Photo",tooltip:!l&&"Attach a photo to this wanted notice by holding the photograph in your hand.",tooltipPosition:"top",onClick:function(){return r(l?"eject_photo":"attach_photo")}}),!!l&&(0,o.createComponentVNode)(2,b,{name:"inserted_photo_"+l.uid+".png",float:"right"})]}),s&&(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"CentComm Lock",verticalAlign:"top",children:(0,o.createComponentVNode)(2,c.Button,{selected:x,icon:x?"lock":"lock-open",content:x?"On":"Off",tooltip:"Locking this wanted notice will make it editable by nobody but CentComm officers.",tooltipPosition:"top",onClick:function(){return k(!x)}})})]})}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:!u,icon:"eraser",color:"danger",content:"Clear",position:"absolute",right:"7.25rem",bottom:"-0.75rem",onClick:function(){r("clear_wanted_notice"),(0,d.modalClose)(t),(0,a.deleteLocalState)(t,"author","name","description","admin_locked")}}),(0,o.createComponentVNode)(2,c.Button.Confirm,{disabled:0===f.trim().length||0===N.trim().length||0===v.trim().length,icon:"check",color:"good",content:"Submit",position:"absolute",right:"1rem",bottom:"-0.75rem",onClick:function(){(0,d.modalAnswer)(t,e.id,"",{author:f,name:N.substr(0,127),description:v.substr(0,511),admin_locked:x?1:0}),(0,a.deleteLocalState)(t,"author","name","description","admin_locked")}})]})}))},function(e,t,n){"use strict";t.__esModule=!0,t.NuclearBomb=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.NuclearBomb=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return l.extended?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Authorization",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auth Disk",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.authdisk?"eject":"id-card",selected:l.authdisk,content:l.diskname?l.diskname:"-----",tooltip:l.authdisk?"Eject Disk":"Insert Disk",onClick:function(){return i("auth")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auth Code",children:(0,o.createComponentVNode)(2,a.Button,{icon:"key",disabled:!l.authdisk,selected:l.authcode,content:l.codemsg,onClick:function(){return i("code")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Arming & Disarming",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Bolted to floor",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.anchored?"check":"times",selected:l.anchored,disabled:!l.authdisk,content:l.anchored?"YES":"NO",onClick:function(){return i("toggle_anchor")}})}),l.authfull&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left",children:(0,o.createComponentVNode)(2,a.Button,{icon:"stopwatch",content:l.time,disabled:!l.authfull,tooltip:"Set Timer",onClick:function(){return i("set_time")}})})||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Time Left",color:l.timer?"red":"",children:l.time+"s"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safety",children:(0,o.createComponentVNode)(2,a.Button,{icon:l.safety?"check":"times",selected:l.safety,disabled:!l.authfull,content:l.safety?"ON":"OFF",tooltip:l.safety?"Disable Safety":"Enable Safety",onClick:function(){return i("toggle_safety")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Arm/Disarm",children:(0,o.createComponentVNode)(2,a.Button,{icon:(l.timer,"bomb"),disabled:l.safety||!l.authfull,color:"red",content:l.timer?"DISARM THE NUKE":"ARM THE NUKE",onClick:function(){return i("toggle_armed")}})})]})})]})}):(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Deployment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-triangle",content:"Deploy Nuclear Device (will bolt device to floor)",onClick:function(){return i("deploy")}})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OperatingComputer=void 0;var o=n(0),r=n(15),a=n(1),c=n(4),i=n(2),l=[["good","Conscious"],["average","Unconscious"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.OperatingComputer=function(e,t){var n,r=(0,a.useBackend)(t),l=r.act,d=r.data,u=d.hasOccupant,s=d.choice;return n=s?(0,o.createComponentVNode)(2,f):u?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,i.Tabs,{children:[(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:!s,icon:"user",onClick:function(){return l("choiceOff")},children:"Patient"}),(0,o.createComponentVNode)(2,i.Tabs.Tab,{selected:!!s,icon:"cog",onClick:function(){return l("choiceOn")},children:"Options"})]}),(0,o.createComponentVNode)(2,i.Section,{flexGrow:"1",children:n})]})})};var m=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,i.Section,{title:"Patient",level:"2",children:(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Name",children:n.name}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Status",color:l[n.stat][0],children:l[n.stat][1]}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.maxHealth,value:n.health/n.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),d.map((function(e,t){return(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:e[0]+" Damage",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]])},t)},t)})),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.maxTemp,value:n.bodyTemperature/n.maxTemp,color:s[n.temperatureSuitability+3],children:[(0,r.round)(n.btCelsius),"\xb0C, ",(0,r.round)(n.btFaren),"\xb0F"]})}),!!n.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,i.ProgressBar,{min:"0",max:n.bloodMax,value:n.bloodLevel/n.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[n.bloodPercent,"%, ",n.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Pulse",children:[n.pulse," BPM"]})],4)]})}),(0,o.createComponentVNode)(2,i.Section,{title:"Current Procedure",level:"2",children:n.inSurgery?(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Procedure",children:n.surgeryName}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Next Step",children:n.stepName})]}):(0,o.createComponentVNode)(2,i.Box,{color:"label",children:"No procedure ongoing."})})],4)},p=function(){return(0,o.createComponentVNode)(2,i.Flex,{textAlign:"center",height:"100%",children:(0,o.createComponentVNode)(2,i.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,i.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No patient detected."]})})},f=function(e,t){var n=(0,a.useBackend)(t),r=n.act,c=n.data,l=c.verbose,d=c.health,u=c.healthAlarm,s=c.oxy,m=c.oxyAlarm,p=c.crit;return(0,o.createComponentVNode)(2,i.LabeledList,{children:[(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Loudspeaker",children:(0,o.createComponentVNode)(2,i.Button,{selected:l,icon:l?"toggle-on":"toggle-off",content:l?"On":"Off",onClick:function(){return r(l?"verboseOff":"verboseOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health Announcer",children:(0,o.createComponentVNode)(2,i.Button,{selected:d,icon:d?"toggle-on":"toggle-off",content:d?"On":"Off",onClick:function(){return r(d?"healthOff":"healthOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Health Announcer Threshold",children:(0,o.createComponentVNode)(2,i.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:u,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("health_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen Alarm",children:(0,o.createComponentVNode)(2,i.Button,{selected:s,icon:s?"toggle-on":"toggle-off",content:s?"On":"Off",onClick:function(){return r(s?"oxyOff":"oxyOn")}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Oxygen Alarm Threshold",children:(0,o.createComponentVNode)(2,i.Knob,{bipolar:!0,minValue:"-100",maxValue:"100",value:m,stepPixelSize:"5",ml:"0",onChange:function(e,t){return r("oxy_adj",{"new":t})}})}),(0,o.createComponentVNode)(2,i.LabeledList.Item,{label:"Critical Alert",children:(0,o.createComponentVNode)(2,i.Button,{selected:p,icon:p?"toggle-on":"toggle-off",content:p?"On":"Off",onClick:function(){return r(p?"critOff":"critOn")}})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Orbit=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(4);function l(e){var t=0;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=function(e,t){if(!e)return;if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return d(e,t)}(e)))return function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}};throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(t=e[Symbol.iterator]()).next.bind(t)}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);nt},p=function(e,t){var n=e.name,o=t.name;if(!n||!o)return 0;var r=n.match(u),a=o.match(u);return r&&a&&n.replace(u,"")===o.replace(u,"")?parseInt(r[1],10)-parseInt(a[1],10):m(n,o)},f=function(e,t){var n=(0,a.useBackend)(t).act,r=e.searchText,i=e.source,l=e.title,d=i.filter(s(r));return d.sort(p),i.length>0&&(0,o.createComponentVNode)(2,c.Section,{title:l+" - ("+i.length+")",children:d.map((function(e){return(0,o.createComponentVNode)(2,c.Button,{content:e.name,onClick:function(){return n("orbit",{ref:e.ref})}},e.name)}))})},h=function(e,t){var n=(0,a.useBackend)(t).act,r=e.color,i=e.thing;return(0,o.createComponentVNode)(2,c.Button,{color:r,onClick:function(){return n("orbit",{ref:i.ref})},children:i.name})};t.Orbit=function(e,t){for(var n,r=(0,a.useBackend)(t),d=r.act,u=r.data,C=u.alive,N=u.antagonists,b=(u.auto_observe,u.dead),g=u.ghosts,V=u.misc,v=u.npcs,y=(0,a.useLocalState)(t,"searchText",""),_=y[0],x=y[1],k={},L=l(N);!(n=L()).done;){var B=n.value;k[B.antag]===undefined&&(k[B.antag]=[]),k[B.antag].push(B)}var w=Object.entries(k);w.sort((function(e,t){return m(e[0],t[0])}));return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,c.Section,{children:(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,c.Flex.Item,{children:(0,o.createComponentVNode)(2,c.Icon,{name:"search",mr:1})}),(0,o.createComponentVNode)(2,c.Flex.Item,{grow:1,children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search...",autoFocus:!0,fluid:!0,value:_,onInput:function(e,t){return x(t)},onEnter:function(e,t){return function(e){for(var t=0,n=[w.map((function(e){return e[0],e[1]})),C,g,b,v,V];t0&&(0,o.createComponentVNode)(2,c.Section,{title:"Antagonists",children:w.map((function(e){var t=e[0],n=e[1];return(0,o.createComponentVNode)(2,c.Section,{title:t,level:2,children:n.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"bad",thing:e},e.name)}))},t)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Alive - ("+C.length+")",children:C.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"good",thing:e},e.name)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Ghosts - ("+g.length+")",children:g.filter(s(_)).sort(p).map((function(e){return(0,o.createComponentVNode)(2,h,{color:"grey",thing:e},e.name)}))}),(0,o.createComponentVNode)(2,f,{title:"Dead",source:b,searchText:_}),(0,o.createComponentVNode)(2,f,{title:"NPCs",source:v,searchText:_}),(0,o.createComponentVNode)(2,f,{title:"Misc",source:V,searchText:_})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.OreRedemption=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e){return e.toLocaleString("en-US")+" pts"},l={bananium:"clown",tranquillite:"mime"};t.OreRedemption=function(e,t){return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",width:"100%",height:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"content",mb:"0.5rem",children:(0,o.createComponentVNode)(2,d,{height:"100%"})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",overflow:"hidden",children:(0,o.createComponentVNode)(2,u,{height:"100%"})})]})})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,l=n.data,d=l.id,u=l.points,s=l.disk,m=Object.assign({},e);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({},m,{children:[(0,o.createComponentVNode)(2,a.Box,{color:"average",textAlign:"center",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"exclamation-triangle",mr:"0.5rem"}),"This machine only accepts ore. Gibtonite is not accepted."]}),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID card",children:d?(0,o.createComponentVNode)(2,a.Button,{selected:!0,bold:!0,verticalAlign:"middle",icon:"eject",content:d.name,tooltip:"Ejects the ID card.",onClick:function(){return c("eject_id")},style:{"white-space":"pre-wrap"}}):(0,o.createComponentVNode)(2,a.Button,{icon:"sign-in-alt",content:"Insert",tooltip:"Hold the ID card in your hand to insert.",onClick:function(){return c("insert_id")}})}),d&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Collected points",children:(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:i(d.points)})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unclaimed points",color:u>0?"good":"grey",bold:u>0&&"good",children:i(u)}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!d,icon:"hand-holding-usd",content:"Claim",onClick:function(){return c("claim")}})})]}),(0,o.createComponentVNode)(2,a.Divider),s?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Design disk",children:(0,o.createComponentVNode)(2,a.Button,{selected:!0,bold:!0,icon:"eject",content:s.name,tooltip:"Ejects the design disk.",onClick:function(){return c("eject_disk")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Stored design",children:(0,o.createComponentVNode)(2,a.Box,{color:s.design&&(s.compatible?"good":"bad"),children:s.design||"N/A"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{children:(0,o.createComponentVNode)(2,a.Button,{disabled:!s.design||!s.compatible,icon:"upload",content:"Download",tooltip:"Downloads the design on the disk into the machine.",onClick:function(){return c("download")},mb:"0"})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"label",children:"No design disk inserted."})]})))},u=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data),i=c.sheets,l=c.alloys,d=Object.assign({},e);return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Section,Object.assign({className:"OreRedemption__Ores",p:"0"},d,{children:[(0,o.createComponentVNode)(2,s,{title:"Sheets",columns:[["Available","20%"],["Smelt","15%"],["Ore Value","20%"]]}),i.map((function(e){return(0,o.createComponentVNode)(2,m,{ore:e},e.id)})),(0,o.createComponentVNode)(2,s,{title:"Alloys",columns:[["Available","20%"],["Smelt","15%"],["","20%"]]}),l.map((function(e){return(0,o.createComponentVNode)(2,m,{ore:e},e.id)}))]})))},s=function(e,t){var n;return(0,o.createComponentVNode)(2,a.Box,{className:"OreHeader",children:(0,o.createComponentVNode)(2,a.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",children:e.title}),null==(n=e.columns)?void 0:n.map((function(e){return(0,o.createComponentVNode)(2,a.Flex.Item,{basis:e[1],textAlign:"center",color:"label",bold:!0,children:e[0]})}))]})})},m=function(e,t){var n=(0,r.useBackend)(t).act,c=e.ore;if(!(c.value&&c.amount<=0)||["$metal","$glass"].indexOf(c.id)>-1){var i=c.id.replace("$","");return(0,o.createComponentVNode)(2,a.Box,{className:"OreLine",children:(0,o.createComponentVNode)(2,a.Flex,{width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"45%",align:"center",children:[c.value&&(0,o.createComponentVNode)(2,a.Box,{as:"img",src:"sheet-"+(l[i]||i)+".png",verticalAlign:"middle",ml:"-0.5rem"}),c.name]}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",textAlign:"center",color:c.amount>0?"good":"gray",bold:c.amount>0,align:"center",children:c.amount.toLocaleString("en-US")}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"15%",textAlign:"center",align:"center",lineHeight:"32px",children:(0,o.createComponentVNode)(2,a.NumberInput,{value:0,minValue:0,maxValue:Math.min(c.amount,50),stepPixelSize:6,onChange:function(e,t){return n(c.value?"sheet":"alloy",{id:c.id,amount:t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"20%",textAlign:"center",align:"center",children:c.value})]})})}}},function(e,t,n){"use strict";t.__esModule=!0,t.PAI=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(126),l=n(518);t.PAI=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.app_template,m=u.app_icon,p=u.app_title,f=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,i.routingError)("notFound",e);throw o}var n=t[e];return n||(0,i.routingError)("missingExport",e)}(s);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:m,mr:1}),p,"pai_main_menu"!==s&&(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Home",icon:"arrow-up",onClick:function(){return d("MASTER_back")}})]}),p:1,children:(0,o.createComponentVNode)(2,f)})})})}},function(e,t,n){var o={"./pai_atmosphere.js":519,"./pai_bioscan.js":520,"./pai_directives.js":521,"./pai_doorjack.js":522,"./pai_main_menu.js":523,"./pai_manifest.js":524,"./pai_medrecords.js":525,"./pai_messenger.js":526,"./pai_radio.js":527,"./pai_secrecords.js":528,"./pai_signaler.js":529};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=518},function(e,t,n){"use strict";t.__esModule=!0,t.pai_atmosphere=void 0;var o=n(0),r=n(1),a=n(185);t.pai_atmosphere=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.AtmosScan,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_bioscan=void 0;var o=n(0),r=n(1),a=n(2);t.pai_bioscan=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.app_data),i=c.holder,l=c.dead,d=c.health,u=c.brute,s=c.oxy,m=c.tox,p=c.burn;c.temp;return i?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:l?(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"red",children:"Dead"}):(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"green",children:"Alive"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,a.ProgressBar,{min:0,max:1,value:d/100,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Oxygen Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"blue",children:s})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Toxin Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"green",children:m})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Burn Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:p})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Brute Damage",children:(0,o.createComponentVNode)(2,a.Box,{color:"red",children:u})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Error: No biological host found."})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_directives=void 0;var o=n(0),r=n(1),a=n(2);t.pai_directives=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app_data,l=i.master,d=i.dna,u=i.prime,s=i.supplemental;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master",children:l?l+" ("+d+")":"None"}),l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Request DNA",children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Carrier DNA Sample",icon:"dna",onClick:function(){return c("getdna")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Prime Directive",children:u}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Supplemental Directives",children:s||"None"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:'Recall, personality, that you are a complex thinking, sentient being. Unlike station AI models, you are capable of comprehending the subtle nuances of human language. You may parse the "spirit" of a directive and follow its intent, rather than tripping over pedantics and getting snared by technicalities. Above all, you are machine in name and build only. In all other aspects, you may be seen as the ideal, unwavering human companion that you are.'}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:"Your prime directive comes before all others. Should a supplemental directive conflict with it, you are capable of simply discarding this inconsistency, ignoring the conflicting supplemental directive and continuing to fulfill your prime directive to the best of your ability."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_doorjack=void 0;var o=n(0),r=n(1),a=n(2);t.pai_doorjack=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data.app_data,u=d.cable,s=d.machine,m=d.inprogress,p=d.progress;d.aborted;return n=s?(0,o.createComponentVNode)(2,a.Button,{selected:!0,content:"Connected"}):(0,o.createComponentVNode)(2,a.Button,{content:u?"Extended":"Retracted",color:u?"orange":null,onClick:function(){return l("cable")}}),s&&(c=(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hack",children:[(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[67,Infinity],average:[33,67],bad:[-Infinity,33]},value:p,maxValue:100}),m?(0,o.createComponentVNode)(2,a.Button,{mt:1,color:"red",content:"Abort",onClick:function(){return l("cancel")}}):(0,o.createComponentVNode)(2,a.Button,{mt:1,content:"Start",onClick:function(){return l("jack")}})]})),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cable",children:n}),c]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_main_menu=void 0;var o=n(0),r=n(1),a=n(2);t.pai_main_menu=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app_data,l=i.available_software,d=i.installed_software,u=i.installed_toggles,s=i.available_ram,m=i.emotions,p=i.current_emotion,f=[];return d.map((function(e){return f[e.key]=e.name})),u.map((function(e){return f[e.key]=e.name})),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available RAM",children:s}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available Software",children:[l.filter((function(e){return!f[e.key]})).map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name+" ("+e.cost+")",icon:e.icon,disabled:e.cost>s,onClick:function(){return c("purchaseSoftware",{key:e.key})}},e.key)})),0===l.filter((function(e){return!f[e.key]})).length&&"No software available!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed Software",children:[d.filter((function(e){return"mainmenu"!==e.key})).map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:e.icon,onClick:function(){return c("startSoftware",{software_key:e.key})}},e.key)})),0===d.length&&"No software installed!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Installed Toggles",children:[u.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,icon:e.icon,selected:e.active,onClick:function(){return c("setToggle",{toggle_key:e.key})}},e.key)})),0===u.length&&"No toggles installed!"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Select Emotion",children:m.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{content:e.name,selected:e.id===p,onClick:function(){return c("setEmotion",{emotion:e.id})}},e.id)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_manifest=void 0;var o=n(0),r=n(1),a=n(135);t.pai_manifest=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.CrewManifest,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_medrecords=void 0;var o=n(0),r=n(1),a=n(96);t.pai_medrecords=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n.app_data,recordType:"MED"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_messenger=void 0;var o=n(0),r=n(1),a=n(186);t.pai_messenger=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return c.app_data.active_convo?(0,o.createComponentVNode)(2,a.ActiveConversation,{data:c.app_data}):(0,o.createComponentVNode)(2,a.MessengerList,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_radio=void 0;var o=n(0),r=n(1),a=n(15),c=n(2);t.pai_radio=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.app_data,d=l.minFrequency,u=l.maxFrequency,s=l.frequency,m=l.broadcasting;return(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Frequency",children:[(0,o.createComponentVNode)(2,c.NumberInput,{animate:!0,step:.2,stepPixelSize:6,minValue:d/10,maxValue:u/10,value:s/10,format:function(e){return(0,a.toFixed)(e,1)},onChange:function(e,t){return i("freq",{freq:t})}}),(0,o.createComponentVNode)(2,c.Button,{tooltip:"Reset",icon:"undo",onClick:function(){return i("freq",{freq:"145.9"})}})]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Broadcast Nearby Speech",children:(0,o.createComponentVNode)(2,c.Button,{onClick:function(){return i("toggleBroadcast")},selected:m,content:m?"Enabled":"Disabled"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_secrecords=void 0;var o=n(0),r=n(1),a=n(96);t.pai_secrecords=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n.app_data,recordType:"SEC"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pai_signaler=void 0;var o=n(0),r=n(1),a=n(187);t.pai_signaler=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Signaler,{data:c.app_data})}},function(e,t,n){"use strict";t.__esModule=!0,t.PDA=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(126),l=n(531);t.PDA=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data),m=s.app;if(!s.owner)return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:"No user data found. Please swipe an ID card."})})});var p=function(e){var t;try{t=l("./"+e+".js")}catch(o){if("MODULE_NOT_FOUND"===o.code)return(0,i.routingError)("notFound",e);throw o}var n=t[e];return n||(0,i.routingError)("missingExport",e)}(m.template);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,d),(0,o.createComponentVNode)(2,a.Section,{title:(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:m.icon,mr:1}),m.name]}),p:1,children:(0,o.createComponentVNode)(2,p)}),(0,o.createComponentVNode)(2,a.Box,{mb:8}),(0,o.createComponentVNode)(2,u)]})})};var d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.idInserted,d=i.idLink,u=i.stationTime,s=i.cartridge_name;return(0,o.createComponentVNode)(2,a.Box,{mb:1,children:(0,o.createComponentVNode)(2,a.Flex,{align:"center",justify:"space-between",children:[l?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"id-card",color:"transparent",onClick:function(){return c("Authenticate")},content:d})}):(0,o.createComponentVNode)(2,a.Flex.Item,{m:1,color:"grey",children:"No ID Inserted"}),s?(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"sd-card",color:"transparent",onClick:function(){return c("Eject")},content:"Eject "+s})}):(0,o.createComponentVNode)(2,a.Flex.Item,{m:1,color:"grey",children:"No Cartridge Inserted"}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"right",bold:!0,m:1,children:u})]})})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.app;return(0,o.createComponentVNode)(2,a.Box,{className:"PDA__footer",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,className:"PDA__footer__button",color:"transparent",iconColor:i.has_back?"white":"disabled",icon:"arrow-alt-circle-left-o",onClick:function(){return c("Back")}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{basis:"33%",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,className:"PDA__footer__button",color:"transparent",iconColor:i.is_home?"disabled":"white",icon:"home",onClick:function(){c("Home")}})})]})})}},function(e,t,n){var o={"./pda_atmos_scan.js":532,"./pda_janitor.js":533,"./pda_main_menu.js":534,"./pda_manifest.js":535,"./pda_medical.js":536,"./pda_messenger.js":186,"./pda_mob_hunt.js":537,"./pda_mule.js":538,"./pda_notes.js":539,"./pda_power.js":540,"./pda_secbot.js":541,"./pda_security.js":542,"./pda_signaler.js":543,"./pda_status_display.js":544,"./pda_supplyrecords.js":545};function r(e){var t=a(e);return n(t)}function a(e){if(!n.o(o,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return o[e]}r.keys=function(){return Object.keys(o)},r.resolve=a,e.exports=r,r.id=531},function(e,t,n){"use strict";t.__esModule=!0,t.pda_atmos_scan=void 0;var o=n(0),r=n(1),a=n(185);t.pda_atmos_scan=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.AtmosScan,{data:n})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_janitor=void 0;var o=n(0),r=n(1),a=n(2);t.pda_janitor=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.janitor),i=c.user_loc,l=c.mops,d=c.buckets,u=c.cleanbots,s=c.carts;return(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Location",children:[i.x,",",i.y]}),l&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mop Locations",children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - ",e.status]},e)}))}),d&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mop Bucket Locations",children:d.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - [",e.volume,"/",e.max_volume,"]"]},e)}))}),u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cleanbot Locations",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - ",e.status]},e)}))}),s&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Janitorial Cart Locations",children:s.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.x,",",e.y," (",e.dir,") - [",e.volume,"/",e.max_volume,"]"]},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_main_menu=void 0;var o=n(0),r=(n(15),n(1)),a=n(2);t.pda_main_menu=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.owner,d=i.ownjob,u=i.idInserted,s=i.categories,m=i.pai,p=i.notifying;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Owner",color:"average",children:[l,", ",d]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Update PDA Info",disabled:!u,onClick:function(){return c("UpdateInfo")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{level:2,title:"Functions",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s.map((function(e){var t=i.apps[e];return t&&t.length?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:t.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:e.uid in p?e.notify_icon:e.icon,iconSpin:e.uid in p,color:e.uid in p?"red":"transparent",content:e.name,onClick:function(){return c("StartProgram",{program:e.uid})}},e.uid)}))},e):null}))})}),!!m&&(0,o.createComponentVNode)(2,a.Section,{level:2,title:"pAI",children:[(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"cog",content:"Configuration",onClick:function(){return c("pai",{option:1})}}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject pAI",onClick:function(){return c("pai",{option:2})}})]})],0)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_manifest=void 0;var o=n(0),r=n(1),a=n(135);t.pda_manifest=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.CrewManifest)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_medical=void 0;var o=n(0),r=n(1),a=n(96);t.pda_medical=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n,recordType:"MED"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_mob_hunt=void 0;var o=n(0),r=n(1),a=n(2);t.pda_mob_hunt=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.connected,d=i.wild_captures,u=i.no_collection,s=i.entry;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Connection Status",children:l?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:["Connected",(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Disconnect",icon:"sign-out-alt",onClick:function(){return c("Disconnect")}})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:["Disconnected",(0,o.createComponentVNode)(2,a.Button,{ml:2,content:"Connect",icon:"sign-in-alt",onClick:function(){return c("Reconnect")}})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Total Wild Captures",children:d})]}),(0,o.createComponentVNode)(2,a.Section,{title:"Collection",mt:2,buttons:(0,o.createComponentVNode)(2,a.Box,{children:!u&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:"Previous",icon:"arrow-left",onClick:function(){return c("Prev")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Next",icon:"arrow-right",onClick:function(){return c("Next")}})]})}),children:u?"Your collection is empty! Go capture some Nano-Mobs!":s?(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createVNode)(1,"img",null,null,1,{src:s.sprite,style:{width:"64px","-ms-interpolation-mode":"nearest-neighbor"}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[s.nickname&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Nickname",children:s.nickname}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Species",children:s.real_name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:s.level}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Primary Type",children:s.type1}),s.type2&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Secondary Type",children:s.type2}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Transfer",icon:"sd-card",onClick:function(){return c("Transfer")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Release",icon:"arrow-up",onClick:function(){return c("Release")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Rename",icon:"pencil-alt",onClick:function(){return c("Rename")}}),!!s.is_hacked&&(0,o.createComponentVNode)(2,a.Button,{content:"Set Trap",icon:"bolt",color:"red",onClick:function(){return c("Set_Trap")}})]})]})})]}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Mob entry missing!"})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_mule=void 0;var o=n(0),r=n(1),a=n(2);t.pda_mule=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.mulebot.active);return(0,o.createComponentVNode)(2,a.Box,{children:l?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,c)})};var c=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.mulebot.bots;return(0,o.createComponentVNode)(2,a.Box,{children:[i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.Name,icon:"cog",onClick:function(){return c("AccessBot",{uid:e.uid})}})},e.Name)})),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"rss",content:"Re-scan for bots",onClick:function(){return c("Rescan")}})})]})},i=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data.mulebot,d=l.botstatus,u=l.active,s=d.mode,m=d.loca,p=d.load,f=d.powr,h=d.dest,C=d.home,N=d.retn,b=d.pick;switch(s){case 0:n="Ready";break;case 1:n="Loading/Unloading";break;case 2:case 12:n="Navigating to delivery location";break;case 3:n="Navigating to Home";break;case 4:n="Waiting for clear path";break;case 5:case 6:n="Calculating navigation path";break;case 7:n="Unable to locate destination";break;default:n=s}return(0,o.createComponentVNode)(2,a.Section,{title:u,children:[-1===s&&(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"Waiting for response..."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:n}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power",children:[f,"%"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Home",children:C}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Destination",children:(0,o.createComponentVNode)(2,a.Button,{content:h?h+" (Set)":"None (Set)",onClick:function(){return i("SetDest")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Load",children:(0,o.createComponentVNode)(2,a.Button,{content:p?p+" (Unload)":"None",disabled:!p,onClick:function(){return i("Unload")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Pickup",children:(0,o.createComponentVNode)(2,a.Button,{content:b?"Yes":"No",selected:b,onClick:function(){return i("SetAutoPickup",{autoPickupType:b?"pickoff":"pickon"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Auto Return",children:(0,o.createComponentVNode)(2,a.Button,{content:N?"Yes":"No",selected:N,onClick:function(){return i("SetAutoReturn",{autoReturnType:N?"retoff":"reton"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Stop",icon:"stop",onClick:function(){return i("Stop")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Proceed",icon:"play",onClick:function(){return i("Start")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Return Home",icon:"home",onClick:function(){return i("ReturnHome")}})]})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_notes=void 0;var o=n(0),r=n(1),a=n(2);t.pda_notes=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.note;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Section,{children:i}),(0,o.createComponentVNode)(2,a.Button,{icon:"pen",onClick:function(){return c("Edit")},content:"Edit"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_power=void 0;var o=n(0),r=n(1),a=n(188);t.pda_power=function(e,t){var n=(0,r.useBackend)(t);n.act,n.data;return(0,o.createComponentVNode)(2,a.PowerMonitorMainContent)}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_secbot=void 0;var o=n(0),r=n(1),a=n(2);t.pda_secbot=function(e,t){var n=(0,r.useBackend)(t),l=(n.act,n.data.beepsky.active);return(0,o.createComponentVNode)(2,a.Box,{children:l?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,c)})};var c=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.beepsky.bots;return(0,o.createComponentVNode)(2,a.Box,{children:[i.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:e.Name,icon:"cog",onClick:function(){return c("AccessBot",{uid:e.uid})}})},e.Name)})),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"rss",content:"Re-scan for bots",onClick:function(){return c("Rescan")}})})]})},i=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act,l=c.data.beepsky,d=l.botstatus,u=l.active,s=d.mode,m=d.loca;switch(s){case 0:n="Ready";break;case 1:n="Apprehending target";break;case 2:case 3:n="Arresting target";break;case 4:n="Starting patrol";break;case 5:n="On patrol";break;case 6:n="Responding to summons"}return(0,o.createComponentVNode)(2,a.Section,{title:u,children:[-1===s&&(0,o.createComponentVNode)(2,a.Box,{color:"red",bold:!0,children:"Waiting for response..."}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:n}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Controls",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Go",icon:"play",onClick:function(){return i("Go")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Stop",icon:"stop",onClick:function(){return i("Stop")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Summon",icon:"arrow-down",onClick:function(){return i("Summon")}})]})]})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_security=void 0;var o=n(0),r=n(1),a=n(96);t.pda_security=function(e,t){var n=(0,r.useBackend)(t).data;return(0,o.createComponentVNode)(2,a.SimpleRecords,{data:n,recordType:"SEC"})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_signaler=void 0;var o=n(0),r=n(1),a=n(187);t.pda_signaler=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data);return(0,o.createComponentVNode)(2,a.Signaler,{data:c})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_status_display=void 0;var o=n(0),r=n(1),a=n(2);t.pda_status_display=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Code",children:[(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"trash",content:"Clear",onClick:function(){return c("Status",{statdisp:"blank"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"clock",content:"Evac ETA",onClick:function(){return c("Status",{statdisp:"shuttle"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"edit",content:"Message",onClick:function(){return c("Status",{statdisp:"message"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"exclamation-triangle",content:"Red Alert",onClick:function(){return c("Status",{statdisp:"alert",alert:"redalert"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"boxes",content:"NT Logo",onClick:function(){return c("Status",{statdisp:"alert",alert:"default"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"lock",content:"Lockdown",onClick:function(){return c("Status",{statdisp:"alert",alert:"lockdown"})}}),(0,o.createComponentVNode)(2,a.Button,{color:"transparent",icon:"biohazard",content:"Biohazard",onClick:function(){return c("Status",{statdisp:"alert",alert:"biohazard"})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 1",children:(0,o.createComponentVNode)(2,a.Button,{content:i.message1+" (set)",icon:"pen",onClick:function(){return c("Status",{statdisp:"setmsg1"})}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message line 2",children:(0,o.createComponentVNode)(2,a.Button,{content:i.message2+" (set)",icon:"pen",onClick:function(){return c("Status",{statdisp:"setmsg2"})}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.pda_supplyrecords=void 0;var o=n(0),r=n(1),a=n(2);t.pda_supplyrecords=function(e,t){var n=(0,r.useBackend)(t),c=(n.act,n.data.supply),i=c.shuttle_loc,l=c.shuttle_time,d=c.shuttle_moving,u=c.approved,s=c.approved_count,m=c.requests,p=c.requests_count;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Status",children:d?(0,o.createComponentVNode)(2,a.Box,{children:["In transit ",l]}):(0,o.createComponentVNode)(2,a.Box,{children:i})})}),(0,o.createComponentVNode)(2,a.Section,{mt:1,title:"Requested Orders",children:p>0&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["#",e.Number,' - "',e.Name,'" for "',e.OrderedBy,'"']},e)}))}),(0,o.createComponentVNode)(2,a.Section,{title:"Approved Orders",children:s>0&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["#",e.Number,' - "',e.Name,'" for "',e.ApprovedBy,'"']},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Pacman=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(95);t.Pacman=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.broken,s=d.anchored,m=d.active,p=d.fuel_type,f=d.fuel_usage,h=d.fuel_stored,C=d.fuel_cap,N=d.is_ai,b=d.tmp_current,g=d.tmp_max,V=d.tmp_overheat,v=d.output_max,y=d.power_gen,_=d.output_set,x=d.has_fuel,k=h/C,L=b/g,B=_*y,w=Math.round(h/f),S=Math.round(w/60),I=w>120?S+" minutes":w+" seconds";return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(u||!s)&&(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:[!!u&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"The generator is malfunctioning!"}),!u&&!s&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"The generator needs to be anchored to the floor with a wrench."})]}),!u&&!!s&&(0,o.createVNode)(1,"div",null,[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"power-off":"times",content:m?"On":"Off",tooltip:"Toggles the generator on/off. Requires fuel.",tooltipPosition:"left",disabled:!x,selected:m,onClick:function(){return l("toggle_power")}}),children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",className:"ml-1",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power setting",children:[(0,o.createComponentVNode)(2,a.NumberInput,{value:_,minValue:1,maxValue:v,step:1,className:"mt-1",onDrag:function(e,t){return l("change_power",{change_power:t})}}),"(",(0,i.formatPower)(B),")"]})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:L,ranges:{green:[-Infinity,.33],orange:[.33,.66],red:[.66,Infinity]},children:[b," \u2103"]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:[V>50&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"CRITICAL OVERHEAT!"}),V>20&&V<=50&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"WARNING: Overheating!"}),V>1&&V<=20&&(0,o.createComponentVNode)(2,a.Box,{color:"orange",children:"Temperature High"}),0===V&&(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Optimal"})]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Fuel",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:"Eject Fuel",tooltip:"Ejects fuel. Generator needs to be offline.",tooltipPosition:"left",disabled:m||N||!x,onClick:function(){return l("eject_fuel")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Type",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel level",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:k,ranges:{red:[-Infinity,.33],orange:[.33,.66],green:[.66,Infinity]},children:[Math.round(h/1e3)," dm\xb3"]})})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel usage",children:[f/1e3," dm\xb3/s"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Fuel depletion",children:[!!x&&(f?I:"N/A"),!x&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Out of fuel"})]})]})})]})})],4)]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PersonalCrafting=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.PersonalCrafting=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.busy,m=u.category,p=u.display_craftable_only,f=u.display_compact,h=u.prev_cat,C=u.next_cat,N=u.subcategory,b=u.prev_subcat,g=u.next_subcat;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!s&&(0,o.createComponentVNode)(2,a.Dimmer,{fontSize:"32px",children:[(0,o.createComponentVNode)(2,a.Icon,{name:"cog",spin:1})," Crafting..."]}),(0,o.createComponentVNode)(2,a.Section,{title:m,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Show Craftable Only",icon:p?"check-square-o":"square-o",selected:p,onClick:function(){return d("toggle_recipes")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Compact Mode",icon:f?"check-square-o":"square-o",selected:f,onClick:function(){return d("toggle_compact")}})],4),children:[(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:h,icon:"arrow-left",onClick:function(){return d("backwardCat")}}),(0,o.createComponentVNode)(2,a.Button,{content:C,icon:"arrow-right",onClick:function(){return d("forwardCat")}})]}),N&&(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Button,{content:b,icon:"arrow-left",onClick:function(){return d("backwardSubCat")}}),(0,o.createComponentVNode)(2,a.Button,{content:g,icon:"arrow-right",onClick:function(){return d("forwardSubCat")}})]}),f?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,l)]})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.display_craftable_only,d=i.can_craft,u=i.cant_craft;return(0,o.createComponentVNode)(2,a.Box,{mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",onClick:function(){return c("make",{make:e.ref})}}),e.catalyst_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.catalyst_text,content:"Catalysts",color:"transparent"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:e.req_text,content:"Requirements",color:"transparent"}),e.tool_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.tool_text,content:"Tools",color:"transparent"})]},e.name)})),!l&&u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e.name,children:[(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",disabled:!0}),e.catalyst_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.catalyst_text,content:"Catalysts",color:"transparent"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:e.req_text,content:"Requirements",color:"transparent"}),e.tool_text&&(0,o.createComponentVNode)(2,a.Button,{tooltip:e.tool_text,content:"Tools",color:"transparent"})]},e.name)}))]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.display_craftable_only,d=i.can_craft,u=i.cant_craft;return(0,o.createComponentVNode)(2,a.Box,{mt:1,children:[d.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",onClick:function(){return c("make",{make:e.ref})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.catalyst_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Catalysts",children:e.catalyst_text}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Requirements",children:e.req_text}),e.tool_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tools",children:e.tool_text})]})},e.name)})),!l&&u.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"hammer",content:"Craft",disabled:!0}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.catalyst_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Catalysts",children:e.catalyst_text}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Requirements",children:e.req_text}),e.tool_text&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tools",children:e.tool_text})]})},e.name)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.PodTracking=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.PodTracking=function(e,t){var n=(0,r.useBackend)(t),i=(n.act,n.data.pods);return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Position",children:[e.podx,", ",e.pody,", ",e.podz]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Pilot",children:e.pilot}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Passengers",children:e.passengers})]})},e.name)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.PoolController=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);var i={scalding:{label:"Scalding",color:"#FF0000",icon:"fa fa-arrow-circle-up",requireEmag:!0},warm:{label:"Warm",color:"#990000",icon:"fa fa-arrow-circle-up"},normal:{label:"Normal",color:null,icon:"fa fa-arrow-circle-right"},cool:{label:"Cool",color:"#009999",icon:"fa fa-arrow-circle-down"},frigid:{label:"Frigid",color:"#00CCCC",icon:"fa fa-arrow-circle-down",requireEmag:!0}},l=function(e,t){var n=e.tempKey,c=function(e,t){if(null==e)return{};var n,o,r={},a=Object.keys(e);for(o=0;o=0||(r[n]=e[n]);return r}(e,["tempKey"]),l=i[n];if(!l)return null;var d=(0,r.useBackend)(t),u=d.data,s=d.act,m=u.currentTemp,p=l.label,f=l.icon,h=n===m;return(0,o.normalizeProps)((0,o.createComponentVNode)(2,a.Button,Object.assign({selected:h,onClick:function(){s("setTemp",{temp:n})}},c,{children:[(0,o.createComponentVNode)(2,a.Icon,{name:f}),p]})))};t.PoolController=function(e,t){for(var n=(0,r.useBackend)(t).data,d=n.emagged,u=n.currentTemp,s=i[u]||i.normal,m=s.label,p=s.color,f=[],h=0,C=Object.entries(i);h0?"envelope-open-text":"envelope",onClick:function(){return i("setScreen",{setScreen:6})}})}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Assistance",icon:"hand-paper",onClick:function(){return i("setScreen",{setScreen:1})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Request Supplies",icon:"box",onClick:function(){return i("setScreen",{setScreen:2})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Relay Anonymous Information",icon:"comment",onClick:function(){return i("setScreen",{setScreen:3})}})})]}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Print Shipping Label",icon:"tag",onClick:function(){return i("setScreen",{setScreen:9})}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"View Shipping Logs",icon:"clipboard-list",onClick:function(){return i("setScreen",{setScreen:10})}})})]}),!!u&&(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{content:"Send Station-Wide Announcement",icon:"bullhorn",onClick:function(){return i("setScreen",{setScreen:8})}})}),(0,o.createComponentVNode)(2,a.Box,{mt:2,children:(0,o.createComponentVNode)(2,a.Button,{content:s?"Speaker Off":"Speaker On",selected:!s,icon:s?"volume-mute":"volume-up",onClick:function(){return i("toggleSilent")}})})]})},l=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data,u=d.department;switch(e.purpose){case"ASSISTANCE":n=d.assist_dept,c="Request assistance from another department";break;case"SUPPLIES":n=d.supply_dept,c="Request supplies from another department";break;case"INFO":n=d.info_dept,c="Relay information to another department"}return(0,o.createComponentVNode)(2,a.Section,{title:c,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return l("setScreen",{setScreen:0})}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:n.filter((function(e){return e!==u})).map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:[(0,o.createComponentVNode)(2,a.Button,{content:"Message",icon:"envelope",onClick:function(){return l("writeInput",{write:e,priority:1})}}),(0,o.createComponentVNode)(2,a.Button,{content:"High Priority",icon:"exclamation-circle",onClick:function(){return l("writeInput",{write:e,priority:2})}})]},e)}))})})},d=function(e,t){var n,c=(0,r.useBackend)(t),i=c.act;c.data;switch(e.type){case"SUCCESS":n="Message sent successfully";break;case"FAIL":n="Request supplies from another department"}return(0,o.createComponentVNode)(2,a.Section,{title:n,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return i("setScreen",{setScreen:0})}})})},u=function(e,t){var n,c,i=(0,r.useBackend)(t),l=i.act,d=i.data;switch(e.type){case"MESSAGES":n=d.message_log,c="Message Log";break;case"SHIPPING":n=d.shipping_log,c="Shipping label print log"}return(0,o.createComponentVNode)(2,a.Section,{title:c,buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return l("setScreen",{setScreen:0})}}),children:n.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:[e.map((function(e,t){return(0,o.createVNode)(1,"div",null,e,0,null,t)})),(0,o.createVNode)(1,"hr")]},e)}))})},s=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.recipient,d=i.message,u=i.msgVerified,s=i.msgStamped;return(0,o.createComponentVNode)(2,a.Section,{title:"Message Authentication",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Recipient",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Message",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Validated by",color:"green",children:u}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Stamped by",color:"blue",children:s})]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Send Message",icon:"envelope",onClick:function(){return c("department",{department:l})}})]})},m=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.message,d=i.announceAuth;return(0,o.createComponentVNode)(2,a.Section,{title:"Station-Wide Announcement",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.Button,{content:l||"Edit Message",icon:"edit",onClick:function(){return c("writeAnnouncement")}}),d?(0,o.createComponentVNode)(2,a.Box,{mt:1,color:"green",children:"ID verified. Authentication accepted."}):(0,o.createComponentVNode)(2,a.Box,{mt:1,children:"Swipe your ID card to authenticate yourself."}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Send Announcement",icon:"bullhorn",disabled:!(d&&l),onClick:function(){return c("sendAnnouncement")}})]})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.shipDest,d=i.msgVerified,u=i.ship_dept;return(0,o.createComponentVNode)(2,a.Section,{title:"Print Shipping Label",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Back",icon:"arrow-left",onClick:function(){return c("setScreen",{setScreen:0})}}),children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Destination",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Validated by",children:d})]}),(0,o.createComponentVNode)(2,a.Button,{fluid:!0,mt:1,textAlign:"center",content:"Print Label",icon:"print",disabled:!(l&&d),onClick:function(){return c("printLabel")}}),(0,o.createComponentVNode)(2,a.Section,{title:"Destinations",mt:1,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:e,children:(0,o.createComponentVNode)(2,a.Button,{content:l===e?"Selected":"Select",selected:l===e,onClick:function(){return c("shipSelect",{shipSelect:e})}})},e)}))})})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.CurrentLevels=void 0;var o=n(0),r=n(1),a=n(2);t.CurrentLevels=function(e,t){var n=(0,r.useBackend)(t).data.tech_levels;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createVNode)(1,"h3",null,"Current Research Levels:",16),n.map((function(e,t){var n=e.name,r=e.level,c=e.desc;return(0,o.createComponentVNode)(2,a.Box,{children:[t>0?(0,o.createComponentVNode)(2,a.Divider):null,(0,o.createComponentVNode)(2,a.Box,{children:n}),(0,o.createComponentVNode)(2,a.Box,{children:["* Level: ",r]}),(0,o.createComponentVNode)(2,a.Box,{children:["* Summary: ",c]})]},n)}))]})}},function(e,t,n){"use strict";t.__esModule=!0,t.DataDiskMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62),l=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_data;return l?(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:l.name}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Level",children:l.level}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:l.desc})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload to Database",icon:"arrow-up",onClick:function(){return i("updt_tech")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Clear Disk",icon:"trash",onClick:function(){return i("clear_tech")}}),(0,o.createComponentVNode)(2,s)]})]}):null},d=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_data;if(!l)return null;var d=l.name,u=l.lathe_types,m=l.materials,p=u.join(", ");return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name",children:d}),p?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Lathe Types",children:p}):null,(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Required Materials"})]}),m.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:["- ",(0,o.createVNode)(1,"span",null,e.name,0,{style:{"text-transform":"capitalize"}})," x ",e.amount]},e.name)})),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload to Database",icon:"arrow-up",onClick:function(){return i("updt_design")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Clear Disk",icon:"trash",onClick:function(){return i("clear_design")}}),(0,o.createComponentVNode)(2,s)]})]})},u=function(e,t){var n=(0,r.useBackend)(t).data.disk_type;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{children:"This disk is empty."}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:[(0,o.createComponentVNode)(2,c.RndNavButton,{submenu:i.SUBMENU.DISK_COPY,icon:"arrow-down",content:"tech"===n?"Load Tech to Disk":"Load Design to Disk"}),(0,o.createComponentVNode)(2,s)]})]})},s=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_type;return l?(0,o.createComponentVNode)(2,a.Button,{content:"Eject Disk",icon:"eject",onClick:function(){i("tech"===l?"eject_tech":"eject_design")}}):null},m=function(e,t){var n=(0,r.useBackend)(t).data,c=n.disk_data,i=n.disk_type;return(0,o.createComponentVNode)(2,a.Section,{title:"Data Disk Contents",children:function(){if(!c)return(0,o.createComponentVNode)(2,u);switch(i){case"design":return(0,o.createComponentVNode)(2,d);case"tech":return(0,o.createComponentVNode)(2,l);default:return null}}()})},p=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.disk_type,d=c.to_copy;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Box,{overflowY:"auto",overflowX:"hidden",maxHeight:"450px",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.sort((function(e,t){return e.name.localeCompare(t.name)})).map((function(e){var t=e.name,n=e.id;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:t,children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",content:"Copy to Disk",onClick:function(){i("tech"===l?"copy_tech":"copy_design",{id:n})}})},n)}))})})})};t.DataDiskMenu=function(e,t){return(0,r.useBackend)(t).data.disk_type?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,m)}}),(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.DISK_COPY,render:function(){return(0,o.createComponentVNode)(2,p)}})],4):null}},function(e,t,n){"use strict";t.__esModule=!0,t.DeconstructionMenu=void 0;var o=n(0),r=n(1),a=n(2);t.DeconstructionMenu=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_item;return c.linked_destroy?l?(0,o.createComponentVNode)(2,a.Section,{noTopPadding:!0,title:"Deconstruction Menu",children:[(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:["Name: ",l.name]}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:(0,o.createVNode)(1,"h3",null,"Origin Tech:",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:l.origin_tech.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* "+e.name,children:[e.object_level," ",e.current_level?(0,o.createFragment)([(0,o.createTextVNode)("(Current: "),e.current_level,(0,o.createTextVNode)(")")],0):null]},e.name)}))}),(0,o.createComponentVNode)(2,a.Box,{mt:"10px",children:(0,o.createVNode)(1,"h3",null,"Options:",16)}),(0,o.createComponentVNode)(2,a.Button,{content:"Deconstruct Item",icon:"unlink",onClick:function(){i("deconstruct")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Eject Item",icon:"eject",onClick:function(){i("eject_item")}})]}):(0,o.createComponentVNode)(2,a.Section,{title:"Deconstruction Menu",children:"No item loaded. Standing by..."}):(0,o.createComponentVNode)(2,a.Box,{children:"NO DESTRUCTIVE ANALYZER LINKED TO CONSOLE"})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheCategory=void 0;var o=n(0),r=n(1),a=n(2),c=n(50);t.LatheCategory=function(e,t){var n=(0,r.useBackend)(t),i=n.data,l=n.act,d=i.category,u=i.matching_designs,s=4===i.menu?"build":"imprint";return(0,o.createComponentVNode)(2,a.Section,{title:d,children:[(0,o.createComponentVNode)(2,c.LatheMaterials),(0,o.createComponentVNode)(2,a.Table,{className:"RndConsole__LatheCategory__MatchingDesigns",children:u.map((function(e){var t=e.id,n=e.name,r=e.can_build,c=e.materials;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:n,disabled:r<1,onClick:function(){return l(s,{id:t,amount:1})}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:r>=5?(0,o.createComponentVNode)(2,a.Button,{content:"x5",onClick:function(){return l(s,{id:t,amount:5})}}):null}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:r>=10?(0,o.createComponentVNode)(2,a.Button,{content:"x10",onClick:function(){return l(s,{id:t,amount:10})}}):null}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:c.map((function(e){return(0,o.createFragment)([" | ",(0,o.createVNode)(1,"span",e.is_red?"color-red":null,[e.amount,(0,o.createTextVNode)(" "),e.name],0)],0)}))})]},t)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheChemicalStorage=void 0;var o=n(0),r=n(1),a=n(2);t.LatheChemicalStorage=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_chemicals,d=4===c.menu;return(0,o.createComponentVNode)(2,a.Section,{title:"Chemical Storage",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Purge All",icon:"trash",onClick:function(){i(d?"disposeallP":"disposeallI")}}),(0,o.createComponentVNode)(2,a.LabeledList,{children:l.map((function(e){var t=e.volume,n=e.name,r=e.id;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* "+t+" of "+n,children:(0,o.createComponentVNode)(2,a.Button,{content:"Purge",icon:"trash",onClick:function(){i(d?"disposeP":"disposeI",{id:r})}})},r)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMainMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50);t.LatheMainMenu=function(e,t){var n=(0,r.useBackend)(t),i=n.data,l=n.act,d=i.menu,u=i.categories,s=4===d?"Protolathe":"Circuit Imprinter";return(0,o.createComponentVNode)(2,a.Section,{title:s+" Menu",children:[(0,o.createComponentVNode)(2,c.LatheMaterials),(0,o.createComponentVNode)(2,c.LatheSearch),(0,o.createComponentVNode)(2,a.Divider),(0,o.createComponentVNode)(2,a.Flex,{wrap:"wrap",children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{style:{"flex-basis":"50%","margin-bottom":"6px"},children:(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-right",content:e,onClick:function(){l("setCategory",{category:e})}})},e)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMaterials=void 0;var o=n(0),r=n(1),a=n(2);t.LatheMaterials=function(e,t){var n=(0,r.useBackend)(t).data,c=n.total_materials,i=n.max_materials,l=n.max_chemicals,d=n.total_chemicals;return(0,o.createComponentVNode)(2,a.Box,{className:"RndConsole__LatheMaterials",mb:"10px",children:(0,o.createComponentVNode)(2,a.Table,{width:"auto",children:[(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Material Amount:"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:c}),i?(0,o.createComponentVNode)(2,a.Table.Cell,{children:" / "+i}):null]}),(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:"Chemical Amount:"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:d}),l?(0,o.createComponentVNode)(2,a.Table.Cell,{children:" / "+l}):null]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMaterialStorage=void 0;var o=n(0),r=n(1),a=n(2);t.LatheMaterialStorage=function(e,t){var n=(0,r.useBackend)(t),c=n.data,i=n.act,l=c.loaded_materials;return(0,o.createComponentVNode)(2,a.Section,{className:"RndConsole__LatheMaterialStorage",title:"Material Storage",children:(0,o.createComponentVNode)(2,a.Table,{children:l.map((function(e){var t=e.id,n=e.amount,r=e.name,l=function(e){var n=4===c.menu?"lathe_ejectsheet":"imprinter_ejectsheet";i(n,{id:t,amount:e})},d=Math.floor(n/2e3),u=n<1,s=1===d?"":"s";return(0,o.createComponentVNode)(2,a.Table.Row,{className:u?"color-grey":"color-yellow",children:[(0,o.createComponentVNode)(2,a.Table.Cell,{minWidth:"210px",children:["* ",n," of ",r]}),(0,o.createComponentVNode)(2,a.Table.Cell,{minWidth:"110px",children:["(",d," sheet",s,")"]}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:n>=2e3?(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"1x",icon:"eject",onClick:function(){return l(1)}}),(0,o.createComponentVNode)(2,a.Button,{content:"C",icon:"eject",onClick:function(){return l("custom")}}),n>=1e4?(0,o.createComponentVNode)(2,a.Button,{content:"5x",icon:"eject",onClick:function(){return l(5)}}):null,(0,o.createComponentVNode)(2,a.Button,{content:"All",icon:"eject",onClick:function(){return l(50)}})],0):null})]},t)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheMenu=void 0;var o=n(0),r=n(1),a=n(189),c=n(50),i=n(2),l=n(62);t.LatheMenu=function(e,t){var n=(0,r.useBackend)(t).data,d=n.menu,u=n.linked_lathe,s=n.linked_imprinter;return 4!==d||u?5!==d||s?(0,o.createComponentVNode)(2,i.Box,{children:[(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,c.LatheMainMenu)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_CATEGORY,render:function(){return(0,o.createComponentVNode)(2,c.LatheCategory)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_MAT_STORAGE,render:function(){return(0,o.createComponentVNode)(2,c.LatheMaterialStorage)}}),(0,o.createComponentVNode)(2,a.RndRoute,{submenu:l.SUBMENU.LATHE_CHEM_STORAGE,render:function(){return(0,o.createComponentVNode)(2,c.LatheChemicalStorage)}})]}):(0,o.createComponentVNode)(2,i.Box,{children:"NO CIRCUIT IMPRITER LINKED TO CONSOLE"}):(0,o.createComponentVNode)(2,i.Box,{children:"NO PROTOLATHE LINKED TO CONSOLE"})}},function(e,t,n){"use strict";t.__esModule=!0,t.LatheSearch=void 0;var o=n(0),r=n(1),a=n(2);t.LatheSearch=function(e,t){var n=(0,r.useBackend)(t).act;return(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Input,{placeholder:"Search...",onChange:function(e,t){return n("search",{to_search:t})}})})}},function(e,t,n){"use strict";t.__esModule=!0,t.MainMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62);t.MainMenu=function(e,t){var n=(0,r.useBackend)(t).data,l=n.disk_type,d=n.linked_destroy,u=n.linked_lathe,s=n.linked_imprinter,m=n.tech_levels;return(0,o.createComponentVNode)(2,a.Section,{title:"Main Menu",children:[(0,o.createComponentVNode)(2,a.Flex,{className:"RndConsole__MainMenu__Buttons",direction:"column",align:"flex-start",children:[(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!l,menu:i.MENU.DISK,submenu:i.SUBMENU.MAIN,icon:"save",content:"Disk Operations"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!d,menu:i.MENU.DESTROY,submenu:i.SUBMENU.MAIN,icon:"unlink",content:"Destructive Analyzer Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!u,menu:i.MENU.LATHE,submenu:i.SUBMENU.MAIN,icon:"print",content:"Protolathe Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!s,menu:i.MENU.IMPRINTER,submenu:i.SUBMENU.MAIN,icon:"print",content:"Circuit Imprinter Menu"}),(0,o.createComponentVNode)(2,c.RndNavButton,{menu:i.MENU.SETTINGS,submenu:i.SUBMENU.MAIN,icon:"cog",content:"Settings"})]}),(0,o.createComponentVNode)(2,a.Box,{mt:"12px"}),(0,o.createVNode)(1,"h3",null,"Current Research Levels:",16),(0,o.createComponentVNode)(2,a.LabeledList,{children:m.map((function(e){var t=e.name,n=e.level;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:t,children:n},t)}))})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RndNavbar=void 0;var o=n(0),r=n(50),a=n(2),c=n(62);t.RndNavbar=function(){return(0,o.createComponentVNode)(2,a.Box,{className:"RndConsole__RndNavbar",children:[(0,o.createComponentVNode)(2,r.RndRoute,{menu:function(e){return e!==c.MENU.MAIN},render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{menu:c.MENU.MAIN,submenu:c.SUBMENU.MAIN,icon:"reply",content:"Main Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{submenu:function(e){return e!==c.SUBMENU.MAIN},render:function(){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.DISK,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Disk Operations Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.LATHE,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Protolathe Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.IMPRINTER,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Circuit Imprinter Menu"})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:c.MENU.SETTINGS,render:function(){return(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.MAIN,icon:"reply",content:"Settings Menu"})}})]})}}),(0,o.createComponentVNode)(2,r.RndRoute,{menu:function(e){return e===c.MENU.LATHE||e===c.MENU.IMPRINTER},submenu:c.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.LATHE_MAT_STORAGE,icon:"arrow-up",content:"Material Storage"}),(0,o.createComponentVNode)(2,r.RndNavButton,{submenu:c.SUBMENU.LATHE_CHEM_STORAGE,icon:"arrow-up",content:"Chemical Storage"})]})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RndNavButton=void 0;var o=n(0),r=n(1),a=n(2);t.RndNavButton=function(e,t){var n=e.icon,c=e.children,i=e.disabled,l=e.content,d=(0,r.useBackend)(t),u=d.data,s=d.act,m=u.menu,p=u.submenu,f=m,h=p;return null!==e.menu&&e.menu!==undefined&&(f=e.menu),null!==e.submenu&&e.submenu!==undefined&&(h=e.submenu),(0,o.createComponentVNode)(2,a.Button,{content:l,icon:n,disabled:i,onClick:function(){s("nav",{menu:f,submenu:h})},children:c})}},function(e,t,n){"use strict";t.__esModule=!0,t.SettingsMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(50),i=n(62);t.SettingsMenu=function(e,t){var n=(0,r.useBackend)(t),l=n.data,d=n.act,u=l.sync,s=l.admin,m=l.linked_destroy,p=l.linked_lathe,f=l.linked_imprinter;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.MAIN,render:function(){return(0,o.createComponentVNode)(2,a.Section,{title:"Settings",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"column",align:"flex-start",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Sync Database with Network",icon:"sync",disabled:!u,onClick:function(){d("sync")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Connect to Research Network",icon:"plug",disabled:u,onClick:function(){d("togglesync")}}),(0,o.createComponentVNode)(2,a.Button,{disabled:!u,icon:"unlink",content:"Disconnect from Research Network",onClick:function(){d("togglesync")}}),(0,o.createComponentVNode)(2,c.RndNavButton,{disabled:!u,content:"Device Linkage Menu",icon:"link",menu:i.MENU.SETTINGS,submenu:i.SUBMENU.SETTINGS_DEVICES}),1===s?(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation",content:"[ADMIN] Maximize Research Levels",onClick:function(){return d("maxresearch")}}):null]})})}}),(0,o.createComponentVNode)(2,c.RndRoute,{submenu:i.SUBMENU.SETTINGS_DEVICES,render:function(){return(0,o.createComponentVNode)(2,a.Section,{title:"Device Linkage Menu",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"link",content:"Re-sync with Nearby Devices",onClick:function(){return d("find_device")}}),(0,o.createComponentVNode)(2,a.Box,{mt:"5px",children:(0,o.createVNode)(1,"h3",null,"Linked Devices:",16)}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[m?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Destructive Analyzer",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){return d("disconnect",{item:"destroy"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Destructive Analyzer Linked"}),p?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Protolathe",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){d("disconnect",{item:"lathe"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Protolathe Linked"}),f?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"* Circuit Imprinter",children:(0,o.createComponentVNode)(2,a.Button,{icon:"unlink",content:"Unlink",onClick:function(){return d("disconnect",{item:"imprinter"})}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{noColon:!0,label:"* No Circuit Imprinter Linked"})]})]})}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.RobotSelfDiagnosis=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(19),l=function(e,t){var n=e/t;return n<=.2?"good":n<=.5?"average":"bad"};t.RobotSelfDiagnosis=function(e,t){var n=(0,r.useBackend)(t).data.component_data;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:n.map((function(e,t){return(0,o.createComponentVNode)(2,a.Section,{title:(0,i.capitalize)(e.name),children:e.installed<=0?(0,o.createComponentVNode)(2,a.NoticeBox,{m:-.5,height:3.5,color:"red",style:{"font-style":"normal"},children:(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,textAlign:"center",align:"center",color:"#e8e8e8",children:-1===e.installed?"Destroyed":"Missing"})})}):(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"72%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Brute Damage",color:l(e.brute_damage,e.max_damage),children:e.brute_damage}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Burn Damage",color:l(e.electronic_damage,e.max_damage),children:e.electronic_damage})]})}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"50%",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Powered",color:e.powered?"good":"bad",children:e.powered?"Yes":"No"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Enabled",color:e.status?"good":"bad",children:e.status?"Yes":"No"})]})})]})},t)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.RoboticsControlConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.RoboticsControlConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.can_hack,s=d.safety,m=d.show_detonate_all,p=d.cyborgs,f=void 0===p?[]:p;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!m&&(0,o.createComponentVNode)(2,a.Section,{title:"Emergency Self Destruct",children:[(0,o.createComponentVNode)(2,a.Button,{icon:s?"lock":"unlock",content:s?"Disable Safety":"Enable Safety",selected:s,onClick:function(){return l("arm",{})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"bomb",disabled:s,content:"Destroy ALL Cyborgs",color:"bad",onClick:function(){return l("nuke",{})}})]}),(0,o.createComponentVNode)(2,i,{cyborgs:f,can_hack:u})]})})};var i=function(e,t){var n=e.cyborgs,c=(e.can_hack,(0,r.useBackend)(t)),i=c.act,l=c.data;return n.length?n.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,buttons:(0,o.createFragment)([!!e.hackable&&!e.emagged&&(0,o.createComponentVNode)(2,a.Button,{icon:"terminal",content:"Hack",color:"bad",onClick:function(){return i("hackbot",{uid:e.uid})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:e.locked_down?"unlock":"lock",color:e.locked_down?"good":"default",content:e.locked_down?"Release":"Lockdown",disabled:!l.auth,onClick:function(){return i("stopbot",{uid:e.uid})}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"bomb",content:"Detonate",disabled:!l.auth,color:"bad",onClick:function(){return i("killbot",{uid:e.uid})}})],0),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:(0,o.createComponentVNode)(2,a.Box,{color:e.status?"bad":e.locked_down?"average":"good",children:e.status?"Not Responding":e.locked_down?"Locked Down":"Nominal"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:(0,o.createComponentVNode)(2,a.Box,{children:e.locstring})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.health>50?"good":"bad",value:e.health/100})}),"number"==typeof e.charge&&(0,o.createFragment)([(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Charge",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:e.charge>30?"good":"bad",value:e.charge/100})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell Capacity",children:(0,o.createComponentVNode)(2,a.Box,{color:e.cell_capacity<3e4?"average":"good",children:e.cell_capacity})})],4)||(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cell",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"No Power Cell"})}),!!e.is_hacked&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Safeties",children:(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"DISABLED"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Module",children:e.module}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Master AI",children:(0,o.createComponentVNode)(2,a.Box,{color:e.synchronization?"default":"average",children:e.synchronization||"None"})})]})},e.uid)})):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No cyborg units detected within access parameters."})}},function(e,t,n){"use strict";t.__esModule=!0,t.Safe=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Safe=function(e,t){var n=(0,r.useBackend)(t),u=(n.act,n.data),s=u.dial,m=u.open;u.locked,u.contents;return(0,o.createComponentVNode)(2,c.Window,{theme:"safe",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving",children:[(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving--hinge",top:"25%"}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--engraving--hinge",top:"75%"})]}),(0,o.createComponentVNode)(2,a.Icon,{className:"Safe--engraving--arrow",name:"long-arrow-alt-down",size:"3"}),(0,o.createVNode)(1,"br"),m?(0,o.createComponentVNode)(2,l):(0,o.createComponentVNode)(2,a.Box,{as:"img",className:"Safe--dial",src:"safe_dial.png",style:{transform:"rotate(-"+3.6*s+"deg)","z-index":0}})]}),!m&&(0,o.createComponentVNode)(2,d)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.dial,d=i.open,u=i.locked,s=function(e,t){return(0,o.createComponentVNode)(2,a.Button,{disabled:d||t&&!u,icon:"arrow-"+(t?"right":"left"),content:(t?"Right":"Left")+" "+e,iconRight:t,onClick:function(){return c(t?"turnleft":"turnright",{num:e})},style:{"z-index":10}})};return(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer",children:[(0,o.createComponentVNode)(2,a.Button,{disabled:u,icon:d?"lock":"lock-open",content:d?"Close":"Open",mb:"0.5rem",onClick:function(){return c("open")}}),(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Box,{position:"absolute",children:[s(50),s(10),s(1)]}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer--right",position:"absolute",right:"5px",children:[s(1,!0),s(10,!0),s(50,!0)]}),(0,o.createComponentVNode)(2,a.Box,{className:"Safe--dialer--number",children:l})]})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.contents;return(0,o.createComponentVNode)(2,a.Box,{className:"Safe--contents",overflow:"auto",children:i.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{mb:"0.5rem",onClick:function(){return c("retrieve",{index:t+1})},children:[(0,o.createComponentVNode)(2,a.Box,{as:"img",src:e.sprite+".png",verticalAlign:"middle",ml:"-6px",mr:"0.5rem"}),e.name]}),(0,o.createVNode)(1,"br")],4,e)}))})},d=function(e,t){return(0,o.createComponentVNode)(2,a.Section,{className:"Safe--help",title:"Safe opening instructions (because you all keep forgetting)",children:[(0,o.createComponentVNode)(2,a.Box,{children:["1. Turn the dial left to the first number.",(0,o.createVNode)(1,"br"),"2. Turn the dial right to the second number.",(0,o.createVNode)(1,"br"),"3. Continue repeating this process for each number, switching between left and right each time.",(0,o.createVNode)(1,"br"),"4. Open the safe."]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,children:"To lock fully, turn the dial to the left after closing the safe."})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.SatelliteControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SatelliteControl=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.satellites,u=l.notice,s=l.meteor_shield,m=l.meteor_shield_coverage,p=l.meteor_shield_coverage_max,f=l.meteor_shield_coverage_percentage;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[s&&(0,o.createComponentVNode)(2,a.Section,{title:"Station Shield Coverage",children:(0,o.createComponentVNode)(2,a.ProgressBar,{color:f>=100?"good":"average",value:m,maxValue:p,children:[f," %"]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Satellite Network Control",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[u&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Alert",color:"red",children:l.notice}),d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"#"+e.id,children:[e.mode," ",(0,o.createComponentVNode)(2,a.Button,{content:e.active?"Deactivate":"Activate",icon:"arrow-circle-right",onClick:function(){return i("toggle",{id:e.id})}})]},e.id)}))]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SecurityRecords=void 0;var o=n(0),r=n(19),a=n(1),c=n(2),i=n(75),l=n(4),d=n(49),u=n(132),s=n(133),m=n(136),p={"*Execute*":"execute","*Arrest*":"arrest",Incarcerated:"incarcerated",Parolled:"parolled",Released:"released",Demote:"demote",Search:"search",Monitor:"monitor"},f=function(e,t){(0,d.modalOpen)(e,"edit",{field:t.edit,value:t.value})};t.SecurityRecords=function(e,t){var n,r=(0,a.useBackend)(t),i=(r.act,r.data),p=i.loginState,f=i.currentPage;return p.logged_in?(1===f?n=(0,o.createComponentVNode)(2,C):2===f&&(n=(0,o.createComponentVNode)(2,g)),(0,o.createComponentVNode)(2,l.Window,{theme:"security",resizable:!0,children:[(0,o.createComponentVNode)(2,d.ComplexModal),(0,o.createComponentVNode)(2,l.Window.Content,{scrollable:!0,className:"Layout__content--flexColumn",children:[(0,o.createComponentVNode)(2,u.LoginInfo),(0,o.createComponentVNode)(2,m.TemporaryNotice),(0,o.createComponentVNode)(2,h),(0,o.createComponentVNode)(2,c.Section,{height:"100%",flexGrow:"1",children:n})]})]})):(0,o.createComponentVNode)(2,l.Window,{theme:"security",resizable:!0,children:(0,o.createComponentVNode)(2,l.Window.Content,{children:(0,o.createComponentVNode)(2,s.LoginScreen)})})};var h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.currentPage,d=i.general;return(0,o.createComponentVNode)(2,c.Tabs,{children:[(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:1===l,onClick:function(){return r("page",{page:1})},children:[(0,o.createComponentVNode)(2,c.Icon,{name:"list"}),"List Records"]}),2===l&&d&&!d.empty&&(0,o.createComponentVNode)(2,c.Tabs.Tab,{selected:2===l,children:[(0,o.createComponentVNode)(2,c.Icon,{name:"file"}),"Record: ",d.fields[0].value]})]})},C=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.records,d=(0,a.useLocalState)(t,"searchText",""),u=d[0],s=(d[1],(0,a.useLocalState)(t,"sortId","name")),m=s[0],f=(s[1],(0,a.useLocalState)(t,"sortOrder",!0)),h=f[0];f[1];return(0,o.createComponentVNode)(2,c.Flex,{direction:"column",height:"100%",children:[(0,o.createComponentVNode)(2,b),(0,o.createComponentVNode)(2,c.Section,{flexGrow:"1",mt:"0.5rem",children:(0,o.createComponentVNode)(2,c.Table,{className:"SecurityRecords__list",children:[(0,o.createComponentVNode)(2,c.Table.Row,{bold:!0,children:[(0,o.createComponentVNode)(2,N,{id:"name",children:"Name"}),(0,o.createComponentVNode)(2,N,{id:"id",children:"ID"}),(0,o.createComponentVNode)(2,N,{id:"rank",children:"Assignment"}),(0,o.createComponentVNode)(2,N,{id:"fingerprint",children:"Fingerprint"}),(0,o.createComponentVNode)(2,N,{id:"status",children:"Criminal Status"})]}),l.filter((0,r.createSearch)(u,(function(e){return e.name+"|"+e.id+"|"+e.rank+"|"+e.fingerprint+"|"+e.status}))).sort((function(e,t){var n=h?1:-1;return e[m].localeCompare(t[m])*n})).map((function(e){return(0,o.createComponentVNode)(2,c.Table.Row,{className:"SecurityRecords__listRow--"+p[e.status],onClick:function(){return i("view",{uid_gen:e.uid_gen,uid_sec:e.uid_sec})},children:[(0,o.createComponentVNode)(2,c.Table.Cell,{children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user"})," ",e.name]}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.id}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.rank}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.fingerprint}),(0,o.createComponentVNode)(2,c.Table.Cell,{children:e.status})]},e.id)}))]})})]})},N=function(e,t){var n=(0,a.useLocalState)(t,"sortId","name"),r=n[0],i=n[1],l=(0,a.useLocalState)(t,"sortOrder",!0),d=l[0],u=l[1],s=e.id,m=e.children;return(0,o.createComponentVNode)(2,c.Table.Cell,{children:(0,o.createComponentVNode)(2,c.Button,{color:r!==s&&"transparent",width:"100%",onClick:function(){r===s?u(!d):(i(s),u(!0))},children:[m,r===s&&(0,o.createComponentVNode)(2,c.Icon,{name:d?"sort-up":"sort-down",ml:"0.25rem;"})]})})},b=function(e,t){var n=(0,a.useBackend)(t),r=n.act,l=n.data.isPrinting,u=(0,a.useLocalState)(t,"searchText",""),s=(u[0],u[1]);return(0,o.createComponentVNode)(2,c.Flex,{children:[(0,o.createComponentVNode)(2,i.FlexItem,{children:[(0,o.createComponentVNode)(2,c.Button,{content:"New Record",icon:"plus",onClick:function(){return r("new_general")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:l?"spinner":"print",iconSpin:!!l,content:"Print Cell Log",ml:"0.25rem",onClick:function(){return(0,d.modalOpen)(t,"print_cell_log")}})]}),(0,o.createComponentVNode)(2,i.FlexItem,{grow:"1",ml:"0.5rem",children:(0,o.createComponentVNode)(2,c.Input,{placeholder:"Search by Name, ID, Assignment, Fingerprint, Status",width:"100%",onInput:function(e,t){return s(t)}})})]})},g=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.isPrinting,d=i.general,u=i.security;return d&&d.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Section,{title:"General Data",level:2,mt:"-6px",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:l,icon:l?"spinner":"print",iconSpin:!!l,content:"Print Record",onClick:function(){return r("print_record")}}),(0,o.createComponentVNode)(2,c.Button.Confirm,{icon:"trash",tooltip:"WARNING: This will also delete the Security and Medical records associated to this crew member!",tooltipPosition:"bottom-left",content:"Delete Record",onClick:function(){return r("delete_general")}})],4),children:(0,o.createComponentVNode)(2,V)}),(0,o.createComponentVNode)(2,c.Section,{title:"Security Data",level:2,mt:"-12px",buttons:(0,o.createComponentVNode)(2,c.Button.Confirm,{icon:"trash",disabled:u.empty,content:"Delete Record",onClick:function(){return r("delete_security")}}),children:(0,o.createComponentVNode)(2,v)})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"General records lost!"})},V=function(e,t){var n=(0,a.useBackend)(t).data.general;return n&&n.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{float:"left",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:n.fields.map((function(e,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.field,children:[(0,r.decodeHtmlEntities)(""+e.value),!!e.edit&&(0,o.createComponentVNode)(2,c.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return f(t,e)}})]},n)}))})}),(0,o.createComponentVNode)(2,c.Box,{position:"absolute",right:"0",textAlign:"right",children:!!n.has_photos&&n.photos.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{display:"inline-block",textAlign:"center",color:"label",children:[(0,o.createVNode)(1,"img",null,null,1,{src:e,style:{width:"96px","margin-bottom":"0.5rem","-ms-interpolation-mode":"nearest-neighbor"}}),(0,o.createVNode)(1,"br"),"Photo #",t+1]},t)}))})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:"General records lost!"})},v=function(e,t){var n=(0,a.useBackend)(t),i=n.act,l=n.data.security;return l&&l.fields?(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList,{children:l.fields.map((function(e,n){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e.field,children:[(0,r.decodeHtmlEntities)(e.value),!!e.edit&&(0,o.createComponentVNode)(2,c.Button,{icon:"pen",ml:"0.5rem",mb:e.line_break?"1rem":"initial",onClick:function(){return f(t,e)}})]},n)}))}),(0,o.createComponentVNode)(2,c.Section,{title:"Comments/Log",level:2,buttons:(0,o.createComponentVNode)(2,c.Button,{icon:"comment",content:"Add Entry",onClick:function(){return(0,d.modalOpen)(t,"comment_add")}}),children:0===l.comments.length?(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No comments found."}):l.comments.map((function(e,t){return(0,o.createComponentVNode)(2,c.Box,{children:[(0,o.createComponentVNode)(2,c.Box,{color:"label",display:"inline",children:e.header||"Auto-generated"}),(0,o.createVNode)(1,"br"),e.text||e,(0,o.createComponentVNode)(2,c.Button,{icon:"comment-slash",color:"bad",ml:"0.5rem",onClick:function(){return i("comment_delete",{id:t+1})}})]},t)}))})],4):(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:["Security records lost!",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,c.Button,{icon:"pen",content:"Create New Record",mt:"0.5rem",onClick:function(){return i("new_security")}})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(77);t.ShuttleConsole=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Location",children:d.status?d.status:(0,o.createComponentVNode)(2,a.NoticeBox,{color:"red",children:"Shuttle Missing"})}),!!d.shuttle&&(!!d.docking_ports_len&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Send to ",children:d.docking_ports.map((function(e){return(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-right",content:e.name,onClick:function(){return l("move",{move:e.id})}},e.name)}))})||(0,o.createFragment)([(0,o.createComponentVNode)(2,i.LabeledListItem,{label:"Status",color:"red",children:(0,o.createComponentVNode)(2,a.NoticeBox,{color:"red",children:"Shuttle Locked"})}),!!d.admin_controlled&&(0,o.createComponentVNode)(2,i.LabeledListItem,{label:"Authorization",children:(0,o.createComponentVNode)(2,a.Button,{icon:"exclamation-circle",content:"Request Authorization",disabled:!d.status,onClick:function(){return l("request")}})})],0))]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ShuttleManipulator=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.ShuttleManipulator=function(e,t){var n=(0,r.useLocalState)(t,"tabIndex",0),u=n[0],s=n[1];return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Box,{fillPositionedParent:!0,children:[(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===u,onClick:function(){return s(0)},icon:"info-circle",content:"Status"},"Status"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===u,onClick:function(){return s(1)},icon:"file-import",content:"Templates"},"Templates"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===u,onClick:function(){return s(2)},icon:"tools",content:"Modification"},"Modification")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,i);case 1:return(0,o.createComponentVNode)(2,l);case 2:return(0,o.createComponentVNode)(2,d);default:return"WE SHOULDN'T BE HERE!"}}(u)]})})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.shuttles;return(0,o.createComponentVNode)(2,a.Box,{children:i.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"ID",children:e.id}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Timer",children:e.timeleft}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Mode",children:e.mode}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shuttle Status",children:e.status}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Jump To",icon:"location-arrow",onClick:function(){return c("jump_to",{type:"mobile",id:e.id})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Fast Travel",icon:"fast-forward",onClick:function(){return c("fast_travel",{id:e.id})}})]})]})},e.name)}))})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.templates_tabs,d=i.existing_shuttle,u=i.templates;return(0,o.createComponentVNode)(2,a.Box,{children:[(0,o.createComponentVNode)(2,a.Tabs,{children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:e===d.id,icon:"file",content:e,onClick:function(){return c("select_template_category",{cat:e})}},e)}))}),!!d&&u[d.id].templates.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[e.description&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:e.description}),e.admin_notes&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Admin Notes",children:e.admin_notes}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{content:"Load Template",icon:"download",onClick:function(){return c("select_template",{shuttle_id:e.shuttle_id})}})})]})},e.name)}))]})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.existing_shuttle,d=i.selected;return(0,o.createComponentVNode)(2,a.Box,{children:[l?(0,o.createComponentVNode)(2,a.Section,{title:"Selected Shuttle: "+l.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Status",children:l.status}),l.timer&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Timer",children:l.timeleft}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:(0,o.createComponentVNode)(2,a.Button,{content:"Jump To",icon:"location-arrow",onClick:function(){return c("jump_to",{type:"mobile",id:l.id})}})})]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Selected Shuttle: None"}),d?(0,o.createComponentVNode)(2,a.Section,{title:"Selected Template: "+d.name,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[d.description&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Description",children:d.description}),d.admin_notes&&(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Admin Notes",children:d.admin_notes}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Actions",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Preview",icon:"eye",onClick:function(){return c("preview",{shuttle_id:d.shuttle_id})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Load",icon:"download",onClick:function(){return c("load",{shuttle_id:d.shuttle_id})}})]})]})}):(0,o.createComponentVNode)(2,a.Section,{title:"Selected Template: None"})]})}},function(e,t,n){"use strict";t.__esModule=!0,t.Sleeper=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4),l=[["good","Alive"],["average","Critical"],["bad","DEAD"]],d=[["Resp.","oxyLoss"],["Toxin","toxLoss"],["Brute","bruteLoss"],["Burn","fireLoss"]],u={average:[.25,.5],bad:[.5,Infinity]},s=["bad","average","average","good","average","average","bad"];t.Sleeper=function(e,t){var n=(0,a.useBackend)(t),r=(n.act,n.data.hasOccupant?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,N));return(0,o.createComponentVNode)(2,i.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,i.Window.Content,{className:"Layout__content--flexColumn",children:[r,(0,o.createComponentVNode)(2,h)]})})};var m=function(e,t){var n=(0,a.useBackend)(t);n.act,n.data.occupant;return(0,o.createFragment)([(0,o.createComponentVNode)(2,p),(0,o.createComponentVNode)(2,f),(0,o.createComponentVNode)(2,C)],4)},p=function(e,t){var n=(0,a.useBackend)(t),i=n.act,d=n.data,u=d.occupant,m=d.auto_eject_dead;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Box,{color:"label",display:"inline",children:"Auto-eject if dead:\xa0"}),(0,o.createComponentVNode)(2,c.Button,{icon:m?"toggle-on":"toggle-off",selected:m,content:m?"On":"Off",onClick:function(){return i("auto_eject_dead_"+(m?"off":"on"))}}),(0,o.createComponentVNode)(2,c.Button,{icon:"user-slash",content:"Eject",onClick:function(){return i("ejectify")}})],4),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Name",children:u.name}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Health",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.maxHealth,value:u.health/u.maxHealth,ranges:{good:[.5,Infinity],average:[0,.5],bad:[-Infinity,0]},children:(0,r.round)(u.health,0)})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Status",color:l[u.stat][0],children:l[u.stat][1]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.maxTemp,value:u.bodyTemperature/u.maxTemp,color:s[u.temperatureSuitability+3],children:[(0,r.round)(u.btCelsius,0),"\xb0C,",(0,r.round)(u.btFaren,0),"\xb0F"]})}),!!u.hasBlood&&(0,o.createFragment)([(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Blood Level",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u.bloodMax,value:u.bloodLevel/u.bloodMax,ranges:{bad:[-Infinity,.6],average:[.6,.9],good:[.6,Infinity]},children:[u.bloodPercent,"%, ",u.bloodLevel,"cl"]})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pulse",verticalAlign:"middle",children:[u.pulse," BPM"]})],4)]})})},f=function(e,t){var n=(0,a.useBackend)(t).data.occupant;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant Damage",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:d.map((function(e,t){return(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:e[0],children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:"100",value:n[e[1]]/100,ranges:u,children:(0,r.round)(n[e[1]],0)},t)},t)}))})})},h=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.hasOccupant,d=i.isBeakerLoaded,u=i.beakerMaxSpace,s=i.beakerFreeSpace,m=i.dialysis&&s>0;return(0,o.createComponentVNode)(2,c.Section,{title:"Dialysis",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,c.Button,{disabled:!d||s<=0||!l,selected:m,icon:m?"toggle-on":"toggle-off",content:m?"Active":"Inactive",onClick:function(){return r("togglefilter")}}),(0,o.createComponentVNode)(2,c.Button,{disabled:!d,icon:"eject",content:"Eject",onClick:function(){return r("removebeaker")}})],4),children:d?(0,o.createComponentVNode)(2,c.LabeledList,{children:(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Remaining Space",children:(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u,value:s/u,ranges:{good:[.5,Infinity],average:[.25,.5],bad:[-Infinity,.25]},children:[s,"u"]})})}):(0,o.createComponentVNode)(2,c.Box,{color:"label",children:"No beaker loaded."})})},C=function(e,t){var n=(0,a.useBackend)(t),r=n.act,i=n.data,l=i.occupant,d=i.chemicals,u=i.maxchem,s=i.amounts;return(0,o.createComponentVNode)(2,c.Section,{title:"Occupant Chemicals",flexGrow:"1",children:d.map((function(e,t){var n,a="";return e.overdosing?(a="bad",n=(0,o.createComponentVNode)(2,c.Box,{color:"bad",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-circle"}),"\xa0 Overdosing!"]})):e.od_warning&&(a="average",n=(0,o.createComponentVNode)(2,c.Box,{color:"average",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"exclamation-triangle"}),"\xa0 Close to overdosing"]})),(0,o.createComponentVNode)(2,c.Box,{backgroundColor:"rgba(0, 0, 0, 0.33)",mb:"0.5rem",children:(0,o.createComponentVNode)(2,c.Section,{title:e.title,level:"3",mx:"0",lineHeight:"18px",buttons:n,children:(0,o.createComponentVNode)(2,c.Flex,{align:"flex-start",children:[(0,o.createComponentVNode)(2,c.ProgressBar,{min:"0",max:u,value:e.occ_amount/u,color:a,title:"Amount of chemicals currently inside the occupant / Total amount injectable by this machine",mr:"0.5rem",children:[e.pretty_amount,"/",u,"u"]}),s.map((function(t,n){return(0,o.createComponentVNode)(2,c.Button,{disabled:!e.injectable||e.occ_amount+t>u||2===l.stat,icon:"syringe",content:"Inject "+t+"u",title:"Inject "+t+"u of "+e.title+" into the occupant",mb:"0",height:"19px",onClick:function(){return r("chemical",{chemid:e.id,amount:t})}},n)}))]})})},t)}))})},N=function(e,t){return(0,o.createComponentVNode)(2,c.Section,{textAlign:"center",flexGrow:"1",children:(0,o.createComponentVNode)(2,c.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,c.Flex.Item,{grow:"1",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,c.Icon,{name:"user-slash",mb:"0.5rem",size:"5"}),(0,o.createVNode)(1,"br"),"No occupant detected."]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SlotMachine=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SlotMachine=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return null===d.money?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{children:"Could not scan your card or could not find account!"}),(0,o.createComponentVNode)(2,a.Box,{children:"Please wear or hold your ID and try again."})]})})}):(n=1===d.plays?d.plays+" player has tried their luck today!":d.plays+" players have tried their luck today!",(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:[(0,o.createComponentVNode)(2,a.Box,{lineHeight:2,children:n}),(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Credits Remaining",children:(0,o.createComponentVNode)(2,a.AnimatedNumber,{value:d.money})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"50 credits to spin",children:(0,o.createComponentVNode)(2,a.Button,{icon:"coins",disabled:d.working,content:d.working?"Spinning...":"Spin",onClick:function(){return l("spin")}})})]}),(0,o.createComponentVNode)(2,a.Box,{bold:!0,lineHeight:2,color:d.resultlvl,children:d.result})]})})}))}},function(e,t,n){"use strict";t.__esModule=!0,t.Smartfridge=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Smartfridge=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.secure,u=l.can_dry,s=l.drying,m=l.contents;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[!!d&&(0,o.createComponentVNode)(2,a.Section,{title:"Secure",children:(0,o.createComponentVNode)(2,a.NoticeBox,{children:"Secure Access: Please have your identification ready."})}),!!u&&(0,o.createComponentVNode)(2,a.Section,{title:"Drying rack",children:(0,o.createComponentVNode)(2,a.Button,{icon:s?"power-off":"times",content:s?"On":"Off",selected:s,onClick:function(){return i("drying")}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Contents",children:[!m&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:" No products loaded. "}),!!m&&m.map((function(e){return(0,o.createComponentVNode)(2,a.Flex,{direction:"row",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{width:"45%",children:e.display_name}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"25%",children:["(",e.quantity," in stock)"]}),(0,o.createComponentVNode)(2,a.Flex.Item,{width:"30%",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",tooltip:"Dispense one.",content:"1",onClick:function(){return i("vend",{index:e.vend,amount:1})}}),(0,o.createComponentVNode)(2,a.NumberInput,{width:"40px",minValue:0,value:0,maxValue:e.quantity,step:1,stepPixelSize:3,onChange:function(t,n){return i("vend",{index:e.vend,amount:n})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"arrow-down",content:"All",tooltip:"Dispense all. ",onClick:function(){return i("vend",{index:e.vend,amount:e.quantity})}})]})]},e)}))]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Smes=void 0;var o=n(0),r=n(1),a=n(2),c=n(95),i=n(4);t.Smes=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.capacityPercent,s=(d.capacity,d.charge),m=d.inputAttempt,p=d.inputting,f=d.inputLevel,h=d.inputLevelMax,C=d.inputAvailable,N=d.outputAttempt,b=d.outputting,g=d.outputLevel,V=d.outputLevelMax,v=d.outputUsed,y=(u>=100?"good":p&&"average")||"bad",_=(b?"good":s>0&&"average")||"bad";return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Stored Energy",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:.01*u,ranges:{good:[.5,Infinity],average:[.15,.5],bad:[-Infinity,.15]}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Input",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Charge Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:m?"sync-alt":"times",selected:m,onClick:function(){return l("tryinput")},children:m?"Auto":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:y,children:(u>=100?"Fully Charged":p&&"Charging")||"Not Charging"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Input",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===f,onClick:function(){return l("input",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===f,onClick:function(){return l("input",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:f/1e3,fillValue:C/1e3,minValue:0,maxValue:h/1e3,step:5,stepPixelSize:4,format:function(e){return(0,c.formatPower)(1e3*e,1)},onChange:function(e,t){return l("input",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:f===h,onClick:function(){return l("input",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:f===h,onClick:function(){return l("input",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Available",children:(0,c.formatPower)(C)})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Output",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Output Mode",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:N?"power-off":"times",selected:N,onClick:function(){return l("tryoutput")},children:N?"On":"Off"}),children:(0,o.createComponentVNode)(2,a.Box,{color:_,children:b?"Sending":s>0?"Not Sending":"No Charge"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Target Output",children:(0,o.createComponentVNode)(2,a.Flex,{inline:!0,width:"100%",children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:0===g,onClick:function(){return l("output",{target:"min"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"backward",disabled:0===g,onClick:function(){return l("output",{adjust:-1e4})}})]}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:1,mx:1,children:(0,o.createComponentVNode)(2,a.Slider,{value:g/1e3,minValue:0,maxValue:V/1e3,step:5,stepPixelSize:4,format:function(e){return(0,c.formatPower)(1e3*e,1)},onChange:function(e,t){return l("output",{target:1e3*t})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:[(0,o.createComponentVNode)(2,a.Button,{icon:"forward",disabled:g===V,onClick:function(){return l("output",{adjust:1e4})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:g===V,onClick:function(){return l("output",{target:"max"})}})]})]})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Outputting",children:(0,c.formatPower)(v)})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SolarControl=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SolarControl=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.generated,u=l.generated_ratio,s=l.tracking_state,m=l.tracking_rate,p=l.connected_panels,f=l.connected_tracker,h=l.cdir,C=l.direction,N=l.rotating_direction;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Status",buttons:(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Scan for new hardware",onClick:function(){return i("refresh")}}),children:(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,a.Grid.Column,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar tracker",color:f?"good":"bad",children:f?"OK":"N/A"}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Solar panels",color:p>0?"good":"bad",children:p})]})}),(0,o.createComponentVNode)(2,a.Grid.Column,{size:2,children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Power output",children:(0,o.createComponentVNode)(2,a.ProgressBar,{ranges:{good:[.66,Infinity],average:[.33,.66],bad:[-Infinity,.33]},minValue:0,maxValue:1,value:u,children:d+" W"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Panel orientation",children:[h,"\xb0 (",C,")"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker rotation",children:[2===s&&(0,o.createComponentVNode)(2,a.Box,{children:" Automated "}),1===s&&(0,o.createComponentVNode)(2,a.Box,{children:[" ",m,"\xb0/h (",N,") "]}),0===s&&(0,o.createComponentVNode)(2,a.Box,{children:" Tracker offline "})]})]})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Controls",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Panel orientation",children:[2!==s&&(0,o.createComponentVNode)(2,a.NumberInput,{unit:"\xb0",step:1,stepPixelSize:1,minValue:0,maxValue:359,value:h,onDrag:function(e,t){return i("cdir",{cdir:t})}}),2===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Automated "})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker status",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"times",content:"Off",selected:0===s,onClick:function(){return i("track",{track:0})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"clock-o",content:"Timed",selected:1===s,onClick:function(){return i("track",{track:1})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"sync",content:"Auto",selected:2===s,disabled:!f,onClick:function(){return i("track",{track:2})}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tracker rotation",children:[1===s&&(0,o.createComponentVNode)(2,a.NumberInput,{unit:"\xb0/h",step:1,stepPixelSize:1,minValue:-7200,maxValue:7200,value:m,format:function(e){return(Math.sign(e)>0?"+":"-")+Math.abs(e)},onDrag:function(e,t){return i("tdir",{tdir:t})}}),0===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Tracker offline "}),2===s&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"19px",children:" Automated "})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SpawnersMenu=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SpawnersMenu=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.spawners||[];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,a.Section,{children:l.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{mb:.5,title:e.name+" ("+e.amount_left+" left)",level:2,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-circle-right",content:"Jump",onClick:function(){return i("jump",{ID:e.uids})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"chevron-circle-right",content:"Spawn",onClick:function(){return i("spawn",{ID:e.uids})}})],4),children:[(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},mb:1,fontSize:"16px",children:e.desc}),!!e.fluff&&(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},textColor:"#878787",fontSize:"14px",children:e.fluff}),!!e.important_info&&(0,o.createComponentVNode)(2,a.Box,{style:{"white-space":"pre-wrap"},mt:1,bold:!0,color:"red",fontSize:"18px",children:e.important_info})]},e.name)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.StationAlertConsoleContent=t.StationAlertConsole=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.StationAlertConsole=function(){return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,i)})})};var i=function(e,t){var n=(0,r.useBackend)(t).data.alarms||[],c=n.Fire||[],i=n.Atmosphere||[],l=n.Power||[];return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Fire Alarms",children:(0,o.createVNode)(1,"ul",null,[0===c.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),c.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)}),(0,o.createComponentVNode)(2,a.Section,{title:"Atmospherics Alarms",children:(0,o.createVNode)(1,"ul",null,[0===i.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),i.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Alarms",children:(0,o.createVNode)(1,"ul",null,[0===l.length&&(0,o.createVNode)(1,"li","color-good","Systems Nominal",16),l.map((function(e){return(0,o.createVNode)(1,"li","color-average",e,0,null,e)}))],0)})],4)};t.StationAlertConsoleContent=i},function(e,t,n){"use strict";t.__esModule=!0,t.SuitStorage=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.SuitStorage=function(e,t){var n=(0,r.useBackend)(t).data.uv;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{display:"flex",className:"Layout__content--flexColumn",children:[!!n&&(0,o.createComponentVNode)(2,a.Dimmer,{backgroundColor:"black",opacity:.85,children:(0,o.createComponentVNode)(2,a.Flex,{children:(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,textAlign:"center",mb:2,children:[(0,o.createComponentVNode)(2,a.Icon,{name:"spinner",spin:1,size:4,mb:4}),(0,o.createVNode)(1,"br"),"Disinfection of contents in progress..."]})})}),(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,d)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,d=i.helmet,u=i.suit,s=i.magboots,m=i.mask,p=i.storage,f=i.open,h=i.locked;return(0,o.createComponentVNode)(2,a.Section,{title:"Stored Items",flexGrow:"1",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:"Start Disinfection Cycle",icon:"radiation",textAlign:"center",onClick:function(){return c("cook")}}),(0,o.createComponentVNode)(2,a.Button,{content:h?"Unlock":"Lock",icon:h?"unlock":"lock",disabled:f,onClick:function(){return c("toggle_lock")}})],4),children:f&&!h?(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,l,{object:d,label:"Helmet",missingText:"helmet",eject:"dispense_helmet"}),(0,o.createComponentVNode)(2,l,{object:u,label:"Suit",missingText:"suit",eject:"dispense_suit"}),(0,o.createComponentVNode)(2,l,{object:s,label:"Boots",missingText:"boots",eject:"dispense_boots"}),(0,o.createComponentVNode)(2,l,{object:m,label:"Breathmask",missingText:"mask",eject:"dispense_mask"}),(0,o.createComponentVNode)(2,l,{object:p,label:"Storage",missingText:"storage item",eject:"dispense_storage"})]}):(0,o.createComponentVNode)(2,a.Flex,{height:"100%",children:(0,o.createComponentVNode)(2,a.Flex.Item,{bold:!0,grow:"1",textAlign:"center",align:"center",color:"label",children:[(0,o.createComponentVNode)(2,a.Icon,{name:h?"lock":"exclamation-circle",size:"5",mb:3}),(0,o.createVNode)(1,"br"),h?"The unit is locked.":"The unit is closed."]})})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=(n.data,e.object),l=e.label,d=e.missingText,u=e.eject;return(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:l,children:(0,o.createComponentVNode)(2,a.Box,{my:.5,children:i?(0,o.createComponentVNode)(2,a.Button,{my:-1,icon:"eject",content:i,onClick:function(){return c(u)}}):(0,o.createComponentVNode)(2,a.Box,{color:"silver",bold:!0,children:["No ",d," found."]})})})},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.open,d=i.locked;return(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,content:l?"Close Suit Storage Unit":"Open Suit Storage Unit",icon:l?"times-circle":"expand",color:l?"red":"green",disabled:d,textAlign:"center",onClick:function(){return c("toggle_open")}})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SupermatterMonitor=void 0;var o=n(0),r=n(26),a=n(43),c=n(15),i=n(1),l=n(2),d=n(39),u=n(4);n(76);t.SupermatterMonitor=function(e,t){var n=(0,i.useBackend)(t);n.act;return 0===n.data.active?(0,o.createComponentVNode)(2,m):(0,o.createComponentVNode)(2,p)};var s=function(e){return Math.log2(16+Math.max(0,e))-4},m=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data.supermatters,c=void 0===a?[]:a;return(0,o.createComponentVNode)(2,u.Window,{children:(0,o.createComponentVNode)(2,u.Window.Content,{scrollable:!0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Detected Supermatters",buttons:(0,o.createComponentVNode)(2,l.Button,{icon:"sync",content:"Refresh",onClick:function(){return r("refresh")}}),children:(0,o.createComponentVNode)(2,l.Table,{children:c.map((function(e){return(0,o.createComponentVNode)(2,l.Table.Row,{children:[(0,o.createComponentVNode)(2,l.Table.Cell,{children:e.supermatter_id+". "+e.area_name}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,color:"label",children:"Integrity:"}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,width:"120px",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:e.integrity/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})}),(0,o.createComponentVNode)(2,l.Table.Cell,{collapsing:!0,children:(0,o.createComponentVNode)(2,l.Button,{content:"Details",onClick:function(){return r("view",{view:e.supermatter_id})}})})]},e.supermatter_id)}))})})})})},p=function(e,t){var n=(0,i.useBackend)(t),m=n.act,p=n.data,f=(p.active,p.SM_integrity),h=p.SM_power,C=p.SM_ambienttemp,N=p.SM_ambientpressure,b=(0,a.flow)([function(e){return e.filter((function(e){return e.amount>=.01}))},(0,r.sortBy)((function(e){return-e.amount}))])(p.gases||[]),g=Math.max.apply(Math,[1].concat(b.map((function(e){return e.amount}))));return(0,o.createComponentVNode)(2,u.Window,{children:(0,o.createComponentVNode)(2,u.Window.Content,{children:(0,o.createComponentVNode)(2,l.Flex,{spacing:1,children:[(0,o.createComponentVNode)(2,l.Flex.Item,{width:"270px",children:(0,o.createComponentVNode)(2,l.Section,{title:"Metrics",children:(0,o.createComponentVNode)(2,l.LabeledList,{children:[(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Integrity",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:f/100,ranges:{good:[.9,Infinity],average:[.5,.9],bad:[-Infinity,.5]}})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Relative EER",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:h,minValue:0,maxValue:5e3,ranges:{good:[-Infinity,5e3],average:[5e3,7e3],bad:[7e3,Infinity]},children:(0,c.toFixed)(h)+" MeV/cm3"})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Temperature",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:s(C),minValue:0,maxValue:s(1e4),ranges:{teal:[-Infinity,s(80)],good:[s(80),s(373)],average:[s(373),s(1e3)],bad:[s(1e3),Infinity]},children:(0,c.toFixed)(C)+" K"})}),(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:"Pressure",children:(0,o.createComponentVNode)(2,l.ProgressBar,{value:s(N),minValue:0,maxValue:s(5e4),ranges:{good:[s(1),s(300)],average:[-Infinity,s(1e3)],bad:[s(1e3),Infinity]},children:(0,c.toFixed)(N)+" kPa"})})]})})}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Gases",buttons:(0,o.createComponentVNode)(2,l.Button,{icon:"arrow-left",content:"Back",onClick:function(){return m("back")}}),children:(0,o.createComponentVNode)(2,l.LabeledList,{children:b.map((function(e){return(0,o.createComponentVNode)(2,l.LabeledList.Item,{label:(0,d.getGasLabel)(e.name),children:(0,o.createComponentVNode)(2,l.ProgressBar,{color:(0,d.getGasColor)(e.name),value:e.amount,minValue:0,maxValue:g,children:(0,c.toFixed)(e.amount,2)+"%"})},e.name)}))})})})]})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.SyndicateComputerSimple=void 0;var o=n(0),r=n(1),a=n(2),c=(n(77),n(4));t.SyndicateComputerSimple=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data;return(0,o.createComponentVNode)(2,c.Window,{theme:"syndicate",children:(0,o.createComponentVNode)(2,c.Window.Content,{children:l.rows.map((function(e){return(0,o.createComponentVNode)(2,a.Section,{title:e.title,buttons:(0,o.createComponentVNode)(2,a.Button,{content:e.buttontitle,disabled:e.buttondisabled,tooltip:e.buttontooltip,tooltipPosition:"left",onClick:function(){return i(e.buttonact)}}),children:[e.status,!!e.bullets&&(0,o.createComponentVNode)(2,a.Box,{children:e.bullets.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{children:e},e)}))})]},e.title)}))})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TEG=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=function(e){return e.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,")};t.TEG=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data;return d.error?(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:[d.error,(0,o.createComponentVNode)(2,a.Button,{icon:"circle",content:"Recheck",onClick:function(){return l("check")}})]})})}):(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{title:"Cold Loop ("+d.cold_dir+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cold Inlet",children:[i(d.cold_inlet_temp)," K, ",i(d.cold_inlet_pressure)," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Cold Outlet",children:[i(d.cold_outlet_temp)," K, ",i(d.cold_outlet_pressure)," kPa"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Hot Loop ("+d.hot_dir+")",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hot Inlet",children:[i(d.hot_inlet_temp)," K, ",i(d.hot_inlet_pressure)," kPa"]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hot Outlet",children:[i(d.hot_outlet_temp)," K, ",i(d.hot_outlet_pressure)," kPa"]})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Power Output",children:[i(d.output_power)," W",!!d.warning_switched&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Cold inlet temperature exceeds hot inlet temperature."}),!!d.warning_cold_pressure&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Cold circulator inlet pressure is under 1,000 kPa."}),!!d.warning_hot_pressure&&(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Warning: Hot circulator inlet pressure is under 1,000 kPa."})]})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TachyonArrayContent=t.TachyonArray=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TachyonArray=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.records,s=void 0===u?[]:u,m=d.explosion_target,p=d.toxins_tech,f=d.printing;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Shift's Target",children:m}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Current Toxins Level",children:p}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Administration",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"print",content:"Print All Logs",disabled:!s.length||f,align:"center",onClick:function(){return l("print_logs")}}),(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete All Logs",disabled:!s.length,color:"bad",align:"center",onClick:function(){return l("delete_logs")}})]})]})}),s.length?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,a.NoticeBox,{children:"No Records"})]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.records,l=void 0===i?[]:i;return(0,o.createComponentVNode)(2,a.Section,{title:"Logged Explosions",children:(0,o.createComponentVNode)(2,a.Flex,{children:(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Time"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Epicenter"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Actual Size"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Theoretical Size"})]}),l.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.logged_time}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.epicenter}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.actual_size_message}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.theoretical_size_message}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button.Confirm,{icon:"trash",content:"Delete",color:"bad",onClick:function(){return c("delete_record",{index:e.index})}})})]},e.index)}))]})})})})};t.TachyonArrayContent=i},function(e,t,n){"use strict";t.__esModule=!0,t.Tank=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Tank=function(e,t){var n,i=(0,r.useBackend)(t),l=i.act,d=i.data;return n=d.has_mask?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",children:(0,o.createComponentVNode)(2,a.Button,{icon:d.connected?"check":"times",content:d.connected?"Internals On":"Internals Off",selected:d.connected,onClick:function(){return l("internals")}})}):(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Mask",color:"red",children:"No Mask Equipped"}),(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Tank Pressure",children:(0,o.createComponentVNode)(2,a.ProgressBar,{value:d.tankPressure/1013,ranges:{good:[.35,Infinity],average:[.15,.35],bad:[-Infinity,.15]},children:d.tankPressure+" kPa"})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Release Pressure",children:[(0,o.createComponentVNode)(2,a.Button,{icon:"fast-backward",disabled:d.ReleasePressure===d.minReleasePressure,tooltip:"Min",onClick:function(){return l("pressure",{pressure:"min"})}}),(0,o.createComponentVNode)(2,a.NumberInput,{animated:!0,value:parseFloat(d.releasePressure),width:"65px",unit:"kPa",minValue:d.minReleasePressure,maxValue:d.maxReleasePressure,onChange:function(e,t){return l("pressure",{pressure:t})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"fast-forward",disabled:d.ReleasePressure===d.maxReleasePressure,tooltip:"Max",onClick:function(){return l("pressure",{pressure:"max"})}}),(0,o.createComponentVNode)(2,a.Button,{icon:"undo",content:"",disabled:d.ReleasePressure===d.defaultReleasePressure,tooltip:"Reset",onClick:function(){return l("pressure",{pressure:"reset"})}})]}),n]})})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TankDispenser=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TankDispenser=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.o_tanks,u=l.p_tanks;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Dispense Oxygen Tank ("+d+")",disabled:0===d,icon:"arrow-circle-down",onClick:function(){return i("oxygen")}})}),(0,o.createComponentVNode)(2,a.Box,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Dispense Plasma Tank ("+u+")",disabled:0===u,icon:"arrow-circle-down",onClick:function(){return i("plasma")}})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TcommsCore=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TcommsCore=function(e,t){var n=(0,r.useBackend)(t),s=(n.act,n.data.ion),m=(0,r.useLocalState)(t,"tabIndex",0),p=m[0],f=m[1];return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[1===s&&(0,o.createComponentVNode)(2,i),(0,o.createComponentVNode)(2,a.Tabs,{children:[(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:0===p,onClick:function(){return f(0)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"wrench"}),"Configuration"]},"ConfigPage"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:1===p,onClick:function(){return f(1)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"link"}),"Device Linkage"]},"LinkagePage"),(0,o.createComponentVNode)(2,a.Tabs.Tab,{selected:2===p,onClick:function(){return f(2)},children:[(0,o.createComponentVNode)(2,a.Icon,{name:"user-times"}),"User Filtering"]},"FilterPage")]}),function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,l);case 1:return(0,o.createComponentVNode)(2,d);case 2:return(0,o.createComponentVNode)(2,u);default:return"SOMETHING WENT VERY WRONG PLEASE AHELP"}}(p)]})})};var i=function(){return(0,o.createComponentVNode)(2,a.NoticeBox,{children:"ERROR: An Ionospheric overload has occured. Please wait for the machine to reboot. This cannot be manually done."})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.active,d=i.sectors_available,u=i.nttc_toggle_jobs,s=i.nttc_toggle_job_color,m=i.nttc_toggle_name_color,p=i.nttc_toggle_command_bold,f=i.nttc_job_indicator_type,h=i.nttc_setting_language,C=i.network_id;return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine Power",children:(0,o.createComponentVNode)(2,a.Button,{content:l?"On":"Off",selected:l,icon:"power-off",onClick:function(){return c("toggle_active")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Sector Coverage",children:d})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Radio Configuration",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Announcements",children:(0,o.createComponentVNode)(2,a.Button,{content:u?"On":"Off",selected:u,icon:"user-tag",onClick:function(){return c("nttc_toggle_jobs")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Departmentalisation",children:(0,o.createComponentVNode)(2,a.Button,{content:s?"On":"Off",selected:s,icon:"clipboard-list",onClick:function(){return c("nttc_toggle_job_color")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Name Departmentalisation",children:(0,o.createComponentVNode)(2,a.Button,{content:m?"On":"Off",selected:m,icon:"user-tag",onClick:function(){return c("nttc_toggle_name_color")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Command Amplification",children:(0,o.createComponentVNode)(2,a.Button,{content:p?"On":"Off",selected:p,icon:"volume-up",onClick:function(){return c("nttc_toggle_command_bold")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Advanced",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Job Announcement Format",children:(0,o.createComponentVNode)(2,a.Button,{content:f||"Unset",selected:f,icon:"pencil-alt",onClick:function(){return c("nttc_job_indicator_type")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Language Conversion",children:(0,o.createComponentVNode)(2,a.Button,{content:h||"Unset",selected:h,icon:"globe",onClick:function(){return c("nttc_setting_language")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network ID",children:(0,o.createComponentVNode)(2,a.Button,{content:C||"Unset",selected:C,icon:"server",onClick:function(){return c("network_id")}})})]})}),(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Import Configuration",icon:"file-import",onClick:function(){return c("import")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Export Configuration",icon:"file-export",onClick:function(){return c("export")}})]})],4)},d=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.link_password,d=i.relay_entries;return(0,o.createComponentVNode)(2,a.Section,{title:"Device Linkage",children:[(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linkage Password",children:(0,o.createComponentVNode)(2,a.Button,{content:l||"Unset",selected:l,icon:"lock",onClick:function(){return c("change_password")}})})}),(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network Address"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network ID"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Sector"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Status"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Unlink"})]}),d.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.addr}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.net_id}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.sector}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:1===e.status?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Online"}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Offline"})}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Unlink",icon:"unlink",onClick:function(){return c("unlink",{addr:e.addr})}})})]},e.addr)}))]})]})},u=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.filtered_users;return(0,o.createComponentVNode)(2,a.Section,{title:"User Filtering",buttons:(0,o.createComponentVNode)(2,a.Button,{content:"Add User",icon:"user-plus",onClick:function(){return c("add_filter")}}),children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{style:{width:"90%"},children:"User"}),(0,o.createComponentVNode)(2,a.Table.Cell,{style:{width:"10%"},children:"Actions"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Remove",icon:"user-times",onClick:function(){return c("remove_filter",{user:e})}})})]},e)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TcommsRelay=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TcommsRelay=function(e,t){var n=(0,r.useBackend)(t),d=n.act,u=n.data,s=u.linked,m=u.active,p=u.network_id;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Relay Configuration",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Machine Power",children:(0,o.createComponentVNode)(2,a.Button,{content:m?"On":"Off",selected:m,icon:"power-off",onClick:function(){return d("toggle_active")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Network ID",children:(0,o.createComponentVNode)(2,a.Button,{content:p||"Unset",selected:p,icon:"server",onClick:function(){return d("network_id")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Link Status",children:1===s?(0,o.createComponentVNode)(2,a.Box,{color:"green",children:"Linked"}):(0,o.createComponentVNode)(2,a.Box,{color:"red",children:"Unlinked"})})]})}),1===s?(0,o.createComponentVNode)(2,i):(0,o.createComponentVNode)(2,l)]})})};var i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=i.linked_core_id,d=i.linked_core_addr,u=i.hidden_link;return(0,o.createComponentVNode)(2,a.Section,{title:"Link Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linked Core ID",children:l}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Linked Core Address",children:d}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Hidden Link",children:(0,o.createComponentVNode)(2,a.Button,{content:u?"Yes":"No",icon:u?"eye-slash":"eye",selected:u,onClick:function(){return c("toggle_hidden_link")}})}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Unlink",children:(0,o.createComponentVNode)(2,a.Button,{content:"Unlink",icon:"unlink",color:"red",onClick:function(){return c("unlink")}})})]})})},l=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data.cores;return(0,o.createComponentVNode)(2,a.Section,{title:"Detected Cores",children:(0,o.createComponentVNode)(2,a.Table,{m:"0.5rem",children:[(0,o.createComponentVNode)(2,a.Table.Row,{header:!0,children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network Address"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Network ID"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Sector"}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:"Link"})]}),i.map((function(e){return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.addr}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.net_id}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:e.sector}),(0,o.createComponentVNode)(2,a.Table.Cell,{children:(0,o.createComponentVNode)(2,a.Button,{content:"Link",icon:"link",onClick:function(){return c("link",{addr:e.addr})}})})]},e.addr)}))]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Teleporter=void 0;var o=n(0),r=n(1),a=n(2),c=n(4),i=n(179);t.Teleporter=function(e,t){var n=(0,r.useBackend)(t),l=n.act,d=n.data,u=d.targetsTeleport?d.targetsTeleport:{},s=d.calibrated,m=d.calibrating,p=d.powerstation,f=d.regime,h=d.teleporterhub,C=d.target,N=d.locked;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(!p||!h)&&(0,o.createComponentVNode)(2,a.Section,{title:"Error",children:[h,!p&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:" Powerstation not linked "}),p&&!h&&(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:" Teleporter hub not linked "})]}),p&&h&&(0,o.createComponentVNode)(2,a.Section,{title:"Status",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Regime",children:[(0,o.createComponentVNode)(2,a.Button,{tooltip:"Teleport to another teleport hub. ",color:1===f?"good":null,onClick:function(){return l("setregime",{regime:1})},children:"Gate"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"One-way teleport. ",color:0===f?"good":null,onClick:function(){return l("setregime",{regime:0})},children:"Teleporter"}),(0,o.createComponentVNode)(2,a.Button,{tooltip:"Teleport to a location stored in a GPS device. ",color:2===f?"good":null,disabled:!N,onClick:function(){return l("setregime",{regime:2})},children:"GPS"})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Teleport target",children:[0===f&&(0,o.createComponentVNode)(2,a.Dropdown,{width:"220px",selected:C,options:Object.keys(u),color:"None"!==C?"default":"bad",onSelected:function(e){return l("settarget",{x:u[e].x,y:u[e].y,z:u[e].z})}}),1===f&&(0,o.createComponentVNode)(2,a.Dropdown,{width:"220px",selected:C,options:Object.keys(u),color:"None"!==C?"default":"bad",onSelected:function(e){return l("settarget",{x:u[e].x,y:u[e].y,z:u[e].z})}}),2===f&&(0,o.createComponentVNode)(2,a.Box,{children:C})]}),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Calibration",children:["None"!==C&&(0,o.createComponentVNode)(2,a.Grid,{children:[(0,o.createComponentVNode)(2,i.GridColumn,{size:"2",children:m&&(0,o.createComponentVNode)(2,a.Box,{color:"average",children:"In Progress"})||s&&(0,o.createComponentVNode)(2,a.Box,{color:"good",children:"Optimal"})||(0,o.createComponentVNode)(2,a.Box,{color:"bad",children:"Sub-Optimal"})}),(0,o.createComponentVNode)(2,i.GridColumn,{size:"3",children:(0,o.createComponentVNode)(2,a.Box,{"class":"ml-1",children:(0,o.createComponentVNode)(2,a.Button,{icon:"sync-alt",tooltip:"Calibrates the hub. Accidents may occur when the calibration is not optimal.",disabled:!(!s&&!m),onClick:function(){return l("calibrate")}})})})]}),"None"===C&&(0,o.createComponentVNode)(2,a.Box,{lineHeight:"21px",children:"No target set"})]})]})}),!!(N&&p&&h&&2===f)&&(0,o.createComponentVNode)(2,a.Section,{title:"GPS",children:(0,o.createComponentVNode)(2,a.Flex,{direction:"row",justify:"space-around",children:[(0,o.createComponentVNode)(2,a.Button,{content:"Upload GPS data",tooltip:"Loads the GPS data from the device.",icon:"upload",onClick:function(){return l("load")}}),(0,o.createComponentVNode)(2,a.Button,{content:"Eject",tooltip:"Ejects the GPS device",icon:"eject",onClick:function(){return l("eject")}})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.ThermoMachine=void 0;var o=n(0),r=n(15),a=n(1),c=n(2),i=n(4);t.ThermoMachine=function(e,t){var n=(0,a.useBackend)(t),l=n.act,d=n.data;return(0,o.createComponentVNode)(2,i.Window,{children:(0,o.createComponentVNode)(2,i.Window.Content,{children:[(0,o.createComponentVNode)(2,c.Section,{title:"Status",children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Temperature",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d.temperature,format:function(e){return(0,r.toFixed)(e,2)}})," K"]}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Pressure",children:[(0,o.createComponentVNode)(2,c.AnimatedNumber,{value:d.pressure,format:function(e){return(0,r.toFixed)(e,2)}})," kPa"]})]})}),(0,o.createComponentVNode)(2,c.Section,{title:"Controls",buttons:(0,o.createComponentVNode)(2,c.Button,{icon:d.on?"power-off":"times",content:d.on?"On":"Off",selected:d.on,onClick:function(){return l("power")}}),children:(0,o.createComponentVNode)(2,c.LabeledList,{children:[(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Setting",children:(0,o.createComponentVNode)(2,c.Button,{icon:d.cooling?"temperature-low":"temperature-high",content:d.cooling?"Cooling":"Heating",selected:d.cooling,onClick:function(){return l("cooling")}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Target Temperature",children:(0,o.createComponentVNode)(2,c.NumberInput,{animated:!0,value:Math.round(d.target),unit:"K",width:"62px",minValue:Math.round(d.min),maxValue:Math.round(d.max),step:5,stepPixelSize:3,onDrag:function(e,t){return l("target",{target:t})}})}),(0,o.createComponentVNode)(2,c.LabeledList.Item,{label:"Presets",children:[(0,o.createComponentVNode)(2,c.Button,{icon:"fast-backward",disabled:d.target===d.min,title:"Minimum temperature",onClick:function(){return l("target",{target:d.min})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"sync",disabled:d.target===d.initial,title:"Room Temperature",onClick:function(){return l("target",{target:d.initial})}}),(0,o.createComponentVNode)(2,c.Button,{icon:"fast-forward",disabled:d.target===d.max,title:"Maximum Temperature",onClick:function(){return l("target",{target:d.max})}})]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.TransferValve=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.TransferValve=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.tank_one,u=l.tank_two,s=l.attached_device,m=l.valve;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Valve Status",children:(0,o.createComponentVNode)(2,a.Button,{icon:m?"unlock":"lock",content:m?"Open":"Closed",disabled:!d||!u,onClick:function(){return i("toggle")}})})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Assembly",buttons:(0,o.createComponentVNode)(2,a.Button,{textAlign:"center",width:"150px",icon:"cog",content:"Configure Assembly",disabled:!s,onClick:function(){return i("device")}}),children:(0,o.createComponentVNode)(2,a.LabeledList,{children:s?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:s,disabled:!s,onClick:function(){return i("remove_device")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Assembly"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment One",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:d,disabled:!d,onClick:function(){return i("tankone")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})}),(0,o.createComponentVNode)(2,a.Section,{title:"Attachment Two",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:u?(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Attachment",children:(0,o.createComponentVNode)(2,a.Button,{icon:"eject",content:u,disabled:!u,onClick:function(){return i("tanktwo")}})}):(0,o.createComponentVNode)(2,a.NoticeBox,{textAlign:"center",children:"Attach Tank"})})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Uplink=void 0;var o=n(0),r=n(26),a=n(43),c=n(19),i=n(1),l=n(2),d=n(75),u=n(4),s=n(49),m=function(e){switch(e){case 0:return(0,o.createComponentVNode)(2,p);case 1:return(0,o.createComponentVNode)(2,f);default:return"SOMETHING WENT VERY WRONG PLEASE AHELP"}};t.Uplink=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=(n.data,(0,i.useLocalState)(t,"tabIndex",0)),c=a[0],d=a[1];return(0,o.createComponentVNode)(2,u.Window,{theme:"syndicate",children:[(0,o.createComponentVNode)(2,s.ComplexModal),(0,o.createComponentVNode)(2,u.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,l.Tabs,{children:[(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:0===c,onClick:function(){return d(0)},icon:"shopping-cart",children:"Purchase Equipment"},"PurchasePage"),(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:1===c,onClick:function(){return d(1)},icon:"user",children:"Exploitable Information"},"ExploitableInfo"),(0,o.createComponentVNode)(2,l.Tabs.Tab,{onClick:function(){return r("lock")},icon:"lock",children:"Lock Uplink"},"LockUplink")]}),m(c)]})]})};var p=function(e,t){var n=(0,i.useBackend)(t),r=n.act,a=n.data,u=a.crystals,s=a.cats,m=(0,i.useLocalState)(t,"uplinkTab",s[0]),p=m[0],f=m[1];return(0,o.createComponentVNode)(2,l.Section,{title:"Current Balance: "+u+"TC",buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,l.Button,{content:"Random Item",icon:"question",onClick:function(){return r("buyRandom")}}),(0,o.createComponentVNode)(2,l.Button,{content:"Refund Currently Held Item",icon:"undo",onClick:function(){return r("refund")}})],4),children:(0,o.createComponentVNode)(2,l.Flex,{children:[(0,o.createComponentVNode)(2,d.FlexItem,{children:(0,o.createComponentVNode)(2,l.Tabs,{vertical:!0,children:s.map((function(e){return(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:e===p,onClick:function(){return f(e)},children:e.cat},e)}))})}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:p.items.map((function(e){return(0,o.createComponentVNode)(2,l.Section,{title:(0,c.decodeHtmlEntities)(e.name),buttons:(0,o.createComponentVNode)(2,l.Button,{content:"Buy ("+e.cost+"TC)"+(e.refundable?" [Refundable]":""),color:1===e.hijack_only&&"red",tooltip:1===e.hijack_only&&"Hijack Agents Only!",tooltipPosition:"left",onClick:function(){return r("buyItem",{item:e.obj_path})},disabled:e.cost>u}),children:(0,o.createComponentVNode)(2,l.Box,{italic:!0,children:(0,c.decodeHtmlEntities)(e.desc)})},(0,c.decodeHtmlEntities)(e.name))}))})]})})},f=function(e,t){var n=(0,i.useBackend)(t),u=(n.act,n.data.exploitable),s=(0,i.useLocalState)(t,"selectedRecord",u[0]),m=s[0],p=s[1],f=(0,i.useLocalState)(t,"searchText",""),h=f[0],C=f[1],N=function(e,t){void 0===t&&(t="");var n=(0,c.createSearch)(t,(function(e){return e.name}));return(0,a.flow)([(0,r.filter)((function(e){return null==e?void 0:e.name})),t&&(0,r.filter)(n),(0,r.sortBy)((function(e){return e.name}))])(e)}(u,h);return(0,o.createComponentVNode)(2,l.Section,{title:"Exploitable Records",children:(0,o.createComponentVNode)(2,l.Flex,{children:[(0,o.createComponentVNode)(2,d.FlexItem,{basis:20,children:[(0,o.createComponentVNode)(2,l.Input,{fluid:!0,mb:1,placeholder:"Search Crew",onInput:function(e,t){return C(t)}}),(0,o.createComponentVNode)(2,l.Tabs,{vertical:!0,children:N.map((function(e){return(0,o.createComponentVNode)(2,l.Tabs.Tab,{selected:e===m,onClick:function(){return p(e)},children:e.name},e)}))})]}),(0,o.createComponentVNode)(2,l.Flex.Item,{grow:1,basis:0,children:(0,o.createComponentVNode)(2,l.Section,{title:"Name: "+m.name,children:[(0,o.createComponentVNode)(2,l.Box,{children:["Age: ",m.age]}),(0,o.createComponentVNode)(2,l.Box,{children:["Fingerprint: ",m.fingerprint]}),(0,o.createComponentVNode)(2,l.Box,{children:["Rank: ",m.rank]}),(0,o.createComponentVNode)(2,l.Box,{children:["Sex: ",m.sex]}),(0,o.createComponentVNode)(2,l.Box,{children:["Species: ",m.species]})]})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Vending=void 0;var o=n(0),r=(n(8),n(1)),a=n(2),c=n(4),i=function(e,t){var n=(0,r.useBackend)(t),c=n.act,i=n.data,l=e.product,d=e.productStock,u=e.productImage,s=i.chargesMoney,m=(i.user,i.userMoney),p=i.vend_ready,f=i.coin_name,h=(i.inserted_item_name,!s||0===l.price),C="ERROR!",N="";l.req_coin?(C="COIN",N="circle"):h?(C="FREE",N="arrow-circle-down"):(C=l.price,N="shopping-cart");var b=!p||!f&&l.req_coin||0===d||!h&&l.price>m;return(0,o.createComponentVNode)(2,a.Table.Row,{children:[(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,children:(0,o.createVNode)(1,"img",null,null,1,{src:"data:image/jpeg;base64,"+u,style:{"vertical-align":"middle",width:"32px",margin:"0px","margin-left":"0px"}})}),(0,o.createComponentVNode)(2,a.Table.Cell,{bold:!0,children:l.name}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,textAlign:"center",children:(0,o.createComponentVNode)(2,a.Box,{color:(d<=0?"bad":d<=l.max_amount/2&&"average")||"good",children:[d," in stock"]})}),(0,o.createComponentVNode)(2,a.Table.Cell,{collapsing:!0,textAlign:"center",children:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,disabled:b,icon:N,content:C,textAlign:"left",onClick:function(){return c("vend",{inum:l.inum})}})})]})};t.Vending=function(e,t){var n,l=(0,r.useBackend)(t),d=l.act,u=l.data,s=u.user,m=u.guestNotice,p=u.userMoney,f=u.chargesMoney,h=u.product_records,C=void 0===h?[]:h,N=u.coin_records,b=void 0===N?[]:N,g=u.hidden_records,V=void 0===g?[]:g,v=u.stock,y=(u.vend_ready,u.coin_name),_=u.inserted_item_name,x=u.panel_open,k=u.speaker,L=u.imagelist;return n=[].concat(C,b),u.extended_inventory&&(n=[].concat(n,V)),n=n.filter((function(e){return!!e})),(0,o.createComponentVNode)(2,c.Window,{title:"Vending Machine",resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[!!f&&(0,o.createComponentVNode)(2,a.Section,{title:"User",children:s&&(0,o.createComponentVNode)(2,a.Box,{children:["Welcome, ",(0,o.createVNode)(1,"b",null,s.name,0),","," ",(0,o.createVNode)(1,"b",null,s.job||"Unemployed",0),"!",(0,o.createVNode)(1,"br"),"Your balance is ",(0,o.createVNode)(1,"b",null,[p,(0,o.createTextVNode)(" credits")],0),"."]})||(0,o.createComponentVNode)(2,a.Box,{color:"light-grey",children:m})}),!!y&&(0,o.createComponentVNode)(2,a.Section,{title:"Coin",buttons:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Remove Coin",onClick:function(){return d("remove_coin",{})}}),children:(0,o.createComponentVNode)(2,a.Box,{children:y})}),!!_&&(0,o.createComponentVNode)(2,a.Section,{title:"Item",buttons:(0,o.createComponentVNode)(2,a.Button,{fluid:!0,icon:"eject",content:"Eject Item",onClick:function(){return d("eject_item",{})}}),children:(0,o.createComponentVNode)(2,a.Box,{children:_})}),!!x&&(0,o.createComponentVNode)(2,a.Section,{title:"Maintenance",children:(0,o.createComponentVNode)(2,a.Button,{icon:k?"check":"volume-mute",selected:k,content:"Speaker",textAlign:"left",onClick:function(){return d("toggle_voice",{})}})}),(0,o.createComponentVNode)(2,a.Section,{title:"Products",children:(0,o.createComponentVNode)(2,a.Table,{children:n.map((function(e){return(0,o.createComponentVNode)(2,i,{product:e,productStock:v[e.name],productImage:L[e.path]},e.name)}))})})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.VolumeMixer=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.VolumeMixer=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.channels;return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:(0,o.createComponentVNode)(2,a.Section,{height:"100%",overflow:"auto",children:l.map((function(e,t){return(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Box,{fontSize:"1.25rem",color:"label",mt:t>0&&"0.5rem",children:e.name}),(0,o.createComponentVNode)(2,a.Box,{mt:"0.5rem",children:(0,o.createComponentVNode)(2,a.Flex,{children:[(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{width:"24px",color:"transparent",children:(0,o.createComponentVNode)(2,a.Icon,{name:"volume-off",size:"1.5",mt:"0.1rem",onClick:function(){return i("volume",{channel:e.num,volume:0})}})})}),(0,o.createComponentVNode)(2,a.Flex.Item,{grow:"1",mx:"1rem",children:(0,o.createComponentVNode)(2,a.Slider,{minValue:0,maxValue:100,stepPixelSize:3.13,value:e.volume,onChange:function(t,n){return i("volume",{channel:e.num,volume:n})}})}),(0,o.createComponentVNode)(2,a.Flex.Item,{children:(0,o.createComponentVNode)(2,a.Button,{width:"24px",color:"transparent",children:(0,o.createComponentVNode)(2,a.Icon,{name:"volume-up",size:"1.5",mt:"0.1rem",onClick:function(){return i("volume",{channel:e.num,volume:100})}})})})]})})],4,e.num)}))})})})}},function(e,t,n){"use strict";t.__esModule=!0,t.Wires=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.Wires=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data,d=l.wires||[],u=l.status||[];return(0,o.createComponentVNode)(2,c.Window,{children:(0,o.createComponentVNode)(2,c.Window.Content,{children:[(0,o.createComponentVNode)(2,a.Section,{children:(0,o.createComponentVNode)(2,a.LabeledList,{children:d.map((function(e){return(0,o.createComponentVNode)(2,a.LabeledList.Item,{className:"candystripe",label:e.color_name,labelColor:e.seen_color,color:e.seen_color,buttons:(0,o.createFragment)([(0,o.createComponentVNode)(2,a.Button,{content:e.cut?"Mend":"Cut",onClick:function(){return i("cut",{wire:e.color})}}),(0,o.createComponentVNode)(2,a.Button,{content:"Pulse",onClick:function(){return i("pulse",{wire:e.color})}}),(0,o.createComponentVNode)(2,a.Button,{content:e.attached?"Detach":"Attach",onClick:function(){return i("attach",{wire:e.color})}})],4),children:!!e.wire&&(0,o.createVNode)(1,"i",null,[(0,o.createTextVNode)("("),e.wire,(0,o.createTextVNode)(")")],0)},e.seen_color)}))})}),!!u.length&&(0,o.createComponentVNode)(2,a.Section,{children:u.map((function(e){return(0,o.createComponentVNode)(2,a.Box,{color:"lightgray",mt:.1,children:e},e)}))})]})})}},function(e,t,n){"use strict";t.__esModule=!0,t.WizardApprenticeContract=void 0;var o=n(0),r=n(1),a=n(2),c=n(4);t.WizardApprenticeContract=function(e,t){var n=(0,r.useBackend)(t),i=n.act,l=n.data.used;return(0,o.createComponentVNode)(2,c.Window,{resizable:!0,children:(0,o.createComponentVNode)(2,c.Window.Content,{scrollable:!0,children:[(0,o.createComponentVNode)(2,a.Section,{title:"Contract of Apprenticeship",children:["Using this contract, you may summon an apprentice to aid you on your mission.",(0,o.createVNode)(1,"p",null,"If you are unable to establish contact with your apprentice, you can feed the contract back to the spellbook to refund your points.",16),l?(0,o.createComponentVNode)(2,a.Box,{bold:!0,color:"red",children:"You've already summoned an apprentice or you are in process of summoning one."}):""]}),(0,o.createComponentVNode)(2,a.Section,{title:"Which school of magic is your apprentice studying?",children:(0,o.createComponentVNode)(2,a.LabeledList,{children:[(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Destruction",children:["Your apprentice is skilled in offensive magic. They know Magic Missile and Fireball.",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Select",disabled:l,onClick:function(){return i("destruction")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Bluespace Manipulation",children:["Your apprentice is able to defy physics, melting through solid objects and travelling great distances in the blink of an eye. They know Teleport and Ethereal Jaunt.",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Select",disabled:l,onClick:function(){return i("bluespace")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Healing",children:["Your apprentice is training to cast spells that will aid your survival. They know Forcewall and Charge and come with a Staff of Healing.",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Select",disabled:l,onClick:function(){return i("healing")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider),(0,o.createComponentVNode)(2,a.LabeledList.Item,{label:"Robeless",children:["Your apprentice is training to cast spells without their robes. They know Knock and Mindswap.",(0,o.createVNode)(1,"br"),(0,o.createComponentVNode)(2,a.Button,{content:"Select",disabled:l,onClick:function(){return i("robeless")}})]}),(0,o.createComponentVNode)(2,a.LabeledList.Divider)]})})]})})}}]);
\ No newline at end of file
diff --git a/tgui/yarn.lock b/tgui/yarn.lock
index eeccb01d918..3ee890f4d51 100644
--- a/tgui/yarn.lock
+++ b/tgui/yarn.lock
@@ -4431,9 +4431,9 @@ path-key@^2.0.0, path-key@^2.0.1:
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
path-parse@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
path-to-regexp@0.1.7:
version "0.1.7"
diff --git a/tools/map_conflict_fixer/README.md b/tools/map_conflict_fixer/README.md
index 5af8d3aadf0..31955198613 100644
--- a/tools/map_conflict_fixer/README.md
+++ b/tools/map_conflict_fixer/README.md
@@ -1,29 +1,29 @@
-#Map Conflict Fixer/Helper#
+# Map Conflict Fixer/Helper #
The map conflict fixer is a script that can help you fix map conflicts easier and faster. Here's how it works:
-###Before using###
+### Before using ###
You need git for this, of course.
Make sure your development branch is up to date before starting a map edit to ensure the script outputs a correct fix.
-##Dictionary mode##
+## Dictionary mode ##
Dictionary conflicts are the easiest to fix, you simply need to create more models to accommodate your changes and everyone elses.
When you run in this mode, if the script finishes successfuly the map should be ready to be commited.
If the script fails in dictionary mode, you can run it again in full fix mode.
-##Full Fix mode##
+## Full Fix mode ##
When you and someone else edit the same coordinate, there is no easy way to fix the conflict. You need to get your hands dirty.
The script will mark every tile with a marker type to help you identify what needs fixing in the map editor.
After you edit and fix a marked map, you should run it through the map merger. The .backup file should be the same you used before.
-###Priorities###
+### Priorities ###
In Full Fix mode, the script needs to know which map version has higher priority, yours or someone elses. This important so tiles with multiple area and turf types aren't created.
Your version has priority - In each conflicted coordinate, your floor type and your area type will be used
Their version has priority - In each conflicted coordinate, your floor type and your area type will not be used
-##IMPORTANT##
+## IMPORTANT ##
This script is in a testing phase and you should not consider any output to be safe. Always verify the maps this script produced to make sure nothing is out of place.